@vonage/client-sdk 1.0.0-rc.5 → 1.0.1-alpha.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 +2 -0
- package/dist/client/index.cjs +1133 -1036
- package/dist/client/index.mjs +1133 -1037
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +5 -5
- package/dist/vonageClientSDK.js +1107 -1017
- package/dist/vonageClientSDK.min.js +2 -2
- package/dist/vonageClientSDK.min.mjs +2 -2
- package/dist/vonageClientSDK.mjs +1107 -1018
- package/package.json +2 -1
package/dist/client/index.mjs
CHANGED
|
@@ -2445,23 +2445,6 @@ function requireKotlinKotlinStdlibJsIr () {
|
|
|
2445
2445
|
function getValue(_this__u8e3s4, key) {
|
|
2446
2446
|
return getOrImplicitDefault(_this__u8e3s4, key);
|
|
2447
2447
|
}
|
|
2448
|
-
function filter_0(_this__u8e3s4, predicate) {
|
|
2449
|
-
var tmp$ret$1;
|
|
2450
|
-
// Inline function 'kotlin.collections.filterTo' call
|
|
2451
|
-
var tmp0_filterTo = LinkedHashMap_init_$Create$();
|
|
2452
|
-
var tmp$ret$0;
|
|
2453
|
-
// Inline function 'kotlin.collections.iterator' call
|
|
2454
|
-
tmp$ret$0 = _this__u8e3s4.q().g();
|
|
2455
|
-
var tmp0_iterator = tmp$ret$0;
|
|
2456
|
-
while (tmp0_iterator.h()) {
|
|
2457
|
-
var element = tmp0_iterator.i();
|
|
2458
|
-
if (predicate(element)) {
|
|
2459
|
-
tmp0_filterTo.l(element.q1(), element.s1());
|
|
2460
|
-
}
|
|
2461
|
-
}
|
|
2462
|
-
tmp$ret$1 = tmp0_filterTo;
|
|
2463
|
-
return tmp$ret$1;
|
|
2464
|
-
}
|
|
2465
2448
|
function remove(_this__u8e3s4, key) {
|
|
2466
2449
|
return (isInterface(_this__u8e3s4, MutableMap) ? _this__u8e3s4 : THROW_CCE()).g3(key);
|
|
2467
2450
|
}
|
|
@@ -2496,6 +2479,23 @@ function requireKotlinKotlinStdlibJsIr () {
|
|
|
2496
2479
|
}
|
|
2497
2480
|
return result;
|
|
2498
2481
|
}
|
|
2482
|
+
function filter_0(_this__u8e3s4, predicate) {
|
|
2483
|
+
var tmp$ret$1;
|
|
2484
|
+
// Inline function 'kotlin.collections.filterTo' call
|
|
2485
|
+
var tmp0_filterTo = LinkedHashMap_init_$Create$();
|
|
2486
|
+
var tmp$ret$0;
|
|
2487
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
2488
|
+
tmp$ret$0 = _this__u8e3s4.q().g();
|
|
2489
|
+
var tmp0_iterator = tmp$ret$0;
|
|
2490
|
+
while (tmp0_iterator.h()) {
|
|
2491
|
+
var element = tmp0_iterator.i();
|
|
2492
|
+
if (predicate(element)) {
|
|
2493
|
+
tmp0_filterTo.l(element.q1(), element.s1());
|
|
2494
|
+
}
|
|
2495
|
+
}
|
|
2496
|
+
tmp$ret$1 = tmp0_filterTo;
|
|
2497
|
+
return tmp$ret$1;
|
|
2498
|
+
}
|
|
2499
2499
|
function mapValues(_this__u8e3s4, transform) {
|
|
2500
2500
|
var tmp$ret$2;
|
|
2501
2501
|
// Inline function 'kotlin.collections.mapValuesTo' call
|
|
@@ -2535,27 +2535,27 @@ function requireKotlinKotlinStdlibJsIr () {
|
|
|
2535
2535
|
tmp$ret$2 = tmp$ret$1;
|
|
2536
2536
|
return tmp$ret$2;
|
|
2537
2537
|
}
|
|
2538
|
-
function
|
|
2538
|
+
function filterNotTo(_this__u8e3s4, destination, predicate) {
|
|
2539
2539
|
var tmp$ret$0;
|
|
2540
2540
|
// Inline function 'kotlin.collections.iterator' call
|
|
2541
2541
|
tmp$ret$0 = _this__u8e3s4.q().g();
|
|
2542
2542
|
var tmp0_iterator = tmp$ret$0;
|
|
2543
2543
|
while (tmp0_iterator.h()) {
|
|
2544
2544
|
var element = tmp0_iterator.i();
|
|
2545
|
-
if (predicate(element)) {
|
|
2545
|
+
if (!predicate(element)) {
|
|
2546
2546
|
destination.l(element.q1(), element.s1());
|
|
2547
2547
|
}
|
|
2548
2548
|
}
|
|
2549
2549
|
return destination;
|
|
2550
2550
|
}
|
|
2551
|
-
function
|
|
2551
|
+
function filterTo_0(_this__u8e3s4, destination, predicate) {
|
|
2552
2552
|
var tmp$ret$0;
|
|
2553
2553
|
// Inline function 'kotlin.collections.iterator' call
|
|
2554
2554
|
tmp$ret$0 = _this__u8e3s4.q().g();
|
|
2555
2555
|
var tmp0_iterator = tmp$ret$0;
|
|
2556
2556
|
while (tmp0_iterator.h()) {
|
|
2557
2557
|
var element = tmp0_iterator.i();
|
|
2558
|
-
if (
|
|
2558
|
+
if (predicate(element)) {
|
|
2559
2559
|
destination.l(element.q1(), element.s1());
|
|
2560
2560
|
}
|
|
2561
2561
|
}
|
|
@@ -23564,7 +23564,7 @@ function requireClientsdkClientcore () {
|
|
|
23564
23564
|
//endregion
|
|
23565
23565
|
function BuildKonfig() {
|
|
23566
23566
|
BuildKonfig_instance = this;
|
|
23567
|
-
this.s1a_1 = '1.0.
|
|
23567
|
+
this.s1a_1 = '1.0.1';
|
|
23568
23568
|
}
|
|
23569
23569
|
BuildKonfig.$metadata$ = objectMeta('BuildKonfig');
|
|
23570
23570
|
var BuildKonfig_instance;
|
|
@@ -23794,7 +23794,7 @@ function requireClientsdkClientcore () {
|
|
|
23794
23794
|
function StaticConfig() {
|
|
23795
23795
|
StaticConfig_instance = this;
|
|
23796
23796
|
this.c1d_1 = 5000;
|
|
23797
|
-
this.d1d_1 =
|
|
23797
|
+
this.d1d_1 = 10000;
|
|
23798
23798
|
this.e1d_1 = 500;
|
|
23799
23799
|
this.f1d_1 = 1000;
|
|
23800
23800
|
this.g1d_1 = 'call-rejected-by-callee';
|
|
@@ -35576,7 +35576,7 @@ function requireClientsdkClientcore () {
|
|
|
35576
35576
|
$serializer_77.prototype.tq = function () {
|
|
35577
35577
|
var tmp$ret$2;
|
|
35578
35578
|
// Inline function 'kotlin.arrayOf' call
|
|
35579
|
-
var tmp0_arrayOf = [$serializer_getInstance_149(), $
|
|
35579
|
+
var tmp0_arrayOf = [$serializer_getInstance_149(), $serializer_getInstance_156(), $serializer_getInstance_155(), $serializer_getInstance_153(), StringSerializer_getInstance()];
|
|
35580
35580
|
var tmp$ret$1;
|
|
35581
35581
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
35582
35582
|
var tmp$ret$0;
|
|
@@ -35600,9 +35600,9 @@ function requireClientsdkClientcore () {
|
|
|
35600
35600
|
if (tmp9_input.tj()) {
|
|
35601
35601
|
tmp4_local0 = tmp9_input.qj(tmp0_desc, 0, $serializer_getInstance_149(), tmp4_local0);
|
|
35602
35602
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
35603
|
-
tmp5_local1 = tmp9_input.qj(tmp0_desc, 1, $
|
|
35603
|
+
tmp5_local1 = tmp9_input.qj(tmp0_desc, 1, $serializer_getInstance_156(), tmp5_local1);
|
|
35604
35604
|
tmp3_bitMask0 = tmp3_bitMask0 | 2;
|
|
35605
|
-
tmp6_local2 = tmp9_input.qj(tmp0_desc, 2, $
|
|
35605
|
+
tmp6_local2 = tmp9_input.qj(tmp0_desc, 2, $serializer_getInstance_155(), tmp6_local2);
|
|
35606
35606
|
tmp3_bitMask0 = tmp3_bitMask0 | 4;
|
|
35607
35607
|
tmp7_local3 = tmp9_input.qj(tmp0_desc, 3, $serializer_getInstance_153(), tmp7_local3);
|
|
35608
35608
|
tmp3_bitMask0 = tmp3_bitMask0 | 8;
|
|
@@ -35620,11 +35620,11 @@ function requireClientsdkClientcore () {
|
|
|
35620
35620
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
35621
35621
|
break;
|
|
35622
35622
|
case 1:
|
|
35623
|
-
tmp5_local1 = tmp9_input.qj(tmp0_desc, 1, $
|
|
35623
|
+
tmp5_local1 = tmp9_input.qj(tmp0_desc, 1, $serializer_getInstance_156(), tmp5_local1);
|
|
35624
35624
|
tmp3_bitMask0 = tmp3_bitMask0 | 2;
|
|
35625
35625
|
break;
|
|
35626
35626
|
case 2:
|
|
35627
|
-
tmp6_local2 = tmp9_input.qj(tmp0_desc, 2, $
|
|
35627
|
+
tmp6_local2 = tmp9_input.qj(tmp0_desc, 2, $serializer_getInstance_155(), tmp6_local2);
|
|
35628
35628
|
tmp3_bitMask0 = tmp3_bitMask0 | 4;
|
|
35629
35629
|
break;
|
|
35630
35630
|
case 3:
|
|
@@ -35646,8 +35646,8 @@ function requireClientsdkClientcore () {
|
|
|
35646
35646
|
var tmp0_desc = this.x1x_1;
|
|
35647
35647
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
35648
35648
|
tmp1_output.tk(tmp0_desc, 0, $serializer_getInstance_149(), value.z1x_1);
|
|
35649
|
-
tmp1_output.tk(tmp0_desc, 1, $
|
|
35650
|
-
tmp1_output.tk(tmp0_desc, 2, $
|
|
35649
|
+
tmp1_output.tk(tmp0_desc, 1, $serializer_getInstance_156(), value.a1y_1);
|
|
35650
|
+
tmp1_output.tk(tmp0_desc, 2, $serializer_getInstance_155(), value.b1y_1);
|
|
35651
35651
|
tmp1_output.tk(tmp0_desc, 3, $serializer_getInstance_153(), value.c1y_1);
|
|
35652
35652
|
tmp1_output.sk(tmp0_desc, 4, value.d1y_1);
|
|
35653
35653
|
tmp1_output.gj(tmp0_desc);
|
|
@@ -49641,7 +49641,9 @@ function requireClientsdkClientcore () {
|
|
|
49641
49641
|
// Inline function 'kotlin.contracts.contract' call
|
|
49642
49642
|
tmp$ret$1 = tmp1_safe_receiver();
|
|
49643
49643
|
}
|
|
49644
|
-
|
|
49644
|
+
$callback(null, s.s1().v1k());
|
|
49645
|
+
cleanupReducers$default(this$0.j2o_1, null, null, 3, null);
|
|
49646
|
+
tmp = Unit_getInstance();
|
|
49645
49647
|
} else {
|
|
49646
49648
|
tmp = Unit_getInstance();
|
|
49647
49649
|
}
|
|
@@ -50385,7 +50387,6 @@ function requireClientsdkClientcore () {
|
|
|
50385
50387
|
invokeListener$default(this.y2p_1, conversationId, null, VoiceAPIImpl$o$onAudioDTMFUpdate$lambda(leg_id, digits), 4, null);
|
|
50386
50388
|
};
|
|
50387
50389
|
VoiceAPIImpl$1.prototype.m2f = function (conversationId, legId, hangup) {
|
|
50388
|
-
var state = ensureNotNull(this.y2p_1.h2p_1.z2f(getKClass(InviteReducer)));
|
|
50389
50390
|
var tmp0_safe_receiver = legId;
|
|
50390
50391
|
var tmp;
|
|
50391
50392
|
if (tmp0_safe_receiver == null) {
|
|
@@ -50401,58 +50402,16 @@ function requireClientsdkClientcore () {
|
|
|
50401
50402
|
tmp = tmp$ret$1;
|
|
50402
50403
|
}
|
|
50403
50404
|
var call = tmp;
|
|
50404
|
-
var
|
|
50405
|
+
var tmp1_subject = hangup.b1y_1.a2q_1;
|
|
50406
|
+
var tmp0 = tmp1_subject.e4_1;
|
|
50407
|
+
var reason = {_v: tmp0 === 0 ? HangupReason_localHangup_getInstance() : tmp0 === 2 ? HangupReason_remoteHangup_getInstance() : tmp0 === 1 ? HangupReason_mediaTimeout_getInstance() : tmp0 === 4 ? HangupReason_mediaTimeout_getInstance() : HangupReason_localHangup_getInstance()};
|
|
50405
50408
|
if (!(call == null)) {
|
|
50406
50409
|
if (call.a2p_1.c2q() === null) {
|
|
50407
50410
|
reason._v = HangupReason_remoteHangup_getInstance();
|
|
50408
50411
|
}
|
|
50409
50412
|
invokeListener$default(this.y2p_1, conversationId, null, VoiceAPIImpl$o$onRTCHangup$lambda(hangup, reason), 4, null);
|
|
50410
|
-
} else if (!(legId == null) ? getLegIdByConversation(this.y2p_1, conversationId) == legId : false) {
|
|
50411
|
-
var invite = state.z2p_1.g2(legId);
|
|
50412
|
-
var tmp1_safe_receiver = invite;
|
|
50413
|
-
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.u2p_1;
|
|
50414
|
-
if ((tmp2_safe_receiver == null ? null : tmp2_safe_receiver.c2q()) == null) {
|
|
50415
|
-
reason._v = HangupReason_remoteReject_getInstance();
|
|
50416
|
-
}
|
|
50417
|
-
var tmp3_safe_receiver = this.y2p_1.k2p_1;
|
|
50418
|
-
if (tmp3_safe_receiver == null)
|
|
50419
|
-
null;
|
|
50420
|
-
else {
|
|
50421
|
-
tmp3_safe_receiver.u2o(legId, hangup.c1y_1, reason._v);
|
|
50422
|
-
}
|
|
50423
|
-
}
|
|
50424
|
-
// Inline function 'kotlin.collections.forEach' call
|
|
50425
|
-
var tmp$ret$5;
|
|
50426
|
-
// Inline function 'kotlin.collections.filter' call
|
|
50427
|
-
var tmp0_filter = state.z2p_1;
|
|
50428
|
-
var tmp$ret$4;
|
|
50429
|
-
// Inline function 'kotlin.collections.filterTo' call
|
|
50430
|
-
var tmp0_filterTo = LinkedHashMap_init_$Create$();
|
|
50431
|
-
var tmp$ret$2;
|
|
50432
|
-
// Inline function 'kotlin.collections.iterator' call
|
|
50433
|
-
tmp$ret$2 = tmp0_filter.q().g();
|
|
50434
|
-
var tmp0_iterator = tmp$ret$2;
|
|
50435
|
-
while (tmp0_iterator.h()) {
|
|
50436
|
-
var element = tmp0_iterator.i();
|
|
50437
|
-
var tmp$ret$3;
|
|
50438
|
-
// Inline function 'com.vonage.clientcore.core.api.<no name provided>.onRTCHangup.<anonymous>' call
|
|
50439
|
-
tmp$ret$3 = !(element.s1().q2p_1 === legId) ? element.s1().w2p_1 : false;
|
|
50440
|
-
if (tmp$ret$3) {
|
|
50441
|
-
tmp0_filterTo.l(element.q1(), element.s1());
|
|
50442
|
-
}
|
|
50443
|
-
}
|
|
50444
|
-
tmp$ret$4 = tmp0_filterTo;
|
|
50445
|
-
tmp$ret$5 = tmp$ret$4;
|
|
50446
|
-
var tmp1_forEach = tmp$ret$5;
|
|
50447
|
-
var tmp$ret$6;
|
|
50448
|
-
// Inline function 'kotlin.collections.iterator' call
|
|
50449
|
-
tmp$ret$6 = tmp1_forEach.q().g();
|
|
50450
|
-
var tmp0_iterator_0 = tmp$ret$6;
|
|
50451
|
-
while (tmp0_iterator_0.h()) {
|
|
50452
|
-
var element_0 = tmp0_iterator_0.i();
|
|
50453
|
-
// Inline function 'com.vonage.clientcore.core.api.<no name provided>.onRTCHangup.<anonymous>' call
|
|
50454
|
-
this.y2p_1.h2p_1.b1d(Action_init_$Create$(new InviteCleanup(element_0.q1())));
|
|
50455
50413
|
}
|
|
50414
|
+
cleanupReducers(this.y2p_1.h2p_1, legId, conversationId);
|
|
50456
50415
|
};
|
|
50457
50416
|
VoiceAPIImpl$1.prototype.o2f = function (conversationId, legId, fromUserId, status) {
|
|
50458
50417
|
if (!(conversationId == null) ? !isFromMe(this.y2p_1, fromUserId) : false) {
|
|
@@ -50466,7 +50425,7 @@ function requireClientsdkClientcore () {
|
|
|
50466
50425
|
function VoiceAPIImpl$lambda$lambda(this$0, $cache) {
|
|
50467
50426
|
return function () {
|
|
50468
50427
|
var state = ensureNotNull(this$0.h2p_1.z2f(getKClass(InviteReducer)));
|
|
50469
|
-
var tmp0_safe_receiver = state.
|
|
50428
|
+
var tmp0_safe_receiver = state.f2q_1;
|
|
50470
50429
|
var tmp;
|
|
50471
50430
|
if (tmp0_safe_receiver == null) {
|
|
50472
50431
|
tmp = null;
|
|
@@ -50478,8 +50437,8 @@ function requireClientsdkClientcore () {
|
|
|
50478
50437
|
// Inline function 'com.vonage.clientcore.core.api.VoiceAPIImpl.<anonymous>.<anonymous>.<anonymous>' call
|
|
50479
50438
|
var tmp$ret$0;
|
|
50480
50439
|
// Inline function 'kotlin.collections.get' call
|
|
50481
|
-
var tmp0_get = state.
|
|
50482
|
-
var tmp1_get = state.
|
|
50440
|
+
var tmp0_get = state.d2q_1;
|
|
50441
|
+
var tmp1_get = state.f2q_1;
|
|
50483
50442
|
tmp$ret$0 = (isInterface(tmp0_get, Map) ? tmp0_get : THROW_CCE()).g2(tmp1_get);
|
|
50484
50443
|
tmp$ret$1 = tmp$ret$0;
|
|
50485
50444
|
tmp$ret$2 = tmp$ret$1;
|
|
@@ -50487,14 +50446,14 @@ function requireClientsdkClientcore () {
|
|
|
50487
50446
|
}
|
|
50488
50447
|
var updatedInvite = tmp;
|
|
50489
50448
|
var tmp_0;
|
|
50490
|
-
if (state.
|
|
50449
|
+
if (state.f2q_1 == null) {
|
|
50491
50450
|
tmp_0 = Unit_getInstance();
|
|
50492
50451
|
} else {
|
|
50493
50452
|
var tmp_1;
|
|
50494
50453
|
if (!(updatedInvite == null)) {
|
|
50495
50454
|
var tmp$ret$3;
|
|
50496
50455
|
// Inline function 'kotlin.collections.get' call
|
|
50497
|
-
var tmp0_get_0 = state.
|
|
50456
|
+
var tmp0_get_0 = state.f2q_1;
|
|
50498
50457
|
tmp$ret$3 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp0_get_0);
|
|
50499
50458
|
tmp_1 = tmp$ret$3 == null;
|
|
50500
50459
|
} else {
|
|
@@ -50504,16 +50463,16 @@ function requireClientsdkClientcore () {
|
|
|
50504
50463
|
var tmp2_set = updatedInvite.q2p_1;
|
|
50505
50464
|
var tmp$ret$4;
|
|
50506
50465
|
// Inline function 'kotlin.also' call
|
|
50507
|
-
var tmp1_also = updatedInvite.
|
|
50466
|
+
var tmp1_also = updatedInvite.k2q(null, null, null, null, null, null, false, false, 0, 511, null);
|
|
50508
50467
|
// Inline function 'kotlin.contracts.contract' call
|
|
50509
50468
|
// Inline function 'com.vonage.clientcore.core.api.VoiceAPIImpl.<anonymous>.<anonymous>.<anonymous>' call
|
|
50510
50469
|
var config = ensureNotNull(this$0.h2p_1.z2f(getKClass(ConfigReducer)));
|
|
50511
|
-
if (config.
|
|
50470
|
+
if (config.q2q_1 ? tmp1_also.v2p_1 : false) {
|
|
50512
50471
|
var tmp0_safe_receiver_0 = this$0.k2p_1;
|
|
50513
50472
|
if (tmp0_safe_receiver_0 == null)
|
|
50514
50473
|
null;
|
|
50515
50474
|
else {
|
|
50516
|
-
tmp0_safe_receiver_0.o2o(updatedInvite.q2p_1, from_1(tmp1_also.p2p_1), tmp1_also.p2p_1.
|
|
50475
|
+
tmp0_safe_receiver_0.o2o(updatedInvite.q2p_1, from_1(tmp1_also.p2p_1), tmp1_also.p2p_1.l2q());
|
|
50517
50476
|
}
|
|
50518
50477
|
}
|
|
50519
50478
|
tmp$ret$4 = tmp1_also;
|
|
@@ -50538,7 +50497,7 @@ function requireClientsdkClientcore () {
|
|
|
50538
50497
|
if (tmp_3) {
|
|
50539
50498
|
var tmp$ret$5;
|
|
50540
50499
|
// Inline function 'kotlin.collections.get' call
|
|
50541
|
-
var tmp4_get = state.
|
|
50500
|
+
var tmp4_get = state.f2q_1;
|
|
50542
50501
|
tmp$ret$5 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp4_get);
|
|
50543
50502
|
var tmp1_safe_receiver = tmp$ret$5;
|
|
50544
50503
|
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.u2p_1;
|
|
@@ -50560,13 +50519,13 @@ function requireClientsdkClientcore () {
|
|
|
50560
50519
|
if (!(updatedInvite == null)) {
|
|
50561
50520
|
var tmp$ret$6;
|
|
50562
50521
|
// Inline function 'kotlin.collections.get' call
|
|
50563
|
-
var tmp5_get = state.
|
|
50522
|
+
var tmp5_get = state.f2q_1;
|
|
50564
50523
|
tmp$ret$6 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp5_get);
|
|
50565
50524
|
var tmp6_safe_receiver = tmp$ret$6;
|
|
50566
50525
|
var tmp_8 = (tmp6_safe_receiver == null ? null : tmp6_safe_receiver.w2p_1) === false;
|
|
50567
50526
|
var tmp$ret$7;
|
|
50568
50527
|
// Inline function 'kotlin.collections.get' call
|
|
50569
|
-
var tmp6_get = state.
|
|
50528
|
+
var tmp6_get = state.f2q_1;
|
|
50570
50529
|
tmp$ret$7 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp6_get);
|
|
50571
50530
|
var tmp4_safe_receiver = tmp$ret$7;
|
|
50572
50531
|
var tmp5_safe_receiver = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.u2p_1;
|
|
@@ -50586,12 +50545,12 @@ function requireClientsdkClientcore () {
|
|
|
50586
50545
|
var tmp_12;
|
|
50587
50546
|
var tmp$ret$8;
|
|
50588
50547
|
// Inline function 'kotlin.collections.get' call
|
|
50589
|
-
var tmp7_get = state.
|
|
50548
|
+
var tmp7_get = state.f2q_1;
|
|
50590
50549
|
tmp$ret$8 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp7_get);
|
|
50591
50550
|
if (!(tmp$ret$8 == null)) {
|
|
50592
50551
|
var tmp$ret$9;
|
|
50593
50552
|
// Inline function 'kotlin.collections.get' call
|
|
50594
|
-
var tmp8_get = state.
|
|
50553
|
+
var tmp8_get = state.f2q_1;
|
|
50595
50554
|
tmp$ret$9 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp8_get);
|
|
50596
50555
|
var tmp_13 = ensureNotNull(tmp$ret$9).u2p_1.s1();
|
|
50597
50556
|
tmp_12 = tmp_13 instanceof Joined;
|
|
@@ -50605,7 +50564,7 @@ function requireClientsdkClientcore () {
|
|
|
50605
50564
|
tmp_11 = null;
|
|
50606
50565
|
} else {
|
|
50607
50566
|
var tmp_14 = updatedInvite.u2p_1.s1();
|
|
50608
|
-
if ((tmp_14 instanceof Left ? tmp_14 : THROW_CCE()).
|
|
50567
|
+
if ((tmp_14 instanceof Left ? tmp_14 : THROW_CCE()).j2q_1 === 'REMOTE_REJECT') {
|
|
50609
50568
|
tmp_11 = VoiceInviteCancelReason_RejectedElsewhere_getInstance();
|
|
50610
50569
|
} else {
|
|
50611
50570
|
if (updatedInvite.x2p_1 === 487) {
|
|
@@ -50643,7 +50602,7 @@ function requireClientsdkClientcore () {
|
|
|
50643
50602
|
if (updatedInvite == null) {
|
|
50644
50603
|
var tmp$ret$12;
|
|
50645
50604
|
// Inline function 'kotlin.collections.get' call
|
|
50646
|
-
var tmp9_get = state.
|
|
50605
|
+
var tmp9_get = state.f2q_1;
|
|
50647
50606
|
tmp$ret$12 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp9_get);
|
|
50648
50607
|
tmp_16 = !(tmp$ret$12 == null);
|
|
50649
50608
|
} else {
|
|
@@ -50652,7 +50611,7 @@ function requireClientsdkClientcore () {
|
|
|
50652
50611
|
if (tmp_16) {
|
|
50653
50612
|
var tmp$ret$13;
|
|
50654
50613
|
// Inline function 'kotlin.collections.remove' call
|
|
50655
|
-
var tmp10_remove = state.
|
|
50614
|
+
var tmp10_remove = state.f2q_1;
|
|
50656
50615
|
tmp$ret$13 = (isInterface($cache, MutableMap) ? $cache : THROW_CCE()).g3(tmp10_remove);
|
|
50657
50616
|
tmp_0 = Unit_getInstance();
|
|
50658
50617
|
} else {
|
|
@@ -50670,7 +50629,7 @@ function requireClientsdkClientcore () {
|
|
|
50670
50629
|
// Inline function 'kotlin.let' call
|
|
50671
50630
|
// Inline function 'kotlin.contracts.contract' call
|
|
50672
50631
|
var tmp0_set = tmp8_safe_receiver.q2p_1;
|
|
50673
|
-
var tmp1_set = tmp8_safe_receiver.
|
|
50632
|
+
var tmp1_set = tmp8_safe_receiver.k2q(null, null, null, null, null, null, false, false, 0, 511, null);
|
|
50674
50633
|
$cache.l(tmp0_set, tmp1_set);
|
|
50675
50634
|
tmp$ret$14 = Unit_getInstance();
|
|
50676
50635
|
}
|
|
@@ -50725,7 +50684,7 @@ function requireClientsdkClientcore () {
|
|
|
50725
50684
|
}
|
|
50726
50685
|
if (tmp_1) {
|
|
50727
50686
|
var tmp1_set = updatedCall.z2o_1;
|
|
50728
|
-
var tmp2_set = updatedCall.
|
|
50687
|
+
var tmp2_set = updatedCall.r2q(false, null, null, null, null, null, null, null, 255, null);
|
|
50729
50688
|
$cache.l(tmp1_set, tmp2_set);
|
|
50730
50689
|
tmp_0 = Unit_getInstance();
|
|
50731
50690
|
} else {
|
|
@@ -50747,13 +50706,13 @@ function requireClientsdkClientcore () {
|
|
|
50747
50706
|
var previousCall = ensureNotNull(tmp$ret$5);
|
|
50748
50707
|
// Inline function 'kotlin.collections.set' call
|
|
50749
50708
|
var tmp5_set = updatedCall.z2o_1;
|
|
50750
|
-
var tmp6_set = updatedCall.
|
|
50709
|
+
var tmp6_set = updatedCall.r2q(false, null, null, null, null, null, null, null, 255, null);
|
|
50751
50710
|
$cache.l(tmp5_set, tmp6_set);
|
|
50752
50711
|
if (!equals(updatedCall.a2p_1, previousCall.a2p_1)) {
|
|
50753
50712
|
onCallMemberChange(this$0, updatedCall);
|
|
50754
50713
|
}
|
|
50755
50714
|
var tmp_3;
|
|
50756
|
-
if (!(updatedCall.d2p_1.
|
|
50715
|
+
if (!(updatedCall.d2p_1.s2q_1 == null) ? !updatedCall.d2p_1.equals(previousCall.d2p_1) ? true : !equals(updatedCall.b2p_1, previousCall.b2p_1) : false) {
|
|
50757
50716
|
onCallMediaChange(this$0, updatedCall);
|
|
50758
50717
|
tmp_3 = Unit_getInstance();
|
|
50759
50718
|
}
|
|
@@ -50922,7 +50881,7 @@ function requireClientsdkClientcore () {
|
|
|
50922
50881
|
}
|
|
50923
50882
|
};
|
|
50924
50883
|
VoiceAPIImpl.prototype.z1a = function (callId, callback) {
|
|
50925
|
-
var invite = ensureNotNull(this.h2p_1.z2f(getKClass(InviteReducer))).
|
|
50884
|
+
var invite = ensureNotNull(this.h2p_1.z2f(getKClass(InviteReducer))).d2q_1.g2(callId);
|
|
50926
50885
|
if (invite == null) {
|
|
50927
50886
|
callback(Companion_getInstance_107().t2f(InternalError_NoInviteFound_getInstance()));
|
|
50928
50887
|
return Unit_getInstance();
|
|
@@ -50950,7 +50909,7 @@ function requireClientsdkClientcore () {
|
|
|
50950
50909
|
this.h2p_1.b1d(new Action(tmp_4, ActionMeta_init_$Create$(null, callId, VoiceAPIImpl$rejectCall$lambda(callback), 1, null)));
|
|
50951
50910
|
};
|
|
50952
50911
|
VoiceAPIImpl.prototype.a1b = function (callId, callback) {
|
|
50953
|
-
var invite = ensureNotNull(this.h2p_1.z2f(getKClass(InviteReducer))).
|
|
50912
|
+
var invite = ensureNotNull(this.h2p_1.z2f(getKClass(InviteReducer))).d2q_1.g2(callId);
|
|
50954
50913
|
if (invite == null) {
|
|
50955
50914
|
callback(Companion_getInstance_107().t2f(InternalError_NoInviteFound_getInstance()));
|
|
50956
50915
|
return Unit_getInstance();
|
|
@@ -51061,21 +51020,21 @@ function requireClientsdkClientcore () {
|
|
|
51061
51020
|
};
|
|
51062
51021
|
VoiceAPIImpl.$metadata$ = classMeta('VoiceAPIImpl', [VoiceAPI]);
|
|
51063
51022
|
function SetupOutboundCall(user, context) {
|
|
51064
|
-
this.
|
|
51065
|
-
this.
|
|
51023
|
+
this.v2q_1 = user;
|
|
51024
|
+
this.w2q_1 = context;
|
|
51066
51025
|
}
|
|
51067
51026
|
SetupOutboundCall.prototype.n1k = function () {
|
|
51068
|
-
return this.
|
|
51027
|
+
return this.v2q_1;
|
|
51069
51028
|
};
|
|
51070
51029
|
SetupOutboundCall.prototype.z3 = function () {
|
|
51071
|
-
return this.
|
|
51030
|
+
return this.w2q_1;
|
|
51072
51031
|
};
|
|
51073
51032
|
SetupOutboundCall.prototype.toString = function () {
|
|
51074
|
-
return 'SetupOutboundCall(user=' + this.
|
|
51033
|
+
return 'SetupOutboundCall(user=' + this.v2q_1 + ', context=' + this.w2q_1 + ')';
|
|
51075
51034
|
};
|
|
51076
51035
|
SetupOutboundCall.prototype.hashCode = function () {
|
|
51077
|
-
var result = getStringHashCode(this.
|
|
51078
|
-
result = imul(result, 31) + (this.
|
|
51036
|
+
var result = getStringHashCode(this.v2q_1);
|
|
51037
|
+
result = imul(result, 31) + (this.w2q_1 == null ? 0 : hashCode(this.w2q_1)) | 0;
|
|
51079
51038
|
return result;
|
|
51080
51039
|
};
|
|
51081
51040
|
SetupOutboundCall.prototype.equals = function (other) {
|
|
@@ -51084,24 +51043,24 @@ function requireClientsdkClientcore () {
|
|
|
51084
51043
|
if (!(other instanceof SetupOutboundCall))
|
|
51085
51044
|
return false;
|
|
51086
51045
|
var tmp0_other_with_cast = other instanceof SetupOutboundCall ? other : THROW_CCE();
|
|
51087
|
-
if (!(this.
|
|
51046
|
+
if (!(this.v2q_1 === tmp0_other_with_cast.v2q_1))
|
|
51088
51047
|
return false;
|
|
51089
|
-
if (!equals(this.
|
|
51048
|
+
if (!equals(this.w2q_1, tmp0_other_with_cast.w2q_1))
|
|
51090
51049
|
return false;
|
|
51091
51050
|
return true;
|
|
51092
51051
|
};
|
|
51093
51052
|
SetupOutboundCall.$metadata$ = classMeta('SetupOutboundCall', [CallEvent]);
|
|
51094
51053
|
function CallCleanup(callId) {
|
|
51095
|
-
this.
|
|
51054
|
+
this.x2q_1 = callId;
|
|
51096
51055
|
}
|
|
51097
|
-
CallCleanup.prototype.
|
|
51098
|
-
return this.
|
|
51056
|
+
CallCleanup.prototype.y2q = function () {
|
|
51057
|
+
return this.x2q_1;
|
|
51099
51058
|
};
|
|
51100
51059
|
CallCleanup.prototype.toString = function () {
|
|
51101
|
-
return 'CallCleanup(callId=' + this.
|
|
51060
|
+
return 'CallCleanup(callId=' + this.x2q_1 + ')';
|
|
51102
51061
|
};
|
|
51103
51062
|
CallCleanup.prototype.hashCode = function () {
|
|
51104
|
-
return getStringHashCode(this.
|
|
51063
|
+
return getStringHashCode(this.x2q_1);
|
|
51105
51064
|
};
|
|
51106
51065
|
CallCleanup.prototype.equals = function (other) {
|
|
51107
51066
|
if (this === other)
|
|
@@ -51109,32 +51068,32 @@ function requireClientsdkClientcore () {
|
|
|
51109
51068
|
if (!(other instanceof CallCleanup))
|
|
51110
51069
|
return false;
|
|
51111
51070
|
var tmp0_other_with_cast = other instanceof CallCleanup ? other : THROW_CCE();
|
|
51112
|
-
if (!(this.
|
|
51071
|
+
if (!(this.x2q_1 === tmp0_other_with_cast.x2q_1))
|
|
51113
51072
|
return false;
|
|
51114
51073
|
return true;
|
|
51115
51074
|
};
|
|
51116
51075
|
CallCleanup.$metadata$ = classMeta('CallCleanup', [CallEvent]);
|
|
51117
51076
|
function CallReconnect(callId, from, conversationId) {
|
|
51118
|
-
this.
|
|
51119
|
-
this.
|
|
51120
|
-
this.
|
|
51077
|
+
this.z2q_1 = callId;
|
|
51078
|
+
this.a2r_1 = from;
|
|
51079
|
+
this.b2r_1 = conversationId;
|
|
51121
51080
|
}
|
|
51122
|
-
CallReconnect.prototype.
|
|
51123
|
-
return this.
|
|
51081
|
+
CallReconnect.prototype.y2q = function () {
|
|
51082
|
+
return this.z2q_1;
|
|
51124
51083
|
};
|
|
51125
51084
|
CallReconnect.prototype.e1k = function () {
|
|
51126
|
-
return this.
|
|
51085
|
+
return this.a2r_1;
|
|
51127
51086
|
};
|
|
51128
|
-
CallReconnect.prototype.
|
|
51129
|
-
return this.
|
|
51087
|
+
CallReconnect.prototype.c2r = function () {
|
|
51088
|
+
return this.b2r_1;
|
|
51130
51089
|
};
|
|
51131
51090
|
CallReconnect.prototype.toString = function () {
|
|
51132
|
-
return 'CallReconnect(callId=' + this.
|
|
51091
|
+
return 'CallReconnect(callId=' + this.z2q_1 + ', from=' + this.a2r_1 + ', conversationId=' + this.b2r_1 + ')';
|
|
51133
51092
|
};
|
|
51134
51093
|
CallReconnect.prototype.hashCode = function () {
|
|
51135
|
-
var result = getStringHashCode(this.
|
|
51136
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
51137
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
51094
|
+
var result = getStringHashCode(this.z2q_1);
|
|
51095
|
+
result = imul(result, 31) + getStringHashCode(this.a2r_1) | 0;
|
|
51096
|
+
result = imul(result, 31) + getStringHashCode(this.b2r_1) | 0;
|
|
51138
51097
|
return result;
|
|
51139
51098
|
};
|
|
51140
51099
|
CallReconnect.prototype.equals = function (other) {
|
|
@@ -51143,48 +51102,48 @@ function requireClientsdkClientcore () {
|
|
|
51143
51102
|
if (!(other instanceof CallReconnect))
|
|
51144
51103
|
return false;
|
|
51145
51104
|
var tmp0_other_with_cast = other instanceof CallReconnect ? other : THROW_CCE();
|
|
51146
|
-
if (!(this.
|
|
51105
|
+
if (!(this.z2q_1 === tmp0_other_with_cast.z2q_1))
|
|
51147
51106
|
return false;
|
|
51148
|
-
if (!(this.
|
|
51107
|
+
if (!(this.a2r_1 === tmp0_other_with_cast.a2r_1))
|
|
51149
51108
|
return false;
|
|
51150
|
-
if (!(this.
|
|
51109
|
+
if (!(this.b2r_1 === tmp0_other_with_cast.b2r_1))
|
|
51151
51110
|
return false;
|
|
51152
51111
|
return true;
|
|
51153
51112
|
};
|
|
51154
51113
|
CallReconnect.$metadata$ = classMeta('CallReconnect', [CallEvent]);
|
|
51155
51114
|
function SetupInboundCall(rtcId, conversationId, memberId, from, sdp, context) {
|
|
51156
|
-
this.
|
|
51157
|
-
this.
|
|
51158
|
-
this.
|
|
51159
|
-
this.
|
|
51160
|
-
this.
|
|
51161
|
-
this.
|
|
51162
|
-
}
|
|
51163
|
-
SetupInboundCall.prototype.
|
|
51164
|
-
return this.
|
|
51115
|
+
this.d2r_1 = rtcId;
|
|
51116
|
+
this.e2r_1 = conversationId;
|
|
51117
|
+
this.f2r_1 = memberId;
|
|
51118
|
+
this.g2r_1 = from;
|
|
51119
|
+
this.h2r_1 = sdp;
|
|
51120
|
+
this.i2r_1 = context;
|
|
51121
|
+
}
|
|
51122
|
+
SetupInboundCall.prototype.j2r = function () {
|
|
51123
|
+
return this.d2r_1;
|
|
51165
51124
|
};
|
|
51166
|
-
SetupInboundCall.prototype.
|
|
51167
|
-
return this.
|
|
51125
|
+
SetupInboundCall.prototype.c2r = function () {
|
|
51126
|
+
return this.e2r_1;
|
|
51168
51127
|
};
|
|
51169
|
-
SetupInboundCall.prototype.
|
|
51170
|
-
return this.
|
|
51128
|
+
SetupInboundCall.prototype.k2r = function () {
|
|
51129
|
+
return this.f2r_1;
|
|
51171
51130
|
};
|
|
51172
51131
|
SetupInboundCall.prototype.e1k = function () {
|
|
51173
|
-
return this.
|
|
51132
|
+
return this.g2r_1;
|
|
51174
51133
|
};
|
|
51175
51134
|
SetupInboundCall.prototype.d1t = function () {
|
|
51176
|
-
return this.
|
|
51135
|
+
return this.h2r_1;
|
|
51177
51136
|
};
|
|
51178
51137
|
SetupInboundCall.prototype.toString = function () {
|
|
51179
|
-
return 'SetupInboundCall(rtcId=' + this.
|
|
51138
|
+
return 'SetupInboundCall(rtcId=' + this.d2r_1 + ', conversationId=' + this.e2r_1 + ', memberId=' + this.f2r_1 + ', from=' + this.g2r_1 + ', sdp=' + this.h2r_1 + ', context=' + this.i2r_1 + ')';
|
|
51180
51139
|
};
|
|
51181
51140
|
SetupInboundCall.prototype.hashCode = function () {
|
|
51182
|
-
var result = getStringHashCode(this.
|
|
51183
|
-
result = imul(result, 31) + getStringHashCode(this.b2r_1) | 0;
|
|
51184
|
-
result = imul(result, 31) + getStringHashCode(this.c2r_1) | 0;
|
|
51185
|
-
result = imul(result, 31) + hashCode(this.d2r_1) | 0;
|
|
51141
|
+
var result = getStringHashCode(this.d2r_1);
|
|
51186
51142
|
result = imul(result, 31) + getStringHashCode(this.e2r_1) | 0;
|
|
51187
|
-
result = imul(result, 31) + (this.f2r_1
|
|
51143
|
+
result = imul(result, 31) + getStringHashCode(this.f2r_1) | 0;
|
|
51144
|
+
result = imul(result, 31) + hashCode(this.g2r_1) | 0;
|
|
51145
|
+
result = imul(result, 31) + getStringHashCode(this.h2r_1) | 0;
|
|
51146
|
+
result = imul(result, 31) + (this.i2r_1 == null ? 0 : hashCode(this.i2r_1)) | 0;
|
|
51188
51147
|
return result;
|
|
51189
51148
|
};
|
|
51190
51149
|
SetupInboundCall.prototype.equals = function (other) {
|
|
@@ -51193,51 +51152,31 @@ function requireClientsdkClientcore () {
|
|
|
51193
51152
|
if (!(other instanceof SetupInboundCall))
|
|
51194
51153
|
return false;
|
|
51195
51154
|
var tmp0_other_with_cast = other instanceof SetupInboundCall ? other : THROW_CCE();
|
|
51196
|
-
if (!(this.
|
|
51155
|
+
if (!(this.d2r_1 === tmp0_other_with_cast.d2r_1))
|
|
51197
51156
|
return false;
|
|
51198
|
-
if (!(this.
|
|
51157
|
+
if (!(this.e2r_1 === tmp0_other_with_cast.e2r_1))
|
|
51199
51158
|
return false;
|
|
51200
|
-
if (!(this.
|
|
51159
|
+
if (!(this.f2r_1 === tmp0_other_with_cast.f2r_1))
|
|
51201
51160
|
return false;
|
|
51202
|
-
if (!equals(this.
|
|
51161
|
+
if (!equals(this.g2r_1, tmp0_other_with_cast.g2r_1))
|
|
51203
51162
|
return false;
|
|
51204
|
-
if (!(this.
|
|
51163
|
+
if (!(this.h2r_1 === tmp0_other_with_cast.h2r_1))
|
|
51205
51164
|
return false;
|
|
51206
|
-
if (!equals(this.
|
|
51165
|
+
if (!equals(this.i2r_1, tmp0_other_with_cast.i2r_1))
|
|
51207
51166
|
return false;
|
|
51208
51167
|
return true;
|
|
51209
51168
|
};
|
|
51210
51169
|
SetupInboundCall.$metadata$ = classMeta('SetupInboundCall', [CallEvent]);
|
|
51211
|
-
function InviteCleanup(callId) {
|
|
51212
|
-
this.i2r_1 = callId;
|
|
51213
|
-
}
|
|
51214
|
-
InviteCleanup.prototype.toString = function () {
|
|
51215
|
-
return 'InviteCleanup(callId=' + this.i2r_1 + ')';
|
|
51216
|
-
};
|
|
51217
|
-
InviteCleanup.prototype.hashCode = function () {
|
|
51218
|
-
return getStringHashCode(this.i2r_1);
|
|
51219
|
-
};
|
|
51220
|
-
InviteCleanup.prototype.equals = function (other) {
|
|
51221
|
-
if (this === other)
|
|
51222
|
-
return true;
|
|
51223
|
-
if (!(other instanceof InviteCleanup))
|
|
51224
|
-
return false;
|
|
51225
|
-
var tmp0_other_with_cast = other instanceof InviteCleanup ? other : THROW_CCE();
|
|
51226
|
-
if (!(this.i2r_1 === tmp0_other_with_cast.i2r_1))
|
|
51227
|
-
return false;
|
|
51228
|
-
return true;
|
|
51229
|
-
};
|
|
51230
|
-
InviteCleanup.$metadata$ = classMeta('InviteCleanup', [CallEvent]);
|
|
51231
51170
|
function CallKnockingRequestFailure(callId, exception) {
|
|
51232
|
-
this.
|
|
51233
|
-
this.
|
|
51171
|
+
this.l2r_1 = callId;
|
|
51172
|
+
this.m2r_1 = exception;
|
|
51234
51173
|
}
|
|
51235
51174
|
CallKnockingRequestFailure.prototype.toString = function () {
|
|
51236
|
-
return 'CallKnockingRequestFailure(callId=' + this.
|
|
51175
|
+
return 'CallKnockingRequestFailure(callId=' + this.l2r_1 + ', exception=' + this.m2r_1 + ')';
|
|
51237
51176
|
};
|
|
51238
51177
|
CallKnockingRequestFailure.prototype.hashCode = function () {
|
|
51239
|
-
var result = getStringHashCode(this.
|
|
51240
|
-
result = imul(result, 31) + hashCode(this.
|
|
51178
|
+
var result = getStringHashCode(this.l2r_1);
|
|
51179
|
+
result = imul(result, 31) + hashCode(this.m2r_1) | 0;
|
|
51241
51180
|
return result;
|
|
51242
51181
|
};
|
|
51243
51182
|
CallKnockingRequestFailure.prototype.equals = function (other) {
|
|
@@ -51246,9 +51185,9 @@ function requireClientsdkClientcore () {
|
|
|
51246
51185
|
if (!(other instanceof CallKnockingRequestFailure))
|
|
51247
51186
|
return false;
|
|
51248
51187
|
var tmp0_other_with_cast = other instanceof CallKnockingRequestFailure ? other : THROW_CCE();
|
|
51249
|
-
if (!(this.
|
|
51188
|
+
if (!(this.l2r_1 === tmp0_other_with_cast.l2r_1))
|
|
51250
51189
|
return false;
|
|
51251
|
-
if (!equals(this.
|
|
51190
|
+
if (!equals(this.m2r_1, tmp0_other_with_cast.m2r_1))
|
|
51252
51191
|
return false;
|
|
51253
51192
|
return true;
|
|
51254
51193
|
};
|
|
@@ -51257,18 +51196,18 @@ function requireClientsdkClientcore () {
|
|
|
51257
51196
|
}
|
|
51258
51197
|
CallEvent.$metadata$ = interfaceMeta('CallEvent', [Actionable]);
|
|
51259
51198
|
function CallConversationUpdate(rtcId, name) {
|
|
51260
|
-
this.
|
|
51261
|
-
this.
|
|
51199
|
+
this.n2r_1 = rtcId;
|
|
51200
|
+
this.o2r_1 = name;
|
|
51262
51201
|
}
|
|
51263
51202
|
CallConversationUpdate.prototype.f4 = function () {
|
|
51264
|
-
return this.
|
|
51203
|
+
return this.o2r_1;
|
|
51265
51204
|
};
|
|
51266
51205
|
CallConversationUpdate.prototype.toString = function () {
|
|
51267
|
-
return 'CallConversationUpdate(rtcId=' + this.
|
|
51206
|
+
return 'CallConversationUpdate(rtcId=' + this.n2r_1 + ', name=' + this.o2r_1 + ')';
|
|
51268
51207
|
};
|
|
51269
51208
|
CallConversationUpdate.prototype.hashCode = function () {
|
|
51270
|
-
var result = getStringHashCode(this.
|
|
51271
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
51209
|
+
var result = getStringHashCode(this.n2r_1);
|
|
51210
|
+
result = imul(result, 31) + getStringHashCode(this.o2r_1) | 0;
|
|
51272
51211
|
return result;
|
|
51273
51212
|
};
|
|
51274
51213
|
CallConversationUpdate.prototype.equals = function (other) {
|
|
@@ -51277,9 +51216,9 @@ function requireClientsdkClientcore () {
|
|
|
51277
51216
|
if (!(other instanceof CallConversationUpdate))
|
|
51278
51217
|
return false;
|
|
51279
51218
|
var tmp0_other_with_cast = other instanceof CallConversationUpdate ? other : THROW_CCE();
|
|
51280
|
-
if (!(this.
|
|
51219
|
+
if (!(this.n2r_1 === tmp0_other_with_cast.n2r_1))
|
|
51281
51220
|
return false;
|
|
51282
|
-
if (!(this.
|
|
51221
|
+
if (!(this.o2r_1 === tmp0_other_with_cast.o2r_1))
|
|
51283
51222
|
return false;
|
|
51284
51223
|
return true;
|
|
51285
51224
|
};
|
|
@@ -51294,30 +51233,30 @@ function requireClientsdkClientcore () {
|
|
|
51294
51233
|
return CallCreate_init_$Init$(legId, from, direction, context, memberJoinInfo, $mask0, $marker, Object.create(CallCreate.prototype));
|
|
51295
51234
|
}
|
|
51296
51235
|
function CallCreate(legId, from, direction, context, memberJoinInfo) {
|
|
51297
|
-
this.
|
|
51298
|
-
this.
|
|
51299
|
-
this.
|
|
51300
|
-
this.
|
|
51301
|
-
this.
|
|
51236
|
+
this.p2r_1 = legId;
|
|
51237
|
+
this.q2r_1 = from;
|
|
51238
|
+
this.r2r_1 = direction;
|
|
51239
|
+
this.s2r_1 = context;
|
|
51240
|
+
this.t2r_1 = memberJoinInfo;
|
|
51302
51241
|
}
|
|
51303
51242
|
CallCreate.prototype.g1k = function () {
|
|
51304
|
-
return this.n2r_1;
|
|
51305
|
-
};
|
|
51306
|
-
CallCreate.prototype.s2r = function () {
|
|
51307
51243
|
return this.p2r_1;
|
|
51308
51244
|
};
|
|
51309
|
-
CallCreate.prototype.
|
|
51245
|
+
CallCreate.prototype.u2r = function () {
|
|
51310
51246
|
return this.r2r_1;
|
|
51311
51247
|
};
|
|
51248
|
+
CallCreate.prototype.v2r = function () {
|
|
51249
|
+
return this.t2r_1;
|
|
51250
|
+
};
|
|
51312
51251
|
CallCreate.prototype.toString = function () {
|
|
51313
|
-
return 'CallCreate(legId=' + this.
|
|
51252
|
+
return 'CallCreate(legId=' + this.p2r_1 + ', from=' + this.q2r_1 + ', direction=' + this.r2r_1 + ', context=' + this.s2r_1 + ', memberJoinInfo=' + this.t2r_1 + ')';
|
|
51314
51253
|
};
|
|
51315
51254
|
CallCreate.prototype.hashCode = function () {
|
|
51316
|
-
var result = getStringHashCode(this.
|
|
51317
|
-
result = imul(result, 31) + hashCode(this.
|
|
51318
|
-
result = imul(result, 31) + this.
|
|
51319
|
-
result = imul(result, 31) + (this.
|
|
51320
|
-
result = imul(result, 31) + (this.
|
|
51255
|
+
var result = getStringHashCode(this.p2r_1);
|
|
51256
|
+
result = imul(result, 31) + hashCode(this.q2r_1) | 0;
|
|
51257
|
+
result = imul(result, 31) + this.r2r_1.hashCode() | 0;
|
|
51258
|
+
result = imul(result, 31) + (this.s2r_1 == null ? 0 : hashCode(this.s2r_1)) | 0;
|
|
51259
|
+
result = imul(result, 31) + (this.t2r_1 == null ? 0 : this.t2r_1.hashCode()) | 0;
|
|
51321
51260
|
return result;
|
|
51322
51261
|
};
|
|
51323
51262
|
CallCreate.prototype.equals = function (other) {
|
|
@@ -51326,27 +51265,27 @@ function requireClientsdkClientcore () {
|
|
|
51326
51265
|
if (!(other instanceof CallCreate))
|
|
51327
51266
|
return false;
|
|
51328
51267
|
var tmp0_other_with_cast = other instanceof CallCreate ? other : THROW_CCE();
|
|
51329
|
-
if (!(this.
|
|
51268
|
+
if (!(this.p2r_1 === tmp0_other_with_cast.p2r_1))
|
|
51330
51269
|
return false;
|
|
51331
|
-
if (!equals(this.
|
|
51270
|
+
if (!equals(this.q2r_1, tmp0_other_with_cast.q2r_1))
|
|
51332
51271
|
return false;
|
|
51333
|
-
if (!this.
|
|
51272
|
+
if (!this.r2r_1.equals(tmp0_other_with_cast.r2r_1))
|
|
51334
51273
|
return false;
|
|
51335
|
-
if (!equals(this.
|
|
51274
|
+
if (!equals(this.s2r_1, tmp0_other_with_cast.s2r_1))
|
|
51336
51275
|
return false;
|
|
51337
|
-
if (!equals(this.
|
|
51276
|
+
if (!equals(this.t2r_1, tmp0_other_with_cast.t2r_1))
|
|
51338
51277
|
return false;
|
|
51339
51278
|
return true;
|
|
51340
51279
|
};
|
|
51341
51280
|
CallCreate.$metadata$ = classMeta('CallCreate', [CallEvent]);
|
|
51342
51281
|
function CallMemberMediaTimeout(callId) {
|
|
51343
|
-
this.
|
|
51282
|
+
this.w2r_1 = callId;
|
|
51344
51283
|
}
|
|
51345
51284
|
CallMemberMediaTimeout.prototype.toString = function () {
|
|
51346
|
-
return 'CallMemberMediaTimeout(callId=' + this.
|
|
51285
|
+
return 'CallMemberMediaTimeout(callId=' + this.w2r_1 + ')';
|
|
51347
51286
|
};
|
|
51348
51287
|
CallMemberMediaTimeout.prototype.hashCode = function () {
|
|
51349
|
-
return getStringHashCode(this.
|
|
51288
|
+
return getStringHashCode(this.w2r_1);
|
|
51350
51289
|
};
|
|
51351
51290
|
CallMemberMediaTimeout.prototype.equals = function (other) {
|
|
51352
51291
|
if (this === other)
|
|
@@ -51354,27 +51293,47 @@ function requireClientsdkClientcore () {
|
|
|
51354
51293
|
if (!(other instanceof CallMemberMediaTimeout))
|
|
51355
51294
|
return false;
|
|
51356
51295
|
var tmp0_other_with_cast = other instanceof CallMemberMediaTimeout ? other : THROW_CCE();
|
|
51357
|
-
if (!(this.
|
|
51296
|
+
if (!(this.w2r_1 === tmp0_other_with_cast.w2r_1))
|
|
51358
51297
|
return false;
|
|
51359
51298
|
return true;
|
|
51360
51299
|
};
|
|
51361
51300
|
CallMemberMediaTimeout.$metadata$ = classMeta('CallMemberMediaTimeout', [CallEvent]);
|
|
51301
|
+
function InviteCleanup(callId) {
|
|
51302
|
+
this.x2r_1 = callId;
|
|
51303
|
+
}
|
|
51304
|
+
InviteCleanup.prototype.toString = function () {
|
|
51305
|
+
return 'InviteCleanup(callId=' + this.x2r_1 + ')';
|
|
51306
|
+
};
|
|
51307
|
+
InviteCleanup.prototype.hashCode = function () {
|
|
51308
|
+
return getStringHashCode(this.x2r_1);
|
|
51309
|
+
};
|
|
51310
|
+
InviteCleanup.prototype.equals = function (other) {
|
|
51311
|
+
if (this === other)
|
|
51312
|
+
return true;
|
|
51313
|
+
if (!(other instanceof InviteCleanup))
|
|
51314
|
+
return false;
|
|
51315
|
+
var tmp0_other_with_cast = other instanceof InviteCleanup ? other : THROW_CCE();
|
|
51316
|
+
if (!(this.x2r_1 === tmp0_other_with_cast.x2r_1))
|
|
51317
|
+
return false;
|
|
51318
|
+
return true;
|
|
51319
|
+
};
|
|
51320
|
+
InviteCleanup.$metadata$ = classMeta('InviteCleanup', [CallEvent]);
|
|
51362
51321
|
function MemberJoinInfo(conversationId, memberId) {
|
|
51363
|
-
this.
|
|
51364
|
-
this.
|
|
51322
|
+
this.y2r_1 = conversationId;
|
|
51323
|
+
this.z2r_1 = memberId;
|
|
51365
51324
|
}
|
|
51366
|
-
MemberJoinInfo.prototype.
|
|
51367
|
-
return this.
|
|
51325
|
+
MemberJoinInfo.prototype.c2r = function () {
|
|
51326
|
+
return this.y2r_1;
|
|
51368
51327
|
};
|
|
51369
|
-
MemberJoinInfo.prototype.
|
|
51370
|
-
return this.
|
|
51328
|
+
MemberJoinInfo.prototype.k2r = function () {
|
|
51329
|
+
return this.z2r_1;
|
|
51371
51330
|
};
|
|
51372
51331
|
MemberJoinInfo.prototype.toString = function () {
|
|
51373
|
-
return 'MemberJoinInfo(conversationId=' + this.
|
|
51332
|
+
return 'MemberJoinInfo(conversationId=' + this.y2r_1 + ', memberId=' + this.z2r_1 + ')';
|
|
51374
51333
|
};
|
|
51375
51334
|
MemberJoinInfo.prototype.hashCode = function () {
|
|
51376
|
-
var result = getStringHashCode(this.
|
|
51377
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
51335
|
+
var result = getStringHashCode(this.y2r_1);
|
|
51336
|
+
result = imul(result, 31) + getStringHashCode(this.z2r_1) | 0;
|
|
51378
51337
|
return result;
|
|
51379
51338
|
};
|
|
51380
51339
|
MemberJoinInfo.prototype.equals = function (other) {
|
|
@@ -51383,9 +51342,9 @@ function requireClientsdkClientcore () {
|
|
|
51383
51342
|
if (!(other instanceof MemberJoinInfo))
|
|
51384
51343
|
return false;
|
|
51385
51344
|
var tmp0_other_with_cast = other instanceof MemberJoinInfo ? other : THROW_CCE();
|
|
51386
|
-
if (!(this.
|
|
51345
|
+
if (!(this.y2r_1 === tmp0_other_with_cast.y2r_1))
|
|
51387
51346
|
return false;
|
|
51388
|
-
if (!(this.
|
|
51347
|
+
if (!(this.z2r_1 === tmp0_other_with_cast.z2r_1))
|
|
51389
51348
|
return false;
|
|
51390
51349
|
return true;
|
|
51391
51350
|
};
|
|
@@ -51406,10 +51365,6 @@ function requireClientsdkClientcore () {
|
|
|
51406
51365
|
VoiceInviteCancelReason_initEntries();
|
|
51407
51366
|
return VoiceInviteCancelReason_RemoteTimeout_instance;
|
|
51408
51367
|
}
|
|
51409
|
-
function HangupReason_remoteReject_getInstance() {
|
|
51410
|
-
HangupReason_initEntries();
|
|
51411
|
-
return HangupReason_remoteReject_instance;
|
|
51412
|
-
}
|
|
51413
51368
|
function HangupReason_remoteHangup_getInstance() {
|
|
51414
51369
|
HangupReason_initEntries();
|
|
51415
51370
|
return HangupReason_remoteHangup_instance;
|
|
@@ -51418,6 +51373,10 @@ function requireClientsdkClientcore () {
|
|
|
51418
51373
|
HangupReason_initEntries();
|
|
51419
51374
|
return HangupReason_localHangup_instance;
|
|
51420
51375
|
}
|
|
51376
|
+
function HangupReason_mediaTimeout_getInstance() {
|
|
51377
|
+
HangupReason_initEntries();
|
|
51378
|
+
return HangupReason_mediaTimeout_instance;
|
|
51379
|
+
}
|
|
51421
51380
|
function LegStatus_ringing_getInstance() {
|
|
51422
51381
|
LegStatus_initEntries();
|
|
51423
51382
|
return LegStatus_ringing_instance;
|
|
@@ -51501,10 +51460,10 @@ function requireClientsdkClientcore () {
|
|
|
51501
51460
|
Companion_instance_109 = this;
|
|
51502
51461
|
var tmp = this;
|
|
51503
51462
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
51504
|
-
tmp.
|
|
51463
|
+
tmp.a2s_1 = lazy(tmp_0, ChannelEndpoint$Companion$$cachedSerializer$delegate$_anonymous__ov330i);
|
|
51505
51464
|
}
|
|
51506
51465
|
Companion_109.prototype.v10 = function () {
|
|
51507
|
-
return this.
|
|
51466
|
+
return this.a2s_1.s1();
|
|
51508
51467
|
};
|
|
51509
51468
|
Companion_109.prototype.nr = function (typeParamsSerializers) {
|
|
51510
51469
|
return this.v10();
|
|
@@ -51575,10 +51534,10 @@ function requireClientsdkClientcore () {
|
|
|
51575
51534
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.PhoneChannelEndpoint', this, 2);
|
|
51576
51535
|
tmp0_serialDesc.eq('number', false);
|
|
51577
51536
|
tmp0_serialDesc.eq('type', true);
|
|
51578
|
-
this.
|
|
51537
|
+
this.b2s_1 = tmp0_serialDesc;
|
|
51579
51538
|
}
|
|
51580
51539
|
$serializer_144.prototype.yf = function () {
|
|
51581
|
-
return this.
|
|
51540
|
+
return this.b2s_1;
|
|
51582
51541
|
};
|
|
51583
51542
|
$serializer_144.prototype.tq = function () {
|
|
51584
51543
|
var tmp$ret$2;
|
|
@@ -51594,7 +51553,7 @@ function requireClientsdkClientcore () {
|
|
|
51594
51553
|
return tmp$ret$2;
|
|
51595
51554
|
};
|
|
51596
51555
|
$serializer_144.prototype.ag = function (decoder) {
|
|
51597
|
-
var tmp0_desc = this.
|
|
51556
|
+
var tmp0_desc = this.b2s_1;
|
|
51598
51557
|
var tmp1_flag = true;
|
|
51599
51558
|
var tmp2_index = 0;
|
|
51600
51559
|
var tmp3_bitMask0 = 0;
|
|
@@ -51628,8 +51587,8 @@ function requireClientsdkClientcore () {
|
|
|
51628
51587
|
tmp6_input.gj(tmp0_desc);
|
|
51629
51588
|
return PhoneChannelEndpoint_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
51630
51589
|
};
|
|
51631
|
-
$serializer_144.prototype.
|
|
51632
|
-
var tmp0_desc = this.
|
|
51590
|
+
$serializer_144.prototype.c2s = function (encoder, value) {
|
|
51591
|
+
var tmp0_desc = this.b2s_1;
|
|
51633
51592
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
51634
51593
|
tmp1_output.sk(tmp0_desc, 0, value.u1j_1);
|
|
51635
51594
|
if (tmp1_output.zk(tmp0_desc, 1) ? true : !value.v1j_1.equals(VoiceChannelType_phone_getInstance())) {
|
|
@@ -51638,7 +51597,7 @@ function requireClientsdkClientcore () {
|
|
|
51638
51597
|
tmp1_output.gj(tmp0_desc);
|
|
51639
51598
|
};
|
|
51640
51599
|
$serializer_144.prototype.zf = function (encoder, value) {
|
|
51641
|
-
return this.
|
|
51600
|
+
return this.c2s(encoder, value instanceof PhoneChannelEndpoint ? value : THROW_CCE());
|
|
51642
51601
|
};
|
|
51643
51602
|
$serializer_144.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
51644
51603
|
var $serializer_instance_144;
|
|
@@ -51649,7 +51608,7 @@ function requireClientsdkClientcore () {
|
|
|
51649
51608
|
}
|
|
51650
51609
|
function PhoneChannelEndpoint_init_$Init$(seen1, number, type, serializationConstructorMarker, $this) {
|
|
51651
51610
|
if (!(1 === (1 & seen1))) {
|
|
51652
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_144().
|
|
51611
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_144().b2s_1);
|
|
51653
51612
|
}
|
|
51654
51613
|
ChannelEndpoint_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
51655
51614
|
$this.u1j_1 = number;
|
|
@@ -51668,10 +51627,10 @@ function requireClientsdkClientcore () {
|
|
|
51668
51627
|
this.u1j_1 = number;
|
|
51669
51628
|
this.v1j_1 = VoiceChannelType_phone_getInstance();
|
|
51670
51629
|
}
|
|
51671
|
-
PhoneChannelEndpoint.prototype.
|
|
51630
|
+
PhoneChannelEndpoint.prototype.d2s = function () {
|
|
51672
51631
|
return this.u1j_1;
|
|
51673
51632
|
};
|
|
51674
|
-
PhoneChannelEndpoint.prototype.
|
|
51633
|
+
PhoneChannelEndpoint.prototype.l2q = function () {
|
|
51675
51634
|
return this.v1j_1;
|
|
51676
51635
|
};
|
|
51677
51636
|
PhoneChannelEndpoint.prototype.toString = function () {
|
|
@@ -51709,10 +51668,10 @@ function requireClientsdkClientcore () {
|
|
|
51709
51668
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.AppChannelEndpoint', this, 2);
|
|
51710
51669
|
tmp0_serialDesc.eq('user', false);
|
|
51711
51670
|
tmp0_serialDesc.eq('type', true);
|
|
51712
|
-
this.
|
|
51671
|
+
this.e2s_1 = tmp0_serialDesc;
|
|
51713
51672
|
}
|
|
51714
51673
|
$serializer_145.prototype.yf = function () {
|
|
51715
|
-
return this.
|
|
51674
|
+
return this.e2s_1;
|
|
51716
51675
|
};
|
|
51717
51676
|
$serializer_145.prototype.tq = function () {
|
|
51718
51677
|
var tmp$ret$2;
|
|
@@ -51728,7 +51687,7 @@ function requireClientsdkClientcore () {
|
|
|
51728
51687
|
return tmp$ret$2;
|
|
51729
51688
|
};
|
|
51730
51689
|
$serializer_145.prototype.ag = function (decoder) {
|
|
51731
|
-
var tmp0_desc = this.
|
|
51690
|
+
var tmp0_desc = this.e2s_1;
|
|
51732
51691
|
var tmp1_flag = true;
|
|
51733
51692
|
var tmp2_index = 0;
|
|
51734
51693
|
var tmp3_bitMask0 = 0;
|
|
@@ -51762,8 +51721,8 @@ function requireClientsdkClientcore () {
|
|
|
51762
51721
|
tmp6_input.gj(tmp0_desc);
|
|
51763
51722
|
return AppChannelEndpoint_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
51764
51723
|
};
|
|
51765
|
-
$serializer_145.prototype.
|
|
51766
|
-
var tmp0_desc = this.
|
|
51724
|
+
$serializer_145.prototype.f2s = function (encoder, value) {
|
|
51725
|
+
var tmp0_desc = this.e2s_1;
|
|
51767
51726
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
51768
51727
|
tmp1_output.sk(tmp0_desc, 0, value.w1j_1);
|
|
51769
51728
|
if (tmp1_output.zk(tmp0_desc, 1) ? true : !value.x1j_1.equals(VoiceChannelType_app_getInstance())) {
|
|
@@ -51772,7 +51731,7 @@ function requireClientsdkClientcore () {
|
|
|
51772
51731
|
tmp1_output.gj(tmp0_desc);
|
|
51773
51732
|
};
|
|
51774
51733
|
$serializer_145.prototype.zf = function (encoder, value) {
|
|
51775
|
-
return this.
|
|
51734
|
+
return this.f2s(encoder, value instanceof AppChannelEndpoint ? value : THROW_CCE());
|
|
51776
51735
|
};
|
|
51777
51736
|
$serializer_145.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
51778
51737
|
var $serializer_instance_145;
|
|
@@ -51783,7 +51742,7 @@ function requireClientsdkClientcore () {
|
|
|
51783
51742
|
}
|
|
51784
51743
|
function AppChannelEndpoint_init_$Init$(seen1, user, type, serializationConstructorMarker, $this) {
|
|
51785
51744
|
if (!(1 === (1 & seen1))) {
|
|
51786
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_145().
|
|
51745
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_145().e2s_1);
|
|
51787
51746
|
}
|
|
51788
51747
|
ChannelEndpoint_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
51789
51748
|
$this.w1j_1 = user;
|
|
@@ -51805,7 +51764,7 @@ function requireClientsdkClientcore () {
|
|
|
51805
51764
|
AppChannelEndpoint.prototype.n1k = function () {
|
|
51806
51765
|
return this.w1j_1;
|
|
51807
51766
|
};
|
|
51808
|
-
AppChannelEndpoint.prototype.
|
|
51767
|
+
AppChannelEndpoint.prototype.l2q = function () {
|
|
51809
51768
|
return this.x1j_1;
|
|
51810
51769
|
};
|
|
51811
51770
|
AppChannelEndpoint.prototype.toString = function () {
|
|
@@ -51841,16 +51800,16 @@ function requireClientsdkClientcore () {
|
|
|
51841
51800
|
function AppChannelEndpointNoUser() {
|
|
51842
51801
|
AppChannelEndpointNoUser_instance = this;
|
|
51843
51802
|
ChannelEndpoint.call(this);
|
|
51844
|
-
this.
|
|
51803
|
+
this.g2s_1 = VoiceChannelType_app_getInstance();
|
|
51845
51804
|
var tmp = this;
|
|
51846
51805
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
51847
|
-
tmp.
|
|
51806
|
+
tmp.h2s_1 = lazy(tmp_0, AppChannelEndpointNoUser$$cachedSerializer$delegate$_anonymous__g6jshx);
|
|
51848
51807
|
}
|
|
51849
|
-
AppChannelEndpointNoUser.prototype.
|
|
51850
|
-
return this.
|
|
51808
|
+
AppChannelEndpointNoUser.prototype.l2q = function () {
|
|
51809
|
+
return this.g2s_1;
|
|
51851
51810
|
};
|
|
51852
51811
|
AppChannelEndpointNoUser.prototype.v10 = function () {
|
|
51853
|
-
return this.
|
|
51812
|
+
return this.h2s_1.s1();
|
|
51854
51813
|
};
|
|
51855
51814
|
AppChannelEndpointNoUser.prototype.nr = function (typeParamsSerializers) {
|
|
51856
51815
|
return this.v10();
|
|
@@ -51882,10 +51841,10 @@ function requireClientsdkClientcore () {
|
|
|
51882
51841
|
tmp0_serialDesc.eq('username', true);
|
|
51883
51842
|
tmp0_serialDesc.eq('password', true);
|
|
51884
51843
|
tmp0_serialDesc.eq('type', true);
|
|
51885
|
-
this.
|
|
51844
|
+
this.i2s_1 = tmp0_serialDesc;
|
|
51886
51845
|
}
|
|
51887
51846
|
$serializer_146.prototype.yf = function () {
|
|
51888
|
-
return this.
|
|
51847
|
+
return this.i2s_1;
|
|
51889
51848
|
};
|
|
51890
51849
|
$serializer_146.prototype.tq = function () {
|
|
51891
51850
|
var tmp$ret$2;
|
|
@@ -51901,7 +51860,7 @@ function requireClientsdkClientcore () {
|
|
|
51901
51860
|
return tmp$ret$2;
|
|
51902
51861
|
};
|
|
51903
51862
|
$serializer_146.prototype.ag = function (decoder) {
|
|
51904
|
-
var tmp0_desc = this.
|
|
51863
|
+
var tmp0_desc = this.i2s_1;
|
|
51905
51864
|
var tmp1_flag = true;
|
|
51906
51865
|
var tmp2_index = 0;
|
|
51907
51866
|
var tmp3_bitMask0 = 0;
|
|
@@ -51949,8 +51908,8 @@ function requireClientsdkClientcore () {
|
|
|
51949
51908
|
tmp8_input.gj(tmp0_desc);
|
|
51950
51909
|
return SipChannelEndpoint_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
|
|
51951
51910
|
};
|
|
51952
|
-
$serializer_146.prototype.
|
|
51953
|
-
var tmp0_desc = this.
|
|
51911
|
+
$serializer_146.prototype.j2s = function (encoder, value) {
|
|
51912
|
+
var tmp0_desc = this.i2s_1;
|
|
51954
51913
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
51955
51914
|
tmp1_output.sk(tmp0_desc, 0, value.o1j_1);
|
|
51956
51915
|
if (tmp1_output.zk(tmp0_desc, 1) ? true : !(value.p1j_1 == null)) {
|
|
@@ -51965,7 +51924,7 @@ function requireClientsdkClientcore () {
|
|
|
51965
51924
|
tmp1_output.gj(tmp0_desc);
|
|
51966
51925
|
};
|
|
51967
51926
|
$serializer_146.prototype.zf = function (encoder, value) {
|
|
51968
|
-
return this.
|
|
51927
|
+
return this.j2s(encoder, value instanceof SipChannelEndpoint ? value : THROW_CCE());
|
|
51969
51928
|
};
|
|
51970
51929
|
$serializer_146.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
51971
51930
|
var $serializer_instance_146;
|
|
@@ -51976,7 +51935,7 @@ function requireClientsdkClientcore () {
|
|
|
51976
51935
|
}
|
|
51977
51936
|
function SipChannelEndpoint_init_$Init$(seen1, uri, username, password, type, serializationConstructorMarker, $this) {
|
|
51978
51937
|
if (!(1 === (1 & seen1))) {
|
|
51979
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_146().
|
|
51938
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_146().i2s_1);
|
|
51980
51939
|
}
|
|
51981
51940
|
ChannelEndpoint_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
51982
51941
|
$this.o1j_1 = uri;
|
|
@@ -52005,13 +51964,13 @@ function requireClientsdkClientcore () {
|
|
|
52005
51964
|
this.q1j_1 = password;
|
|
52006
51965
|
this.r1j_1 = VoiceChannelType_sip_getInstance();
|
|
52007
51966
|
}
|
|
52008
|
-
SipChannelEndpoint.prototype.
|
|
51967
|
+
SipChannelEndpoint.prototype.k2s = function () {
|
|
52009
51968
|
return this.o1j_1;
|
|
52010
51969
|
};
|
|
52011
|
-
SipChannelEndpoint.prototype.
|
|
51970
|
+
SipChannelEndpoint.prototype.l2s = function () {
|
|
52012
51971
|
return this.p1j_1;
|
|
52013
51972
|
};
|
|
52014
|
-
SipChannelEndpoint.prototype.
|
|
51973
|
+
SipChannelEndpoint.prototype.l2q = function () {
|
|
52015
51974
|
return this.r1j_1;
|
|
52016
51975
|
};
|
|
52017
51976
|
SipChannelEndpoint.prototype.toString = function () {
|
|
@@ -52056,10 +52015,10 @@ function requireClientsdkClientcore () {
|
|
|
52056
52015
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.WebSocketChannelEndpoint', this, 2);
|
|
52057
52016
|
tmp0_serialDesc.eq('uri', false);
|
|
52058
52017
|
tmp0_serialDesc.eq('type', true);
|
|
52059
|
-
this.
|
|
52018
|
+
this.m2s_1 = tmp0_serialDesc;
|
|
52060
52019
|
}
|
|
52061
52020
|
$serializer_147.prototype.yf = function () {
|
|
52062
|
-
return this.
|
|
52021
|
+
return this.m2s_1;
|
|
52063
52022
|
};
|
|
52064
52023
|
$serializer_147.prototype.tq = function () {
|
|
52065
52024
|
var tmp$ret$2;
|
|
@@ -52075,7 +52034,7 @@ function requireClientsdkClientcore () {
|
|
|
52075
52034
|
return tmp$ret$2;
|
|
52076
52035
|
};
|
|
52077
52036
|
$serializer_147.prototype.ag = function (decoder) {
|
|
52078
|
-
var tmp0_desc = this.
|
|
52037
|
+
var tmp0_desc = this.m2s_1;
|
|
52079
52038
|
var tmp1_flag = true;
|
|
52080
52039
|
var tmp2_index = 0;
|
|
52081
52040
|
var tmp3_bitMask0 = 0;
|
|
@@ -52109,8 +52068,8 @@ function requireClientsdkClientcore () {
|
|
|
52109
52068
|
tmp6_input.gj(tmp0_desc);
|
|
52110
52069
|
return WebSocketChannelEndpoint_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
52111
52070
|
};
|
|
52112
|
-
$serializer_147.prototype.
|
|
52113
|
-
var tmp0_desc = this.
|
|
52071
|
+
$serializer_147.prototype.n2s = function (encoder, value) {
|
|
52072
|
+
var tmp0_desc = this.m2s_1;
|
|
52114
52073
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52115
52074
|
tmp1_output.sk(tmp0_desc, 0, value.s1j_1);
|
|
52116
52075
|
if (tmp1_output.zk(tmp0_desc, 1) ? true : !value.t1j_1.equals(VoiceChannelType_websocket_getInstance())) {
|
|
@@ -52119,7 +52078,7 @@ function requireClientsdkClientcore () {
|
|
|
52119
52078
|
tmp1_output.gj(tmp0_desc);
|
|
52120
52079
|
};
|
|
52121
52080
|
$serializer_147.prototype.zf = function (encoder, value) {
|
|
52122
|
-
return this.
|
|
52081
|
+
return this.n2s(encoder, value instanceof WebSocketChannelEndpoint ? value : THROW_CCE());
|
|
52123
52082
|
};
|
|
52124
52083
|
$serializer_147.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52125
52084
|
var $serializer_instance_147;
|
|
@@ -52130,7 +52089,7 @@ function requireClientsdkClientcore () {
|
|
|
52130
52089
|
}
|
|
52131
52090
|
function WebSocketChannelEndpoint_init_$Init$(seen1, uri, type, serializationConstructorMarker, $this) {
|
|
52132
52091
|
if (!(1 === (1 & seen1))) {
|
|
52133
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_147().
|
|
52092
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_147().m2s_1);
|
|
52134
52093
|
}
|
|
52135
52094
|
ChannelEndpoint_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
52136
52095
|
$this.s1j_1 = uri;
|
|
@@ -52149,10 +52108,10 @@ function requireClientsdkClientcore () {
|
|
|
52149
52108
|
this.s1j_1 = uri;
|
|
52150
52109
|
this.t1j_1 = VoiceChannelType_websocket_getInstance();
|
|
52151
52110
|
}
|
|
52152
|
-
WebSocketChannelEndpoint.prototype.
|
|
52111
|
+
WebSocketChannelEndpoint.prototype.k2s = function () {
|
|
52153
52112
|
return this.s1j_1;
|
|
52154
52113
|
};
|
|
52155
|
-
WebSocketChannelEndpoint.prototype.
|
|
52114
|
+
WebSocketChannelEndpoint.prototype.l2q = function () {
|
|
52156
52115
|
return this.t1j_1;
|
|
52157
52116
|
};
|
|
52158
52117
|
WebSocketChannelEndpoint.prototype.toString = function () {
|
|
@@ -52187,10 +52146,10 @@ function requireClientsdkClientcore () {
|
|
|
52187
52146
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.DTMFChannel', this, 2);
|
|
52188
52147
|
tmp0_serialDesc.eq('id', true);
|
|
52189
52148
|
tmp0_serialDesc.eq('type', true);
|
|
52190
|
-
this.
|
|
52149
|
+
this.o2s_1 = tmp0_serialDesc;
|
|
52191
52150
|
}
|
|
52192
52151
|
$serializer_148.prototype.yf = function () {
|
|
52193
|
-
return this.
|
|
52152
|
+
return this.o2s_1;
|
|
52194
52153
|
};
|
|
52195
52154
|
$serializer_148.prototype.tq = function () {
|
|
52196
52155
|
var tmp$ret$2;
|
|
@@ -52206,7 +52165,7 @@ function requireClientsdkClientcore () {
|
|
|
52206
52165
|
return tmp$ret$2;
|
|
52207
52166
|
};
|
|
52208
52167
|
$serializer_148.prototype.ag = function (decoder) {
|
|
52209
|
-
var tmp0_desc = this.
|
|
52168
|
+
var tmp0_desc = this.o2s_1;
|
|
52210
52169
|
var tmp1_flag = true;
|
|
52211
52170
|
var tmp2_index = 0;
|
|
52212
52171
|
var tmp3_bitMask0 = 0;
|
|
@@ -52240,8 +52199,8 @@ function requireClientsdkClientcore () {
|
|
|
52240
52199
|
tmp6_input.gj(tmp0_desc);
|
|
52241
52200
|
return DTMFChannel_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
52242
52201
|
};
|
|
52243
|
-
$serializer_148.prototype.
|
|
52244
|
-
var tmp0_desc = this.
|
|
52202
|
+
$serializer_148.prototype.p2s = function (encoder, value) {
|
|
52203
|
+
var tmp0_desc = this.o2s_1;
|
|
52245
52204
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52246
52205
|
if (tmp1_output.zk(tmp0_desc, 0) ? true : !(value.k2j_1 == null)) {
|
|
52247
52206
|
tmp1_output.vk(tmp0_desc, 0, StringSerializer_getInstance(), value.k2j_1);
|
|
@@ -52252,7 +52211,7 @@ function requireClientsdkClientcore () {
|
|
|
52252
52211
|
tmp1_output.gj(tmp0_desc);
|
|
52253
52212
|
};
|
|
52254
52213
|
$serializer_148.prototype.zf = function (encoder, value) {
|
|
52255
|
-
return this.
|
|
52214
|
+
return this.p2s(encoder, value instanceof DTMFChannel ? value : THROW_CCE());
|
|
52256
52215
|
};
|
|
52257
52216
|
$serializer_148.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52258
52217
|
var $serializer_instance_148;
|
|
@@ -52263,7 +52222,7 @@ function requireClientsdkClientcore () {
|
|
|
52263
52222
|
}
|
|
52264
52223
|
function DTMFChannel_init_$Init$(seen1, id, type, serializationConstructorMarker, $this) {
|
|
52265
52224
|
if (!(0 === (0 & seen1))) {
|
|
52266
|
-
throwMissingFieldException(seen1, 0, $serializer_getInstance_148().
|
|
52225
|
+
throwMissingFieldException(seen1, 0, $serializer_getInstance_148().o2s_1);
|
|
52267
52226
|
}
|
|
52268
52227
|
if (0 === (seen1 & 1))
|
|
52269
52228
|
$this.k2j_1 = null;
|
|
@@ -52313,10 +52272,10 @@ function requireClientsdkClientcore () {
|
|
|
52313
52272
|
tmp0_serialDesc.eq('leg_ids', true);
|
|
52314
52273
|
tmp0_serialDesc.eq('from', true);
|
|
52315
52274
|
tmp0_serialDesc.eq('to', true);
|
|
52316
|
-
this.
|
|
52275
|
+
this.q2s_1 = tmp0_serialDesc;
|
|
52317
52276
|
}
|
|
52318
52277
|
$serializer_149.prototype.yf = function () {
|
|
52319
|
-
return this.
|
|
52278
|
+
return this.q2s_1;
|
|
52320
52279
|
};
|
|
52321
52280
|
$serializer_149.prototype.tq = function () {
|
|
52322
52281
|
var tmp$ret$2;
|
|
@@ -52332,7 +52291,7 @@ function requireClientsdkClientcore () {
|
|
|
52332
52291
|
return tmp$ret$2;
|
|
52333
52292
|
};
|
|
52334
52293
|
$serializer_149.prototype.ag = function (decoder) {
|
|
52335
|
-
var tmp0_desc = this.
|
|
52294
|
+
var tmp0_desc = this.q2s_1;
|
|
52336
52295
|
var tmp1_flag = true;
|
|
52337
52296
|
var tmp2_index = 0;
|
|
52338
52297
|
var tmp3_bitMask0 = 0;
|
|
@@ -52394,8 +52353,8 @@ function requireClientsdkClientcore () {
|
|
|
52394
52353
|
tmp10_input.gj(tmp0_desc);
|
|
52395
52354
|
return Channel_init_$Create$_0(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, null);
|
|
52396
52355
|
};
|
|
52397
|
-
$serializer_149.prototype.
|
|
52398
|
-
var tmp0_desc = this.
|
|
52356
|
+
$serializer_149.prototype.r2s = function (encoder, value) {
|
|
52357
|
+
var tmp0_desc = this.q2s_1;
|
|
52399
52358
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52400
52359
|
if (tmp1_output.zk(tmp0_desc, 0) ? true : !(value.e2j_1 == null)) {
|
|
52401
52360
|
tmp1_output.vk(tmp0_desc, 0, StringSerializer_getInstance(), value.e2j_1);
|
|
@@ -52416,7 +52375,7 @@ function requireClientsdkClientcore () {
|
|
|
52416
52375
|
tmp1_output.gj(tmp0_desc);
|
|
52417
52376
|
};
|
|
52418
52377
|
$serializer_149.prototype.zf = function (encoder, value) {
|
|
52419
|
-
return this.
|
|
52378
|
+
return this.r2s(encoder, value instanceof Channel_0 ? value : THROW_CCE());
|
|
52420
52379
|
};
|
|
52421
52380
|
$serializer_149.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52422
52381
|
var $serializer_instance_149;
|
|
@@ -52427,7 +52386,7 @@ function requireClientsdkClientcore () {
|
|
|
52427
52386
|
}
|
|
52428
52387
|
function Channel_init_$Init$_0(seen1, id, knocking_id, type, leg_ids, from, to, serializationConstructorMarker, $this) {
|
|
52429
52388
|
if (!(4 === (4 & seen1))) {
|
|
52430
|
-
throwMissingFieldException(seen1, 4, $serializer_getInstance_149().
|
|
52389
|
+
throwMissingFieldException(seen1, 4, $serializer_getInstance_149().q2s_1);
|
|
52431
52390
|
}
|
|
52432
52391
|
if (0 === (seen1 & 1))
|
|
52433
52392
|
$this.e2j_1 = null;
|
|
@@ -52558,10 +52517,10 @@ function requireClientsdkClientcore () {
|
|
|
52558
52517
|
tmp0_serialDesc.eq('conversation_id', false);
|
|
52559
52518
|
tmp0_serialDesc.eq('name', false);
|
|
52560
52519
|
tmp0_serialDesc.eq('display_name', true);
|
|
52561
|
-
this.
|
|
52520
|
+
this.u2s_1 = tmp0_serialDesc;
|
|
52562
52521
|
}
|
|
52563
52522
|
$serializer_150.prototype.yf = function () {
|
|
52564
|
-
return this.
|
|
52523
|
+
return this.u2s_1;
|
|
52565
52524
|
};
|
|
52566
52525
|
$serializer_150.prototype.tq = function () {
|
|
52567
52526
|
var tmp$ret$2;
|
|
@@ -52577,7 +52536,7 @@ function requireClientsdkClientcore () {
|
|
|
52577
52536
|
return tmp$ret$2;
|
|
52578
52537
|
};
|
|
52579
52538
|
$serializer_150.prototype.ag = function (decoder) {
|
|
52580
|
-
var tmp0_desc = this.
|
|
52539
|
+
var tmp0_desc = this.u2s_1;
|
|
52581
52540
|
var tmp1_flag = true;
|
|
52582
52541
|
var tmp2_index = 0;
|
|
52583
52542
|
var tmp3_bitMask0 = 0;
|
|
@@ -52618,18 +52577,18 @@ function requireClientsdkClientcore () {
|
|
|
52618
52577
|
tmp7_input.gj(tmp0_desc);
|
|
52619
52578
|
return ConversationInfo_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
52620
52579
|
};
|
|
52621
|
-
$serializer_150.prototype.
|
|
52622
|
-
var tmp0_desc = this.
|
|
52580
|
+
$serializer_150.prototype.v2s = function (encoder, value) {
|
|
52581
|
+
var tmp0_desc = this.u2s_1;
|
|
52623
52582
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52624
|
-
tmp1_output.sk(tmp0_desc, 0, value.
|
|
52625
|
-
tmp1_output.sk(tmp0_desc, 1, value.
|
|
52626
|
-
if (tmp1_output.zk(tmp0_desc, 2) ? true : !(value.
|
|
52627
|
-
tmp1_output.vk(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
52583
|
+
tmp1_output.sk(tmp0_desc, 0, value.w2s_1);
|
|
52584
|
+
tmp1_output.sk(tmp0_desc, 1, value.x2s_1);
|
|
52585
|
+
if (tmp1_output.zk(tmp0_desc, 2) ? true : !(value.y2s_1 == null)) {
|
|
52586
|
+
tmp1_output.vk(tmp0_desc, 2, StringSerializer_getInstance(), value.y2s_1);
|
|
52628
52587
|
}
|
|
52629
52588
|
tmp1_output.gj(tmp0_desc);
|
|
52630
52589
|
};
|
|
52631
52590
|
$serializer_150.prototype.zf = function (encoder, value) {
|
|
52632
|
-
return this.
|
|
52591
|
+
return this.v2s(encoder, value instanceof ConversationInfo ? value : THROW_CCE());
|
|
52633
52592
|
};
|
|
52634
52593
|
$serializer_150.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52635
52594
|
var $serializer_instance_150;
|
|
@@ -52640,14 +52599,14 @@ function requireClientsdkClientcore () {
|
|
|
52640
52599
|
}
|
|
52641
52600
|
function ConversationInfo_init_$Init$(seen1, conversation_id, name, display_name, serializationConstructorMarker, $this) {
|
|
52642
52601
|
if (!(3 === (3 & seen1))) {
|
|
52643
|
-
throwMissingFieldException(seen1, 3, $serializer_getInstance_150().
|
|
52602
|
+
throwMissingFieldException(seen1, 3, $serializer_getInstance_150().u2s_1);
|
|
52644
52603
|
}
|
|
52645
|
-
$this.
|
|
52646
|
-
$this.
|
|
52604
|
+
$this.w2s_1 = conversation_id;
|
|
52605
|
+
$this.x2s_1 = name;
|
|
52647
52606
|
if (0 === (seen1 & 4))
|
|
52648
|
-
$this.
|
|
52607
|
+
$this.y2s_1 = null;
|
|
52649
52608
|
else
|
|
52650
|
-
$this.
|
|
52609
|
+
$this.y2s_1 = display_name;
|
|
52651
52610
|
return $this;
|
|
52652
52611
|
}
|
|
52653
52612
|
function ConversationInfo_init_$Create$(seen1, conversation_id, name, display_name, serializationConstructorMarker) {
|
|
@@ -52656,12 +52615,12 @@ function requireClientsdkClientcore () {
|
|
|
52656
52615
|
function ConversationInfo() {
|
|
52657
52616
|
}
|
|
52658
52617
|
ConversationInfo.prototype.toString = function () {
|
|
52659
|
-
return 'ConversationInfo(conversation_id=' + this.
|
|
52618
|
+
return 'ConversationInfo(conversation_id=' + this.w2s_1 + ', name=' + this.x2s_1 + ', display_name=' + this.y2s_1 + ')';
|
|
52660
52619
|
};
|
|
52661
52620
|
ConversationInfo.prototype.hashCode = function () {
|
|
52662
|
-
var result = getStringHashCode(this.
|
|
52663
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
52664
|
-
result = imul(result, 31) + (this.
|
|
52621
|
+
var result = getStringHashCode(this.w2s_1);
|
|
52622
|
+
result = imul(result, 31) + getStringHashCode(this.x2s_1) | 0;
|
|
52623
|
+
result = imul(result, 31) + (this.y2s_1 == null ? 0 : getStringHashCode(this.y2s_1)) | 0;
|
|
52665
52624
|
return result;
|
|
52666
52625
|
};
|
|
52667
52626
|
ConversationInfo.prototype.equals = function (other) {
|
|
@@ -52670,11 +52629,11 @@ function requireClientsdkClientcore () {
|
|
|
52670
52629
|
if (!(other instanceof ConversationInfo))
|
|
52671
52630
|
return false;
|
|
52672
52631
|
var tmp0_other_with_cast = other instanceof ConversationInfo ? other : THROW_CCE();
|
|
52673
|
-
if (!(this.
|
|
52632
|
+
if (!(this.w2s_1 === tmp0_other_with_cast.w2s_1))
|
|
52674
52633
|
return false;
|
|
52675
|
-
if (!(this.
|
|
52634
|
+
if (!(this.x2s_1 === tmp0_other_with_cast.x2s_1))
|
|
52676
52635
|
return false;
|
|
52677
|
-
if (!(this.
|
|
52636
|
+
if (!(this.y2s_1 == tmp0_other_with_cast.y2s_1))
|
|
52678
52637
|
return false;
|
|
52679
52638
|
return true;
|
|
52680
52639
|
};
|
|
@@ -52682,10 +52641,10 @@ function requireClientsdkClientcore () {
|
|
|
52682
52641
|
function None_0() {
|
|
52683
52642
|
None_instance_0 = this;
|
|
52684
52643
|
LegState.call(this);
|
|
52685
|
-
this.
|
|
52644
|
+
this.z2s_1 = null;
|
|
52686
52645
|
}
|
|
52687
52646
|
None_0.prototype.v1k = function () {
|
|
52688
|
-
return this.
|
|
52647
|
+
return this.z2s_1;
|
|
52689
52648
|
};
|
|
52690
52649
|
None_0.$metadata$ = objectMeta('None', undefined, undefined, undefined, undefined, LegState.prototype);
|
|
52691
52650
|
var None_instance_0;
|
|
@@ -52696,16 +52655,16 @@ function requireClientsdkClientcore () {
|
|
|
52696
52655
|
}
|
|
52697
52656
|
function Prewarm(id) {
|
|
52698
52657
|
LegState.call(this);
|
|
52699
|
-
this.
|
|
52658
|
+
this.a2t_1 = id;
|
|
52700
52659
|
}
|
|
52701
52660
|
Prewarm.prototype.v1k = function () {
|
|
52702
|
-
return this.
|
|
52661
|
+
return this.a2t_1;
|
|
52703
52662
|
};
|
|
52704
52663
|
Prewarm.prototype.toString = function () {
|
|
52705
|
-
return 'Prewarm(id=' + this.
|
|
52664
|
+
return 'Prewarm(id=' + this.a2t_1 + ')';
|
|
52706
52665
|
};
|
|
52707
52666
|
Prewarm.prototype.hashCode = function () {
|
|
52708
|
-
return getStringHashCode(this.
|
|
52667
|
+
return getStringHashCode(this.a2t_1);
|
|
52709
52668
|
};
|
|
52710
52669
|
Prewarm.prototype.equals = function (other) {
|
|
52711
52670
|
if (this === other)
|
|
@@ -52713,23 +52672,23 @@ function requireClientsdkClientcore () {
|
|
|
52713
52672
|
if (!(other instanceof Prewarm))
|
|
52714
52673
|
return false;
|
|
52715
52674
|
var tmp0_other_with_cast = other instanceof Prewarm ? other : THROW_CCE();
|
|
52716
|
-
if (!(this.
|
|
52675
|
+
if (!(this.a2t_1 === tmp0_other_with_cast.a2t_1))
|
|
52717
52676
|
return false;
|
|
52718
52677
|
return true;
|
|
52719
52678
|
};
|
|
52720
52679
|
Prewarm.$metadata$ = classMeta('Prewarm', undefined, undefined, undefined, undefined, LegState.prototype);
|
|
52721
52680
|
function Started(id) {
|
|
52722
52681
|
LegState.call(this);
|
|
52723
|
-
this.
|
|
52682
|
+
this.b2t_1 = id;
|
|
52724
52683
|
}
|
|
52725
52684
|
Started.prototype.v1k = function () {
|
|
52726
|
-
return this.
|
|
52685
|
+
return this.b2t_1;
|
|
52727
52686
|
};
|
|
52728
52687
|
Started.prototype.toString = function () {
|
|
52729
|
-
return 'Started(id=' + this.
|
|
52688
|
+
return 'Started(id=' + this.b2t_1 + ')';
|
|
52730
52689
|
};
|
|
52731
52690
|
Started.prototype.hashCode = function () {
|
|
52732
|
-
return getStringHashCode(this.
|
|
52691
|
+
return getStringHashCode(this.b2t_1);
|
|
52733
52692
|
};
|
|
52734
52693
|
Started.prototype.equals = function (other) {
|
|
52735
52694
|
if (this === other)
|
|
@@ -52737,25 +52696,25 @@ function requireClientsdkClientcore () {
|
|
|
52737
52696
|
if (!(other instanceof Started))
|
|
52738
52697
|
return false;
|
|
52739
52698
|
var tmp0_other_with_cast = other instanceof Started ? other : THROW_CCE();
|
|
52740
|
-
if (!(this.
|
|
52699
|
+
if (!(this.b2t_1 === tmp0_other_with_cast.b2t_1))
|
|
52741
52700
|
return false;
|
|
52742
52701
|
return true;
|
|
52743
52702
|
};
|
|
52744
52703
|
Started.$metadata$ = classMeta('Started', undefined, undefined, undefined, undefined, LegState.prototype);
|
|
52745
52704
|
function Completed(id, hangupReason) {
|
|
52746
52705
|
LegState.call(this);
|
|
52747
|
-
this.
|
|
52748
|
-
this.
|
|
52706
|
+
this.c2t_1 = id;
|
|
52707
|
+
this.d2t_1 = hangupReason;
|
|
52749
52708
|
}
|
|
52750
52709
|
Completed.prototype.v1k = function () {
|
|
52751
|
-
return this.
|
|
52710
|
+
return this.c2t_1;
|
|
52752
52711
|
};
|
|
52753
52712
|
Completed.prototype.toString = function () {
|
|
52754
|
-
return 'Completed(id=' + this.
|
|
52713
|
+
return 'Completed(id=' + this.c2t_1 + ', hangupReason=' + this.d2t_1 + ')';
|
|
52755
52714
|
};
|
|
52756
52715
|
Completed.prototype.hashCode = function () {
|
|
52757
|
-
var result = getStringHashCode(this.
|
|
52758
|
-
result = imul(result, 31) + this.
|
|
52716
|
+
var result = getStringHashCode(this.c2t_1);
|
|
52717
|
+
result = imul(result, 31) + this.d2t_1.hashCode() | 0;
|
|
52759
52718
|
return result;
|
|
52760
52719
|
};
|
|
52761
52720
|
Completed.prototype.equals = function (other) {
|
|
@@ -52764,9 +52723,9 @@ function requireClientsdkClientcore () {
|
|
|
52764
52723
|
if (!(other instanceof Completed))
|
|
52765
52724
|
return false;
|
|
52766
52725
|
var tmp0_other_with_cast = other instanceof Completed ? other : THROW_CCE();
|
|
52767
|
-
if (!(this.
|
|
52726
|
+
if (!(this.c2t_1 === tmp0_other_with_cast.c2t_1))
|
|
52768
52727
|
return false;
|
|
52769
|
-
if (!this.
|
|
52728
|
+
if (!this.d2t_1.equals(tmp0_other_with_cast.d2t_1))
|
|
52770
52729
|
return false;
|
|
52771
52730
|
return true;
|
|
52772
52731
|
};
|
|
@@ -52776,12 +52735,12 @@ function requireClientsdkClientcore () {
|
|
|
52776
52735
|
LegState.$metadata$ = classMeta('LegState');
|
|
52777
52736
|
function Offer(sdp) {
|
|
52778
52737
|
MediaDescription.call(this);
|
|
52779
|
-
this.
|
|
52738
|
+
this.e2t_1 = sdp;
|
|
52780
52739
|
}
|
|
52781
52740
|
Offer.$metadata$ = classMeta('Offer', undefined, undefined, undefined, undefined, MediaDescription.prototype);
|
|
52782
52741
|
function Answer(sdp) {
|
|
52783
52742
|
MediaDescription.call(this);
|
|
52784
|
-
this.
|
|
52743
|
+
this.f2t_1 = sdp;
|
|
52785
52744
|
}
|
|
52786
52745
|
Answer.$metadata$ = classMeta('Answer', undefined, undefined, undefined, undefined, MediaDescription.prototype);
|
|
52787
52746
|
function MediaDescription() {
|
|
@@ -52801,29 +52760,29 @@ function requireClientsdkClientcore () {
|
|
|
52801
52760
|
return MediaTransport_init_$Init$(localDescription, remoteDescription, connected, $mask0, $marker, Object.create(MediaTransport.prototype));
|
|
52802
52761
|
}
|
|
52803
52762
|
function MediaTransport(localDescription, remoteDescription, connected) {
|
|
52804
|
-
this.
|
|
52805
|
-
this.
|
|
52806
|
-
this.
|
|
52763
|
+
this.s2q_1 = localDescription;
|
|
52764
|
+
this.t2q_1 = remoteDescription;
|
|
52765
|
+
this.u2q_1 = connected;
|
|
52807
52766
|
}
|
|
52808
|
-
MediaTransport.prototype.
|
|
52767
|
+
MediaTransport.prototype.g2t = function (localDescription, remoteDescription, connected) {
|
|
52809
52768
|
return new MediaTransport(localDescription, remoteDescription, connected);
|
|
52810
52769
|
};
|
|
52811
|
-
MediaTransport.prototype.
|
|
52770
|
+
MediaTransport.prototype.h2t = function (localDescription, remoteDescription, connected, $mask0, $handler) {
|
|
52812
52771
|
if (!(($mask0 & 1) === 0))
|
|
52813
|
-
localDescription = this.
|
|
52772
|
+
localDescription = this.s2q_1;
|
|
52814
52773
|
if (!(($mask0 & 2) === 0))
|
|
52815
|
-
remoteDescription = this.
|
|
52774
|
+
remoteDescription = this.t2q_1;
|
|
52816
52775
|
if (!(($mask0 & 4) === 0))
|
|
52817
|
-
connected = this.
|
|
52818
|
-
return this.
|
|
52776
|
+
connected = this.u2q_1;
|
|
52777
|
+
return this.g2t(localDescription, remoteDescription, connected);
|
|
52819
52778
|
};
|
|
52820
52779
|
MediaTransport.prototype.toString = function () {
|
|
52821
|
-
return 'MediaTransport(localDescription=' + this.
|
|
52780
|
+
return 'MediaTransport(localDescription=' + this.s2q_1 + ', remoteDescription=' + this.t2q_1 + ', connected=' + this.u2q_1 + ')';
|
|
52822
52781
|
};
|
|
52823
52782
|
MediaTransport.prototype.hashCode = function () {
|
|
52824
|
-
var result = this.
|
|
52825
|
-
result = imul(result, 31) + (this.
|
|
52826
|
-
result = imul(result, 31) + (this.
|
|
52783
|
+
var result = this.s2q_1 == null ? 0 : hashCode(this.s2q_1);
|
|
52784
|
+
result = imul(result, 31) + (this.t2q_1 == null ? 0 : hashCode(this.t2q_1)) | 0;
|
|
52785
|
+
result = imul(result, 31) + (this.u2q_1 | 0) | 0;
|
|
52827
52786
|
return result;
|
|
52828
52787
|
};
|
|
52829
52788
|
MediaTransport.prototype.equals = function (other) {
|
|
@@ -52832,11 +52791,11 @@ function requireClientsdkClientcore () {
|
|
|
52832
52791
|
if (!(other instanceof MediaTransport))
|
|
52833
52792
|
return false;
|
|
52834
52793
|
var tmp0_other_with_cast = other instanceof MediaTransport ? other : THROW_CCE();
|
|
52835
|
-
if (!equals(this.
|
|
52794
|
+
if (!equals(this.s2q_1, tmp0_other_with_cast.s2q_1))
|
|
52836
52795
|
return false;
|
|
52837
|
-
if (!equals(this.
|
|
52796
|
+
if (!equals(this.t2q_1, tmp0_other_with_cast.t2q_1))
|
|
52838
52797
|
return false;
|
|
52839
|
-
if (!(this.
|
|
52798
|
+
if (!(this.u2q_1 === tmp0_other_with_cast.u2q_1))
|
|
52840
52799
|
return false;
|
|
52841
52800
|
return true;
|
|
52842
52801
|
};
|
|
@@ -52847,10 +52806,10 @@ function requireClientsdkClientcore () {
|
|
|
52847
52806
|
tmp0_serialDesc.eq('enabled', false);
|
|
52848
52807
|
tmp0_serialDesc.eq('earmuffed', false);
|
|
52849
52808
|
tmp0_serialDesc.eq('muted', false);
|
|
52850
|
-
this.
|
|
52809
|
+
this.i2t_1 = tmp0_serialDesc;
|
|
52851
52810
|
}
|
|
52852
52811
|
$serializer_151.prototype.yf = function () {
|
|
52853
|
-
return this.
|
|
52812
|
+
return this.i2t_1;
|
|
52854
52813
|
};
|
|
52855
52814
|
$serializer_151.prototype.tq = function () {
|
|
52856
52815
|
var tmp$ret$2;
|
|
@@ -52866,7 +52825,7 @@ function requireClientsdkClientcore () {
|
|
|
52866
52825
|
return tmp$ret$2;
|
|
52867
52826
|
};
|
|
52868
52827
|
$serializer_151.prototype.ag = function (decoder) {
|
|
52869
|
-
var tmp0_desc = this.
|
|
52828
|
+
var tmp0_desc = this.i2t_1;
|
|
52870
52829
|
var tmp1_flag = true;
|
|
52871
52830
|
var tmp2_index = 0;
|
|
52872
52831
|
var tmp3_bitMask0 = 0;
|
|
@@ -52907,16 +52866,16 @@ function requireClientsdkClientcore () {
|
|
|
52907
52866
|
tmp7_input.gj(tmp0_desc);
|
|
52908
52867
|
return UserAudio_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
52909
52868
|
};
|
|
52910
|
-
$serializer_151.prototype.
|
|
52911
|
-
var tmp0_desc = this.
|
|
52869
|
+
$serializer_151.prototype.j2t = function (encoder, value) {
|
|
52870
|
+
var tmp0_desc = this.i2t_1;
|
|
52912
52871
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52913
|
-
tmp1_output.kk(tmp0_desc, 0, value.
|
|
52914
|
-
tmp1_output.kk(tmp0_desc, 1, value.
|
|
52915
|
-
tmp1_output.kk(tmp0_desc, 2, value.
|
|
52872
|
+
tmp1_output.kk(tmp0_desc, 0, value.k2t_1);
|
|
52873
|
+
tmp1_output.kk(tmp0_desc, 1, value.l2t_1);
|
|
52874
|
+
tmp1_output.kk(tmp0_desc, 2, value.m2t_1);
|
|
52916
52875
|
tmp1_output.gj(tmp0_desc);
|
|
52917
52876
|
};
|
|
52918
52877
|
$serializer_151.prototype.zf = function (encoder, value) {
|
|
52919
|
-
return this.
|
|
52878
|
+
return this.j2t(encoder, value instanceof UserAudio ? value : THROW_CCE());
|
|
52920
52879
|
};
|
|
52921
52880
|
$serializer_151.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52922
52881
|
var $serializer_instance_151;
|
|
@@ -52927,11 +52886,11 @@ function requireClientsdkClientcore () {
|
|
|
52927
52886
|
}
|
|
52928
52887
|
function UserAudio_init_$Init$(seen1, enabled, earmuffed, muted, serializationConstructorMarker, $this) {
|
|
52929
52888
|
if (!(7 === (7 & seen1))) {
|
|
52930
|
-
throwMissingFieldException(seen1, 7, $serializer_getInstance_151().
|
|
52889
|
+
throwMissingFieldException(seen1, 7, $serializer_getInstance_151().i2t_1);
|
|
52931
52890
|
}
|
|
52932
|
-
$this.
|
|
52933
|
-
$this.
|
|
52934
|
-
$this.
|
|
52891
|
+
$this.k2t_1 = enabled;
|
|
52892
|
+
$this.l2t_1 = earmuffed;
|
|
52893
|
+
$this.m2t_1 = muted;
|
|
52935
52894
|
return $this;
|
|
52936
52895
|
}
|
|
52937
52896
|
function UserAudio_init_$Create$(seen1, enabled, earmuffed, muted, serializationConstructorMarker) {
|
|
@@ -52940,12 +52899,12 @@ function requireClientsdkClientcore () {
|
|
|
52940
52899
|
function UserAudio() {
|
|
52941
52900
|
}
|
|
52942
52901
|
UserAudio.prototype.toString = function () {
|
|
52943
|
-
return 'UserAudio(enabled=' + this.
|
|
52902
|
+
return 'UserAudio(enabled=' + this.k2t_1 + ', earmuffed=' + this.l2t_1 + ', muted=' + this.m2t_1 + ')';
|
|
52944
52903
|
};
|
|
52945
52904
|
UserAudio.prototype.hashCode = function () {
|
|
52946
|
-
var result = this.
|
|
52947
|
-
result = imul(result, 31) + (this.
|
|
52948
|
-
result = imul(result, 31) + (this.
|
|
52905
|
+
var result = this.k2t_1 | 0;
|
|
52906
|
+
result = imul(result, 31) + (this.l2t_1 | 0) | 0;
|
|
52907
|
+
result = imul(result, 31) + (this.m2t_1 | 0) | 0;
|
|
52949
52908
|
return result;
|
|
52950
52909
|
};
|
|
52951
52910
|
UserAudio.prototype.equals = function (other) {
|
|
@@ -52954,11 +52913,11 @@ function requireClientsdkClientcore () {
|
|
|
52954
52913
|
if (!(other instanceof UserAudio))
|
|
52955
52914
|
return false;
|
|
52956
52915
|
var tmp0_other_with_cast = other instanceof UserAudio ? other : THROW_CCE();
|
|
52957
|
-
if (!(this.
|
|
52916
|
+
if (!(this.k2t_1 === tmp0_other_with_cast.k2t_1))
|
|
52958
52917
|
return false;
|
|
52959
|
-
if (!(this.
|
|
52918
|
+
if (!(this.l2t_1 === tmp0_other_with_cast.l2t_1))
|
|
52960
52919
|
return false;
|
|
52961
|
-
if (!(this.
|
|
52920
|
+
if (!(this.m2t_1 === tmp0_other_with_cast.m2t_1))
|
|
52962
52921
|
return false;
|
|
52963
52922
|
return true;
|
|
52964
52923
|
};
|
|
@@ -52967,10 +52926,10 @@ function requireClientsdkClientcore () {
|
|
|
52967
52926
|
$serializer_instance_152 = this;
|
|
52968
52927
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.InvitedUserMedia', this, 1);
|
|
52969
52928
|
tmp0_serialDesc.eq('audio_settings', false);
|
|
52970
|
-
this.
|
|
52929
|
+
this.n2t_1 = tmp0_serialDesc;
|
|
52971
52930
|
}
|
|
52972
52931
|
$serializer_152.prototype.yf = function () {
|
|
52973
|
-
return this.
|
|
52932
|
+
return this.n2t_1;
|
|
52974
52933
|
};
|
|
52975
52934
|
$serializer_152.prototype.tq = function () {
|
|
52976
52935
|
var tmp$ret$2;
|
|
@@ -52986,7 +52945,7 @@ function requireClientsdkClientcore () {
|
|
|
52986
52945
|
return tmp$ret$2;
|
|
52987
52946
|
};
|
|
52988
52947
|
$serializer_152.prototype.ag = function (decoder) {
|
|
52989
|
-
var tmp0_desc = this.
|
|
52948
|
+
var tmp0_desc = this.n2t_1;
|
|
52990
52949
|
var tmp1_flag = true;
|
|
52991
52950
|
var tmp2_index = 0;
|
|
52992
52951
|
var tmp3_bitMask0 = 0;
|
|
@@ -53013,14 +52972,14 @@ function requireClientsdkClientcore () {
|
|
|
53013
52972
|
tmp5_input.gj(tmp0_desc);
|
|
53014
52973
|
return InvitedUserMedia_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
53015
52974
|
};
|
|
53016
|
-
$serializer_152.prototype.
|
|
53017
|
-
var tmp0_desc = this.
|
|
52975
|
+
$serializer_152.prototype.o2t = function (encoder, value) {
|
|
52976
|
+
var tmp0_desc = this.n2t_1;
|
|
53018
52977
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
53019
|
-
tmp1_output.vk(tmp0_desc, 0, $serializer_getInstance_151(), value.
|
|
52978
|
+
tmp1_output.vk(tmp0_desc, 0, $serializer_getInstance_151(), value.p2t_1);
|
|
53020
52979
|
tmp1_output.gj(tmp0_desc);
|
|
53021
52980
|
};
|
|
53022
52981
|
$serializer_152.prototype.zf = function (encoder, value) {
|
|
53023
|
-
return this.
|
|
52982
|
+
return this.o2t(encoder, value instanceof InvitedUserMedia ? value : THROW_CCE());
|
|
53024
52983
|
};
|
|
53025
52984
|
$serializer_152.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53026
52985
|
var $serializer_instance_152;
|
|
@@ -53031,9 +52990,9 @@ function requireClientsdkClientcore () {
|
|
|
53031
52990
|
}
|
|
53032
52991
|
function InvitedUserMedia_init_$Init$(seen1, audio_settings, serializationConstructorMarker, $this) {
|
|
53033
52992
|
if (!(1 === (1 & seen1))) {
|
|
53034
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_152().
|
|
52993
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_152().n2t_1);
|
|
53035
52994
|
}
|
|
53036
|
-
$this.
|
|
52995
|
+
$this.p2t_1 = audio_settings;
|
|
53037
52996
|
return $this;
|
|
53038
52997
|
}
|
|
53039
52998
|
function InvitedUserMedia_init_$Create$(seen1, audio_settings, serializationConstructorMarker) {
|
|
@@ -53042,10 +53001,10 @@ function requireClientsdkClientcore () {
|
|
|
53042
53001
|
function InvitedUserMedia() {
|
|
53043
53002
|
}
|
|
53044
53003
|
InvitedUserMedia.prototype.toString = function () {
|
|
53045
|
-
return 'InvitedUserMedia(audio_settings=' + this.
|
|
53004
|
+
return 'InvitedUserMedia(audio_settings=' + this.p2t_1 + ')';
|
|
53046
53005
|
};
|
|
53047
53006
|
InvitedUserMedia.prototype.hashCode = function () {
|
|
53048
|
-
return this.
|
|
53007
|
+
return this.p2t_1 == null ? 0 : this.p2t_1.hashCode();
|
|
53049
53008
|
};
|
|
53050
53009
|
InvitedUserMedia.prototype.equals = function (other) {
|
|
53051
53010
|
if (this === other)
|
|
@@ -53053,7 +53012,7 @@ function requireClientsdkClientcore () {
|
|
|
53053
53012
|
if (!(other instanceof InvitedUserMedia))
|
|
53054
53013
|
return false;
|
|
53055
53014
|
var tmp0_other_with_cast = other instanceof InvitedUserMedia ? other : THROW_CCE();
|
|
53056
|
-
if (!equals(this.
|
|
53015
|
+
if (!equals(this.p2t_1, tmp0_other_with_cast.p2t_1))
|
|
53057
53016
|
return false;
|
|
53058
53017
|
return true;
|
|
53059
53018
|
};
|
|
@@ -53070,10 +53029,10 @@ function requireClientsdkClientcore () {
|
|
|
53070
53029
|
tmp0_serialDesc.eq('flaw_total', false);
|
|
53071
53030
|
tmp0_serialDesc.eq('packet_cnt', false);
|
|
53072
53031
|
tmp0_serialDesc.eq('packet_loss_perc', false);
|
|
53073
|
-
this.
|
|
53032
|
+
this.q2t_1 = tmp0_serialDesc;
|
|
53074
53033
|
}
|
|
53075
53034
|
$serializer_153.prototype.yf = function () {
|
|
53076
|
-
return this.
|
|
53035
|
+
return this.q2t_1;
|
|
53077
53036
|
};
|
|
53078
53037
|
$serializer_153.prototype.tq = function () {
|
|
53079
53038
|
var tmp$ret$2;
|
|
@@ -53089,7 +53048,7 @@ function requireClientsdkClientcore () {
|
|
|
53089
53048
|
return tmp$ret$2;
|
|
53090
53049
|
};
|
|
53091
53050
|
$serializer_153.prototype.ag = function (decoder) {
|
|
53092
|
-
var tmp0_desc = this.
|
|
53051
|
+
var tmp0_desc = this.q2t_1;
|
|
53093
53052
|
var tmp1_flag = true;
|
|
53094
53053
|
var tmp2_index = 0;
|
|
53095
53054
|
var tmp3_bitMask0 = 0;
|
|
@@ -53172,22 +53131,22 @@ function requireClientsdkClientcore () {
|
|
|
53172
53131
|
tmp13_input.gj(tmp0_desc);
|
|
53173
53132
|
return RTCQuality_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, null);
|
|
53174
53133
|
};
|
|
53175
|
-
$serializer_153.prototype.
|
|
53176
|
-
var tmp0_desc = this.
|
|
53134
|
+
$serializer_153.prototype.r2t = function (encoder, value) {
|
|
53135
|
+
var tmp0_desc = this.q2t_1;
|
|
53177
53136
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
53178
|
-
tmp1_output.pk(tmp0_desc, 0, value.
|
|
53179
|
-
tmp1_output.pk(tmp0_desc, 1, value.
|
|
53180
|
-
tmp1_output.pk(tmp0_desc, 2, value.
|
|
53181
|
-
tmp1_output.pk(tmp0_desc, 3, value.
|
|
53182
|
-
tmp1_output.pk(tmp0_desc, 4, value.
|
|
53183
|
-
tmp1_output.pk(tmp0_desc, 5, value.
|
|
53184
|
-
tmp1_output.nk(tmp0_desc, 6, value.
|
|
53185
|
-
tmp1_output.nk(tmp0_desc, 7, value.
|
|
53186
|
-
tmp1_output.pk(tmp0_desc, 8, value.
|
|
53137
|
+
tmp1_output.pk(tmp0_desc, 0, value.s2t_1);
|
|
53138
|
+
tmp1_output.pk(tmp0_desc, 1, value.t2t_1);
|
|
53139
|
+
tmp1_output.pk(tmp0_desc, 2, value.u2t_1);
|
|
53140
|
+
tmp1_output.pk(tmp0_desc, 3, value.v2t_1);
|
|
53141
|
+
tmp1_output.pk(tmp0_desc, 4, value.w2t_1);
|
|
53142
|
+
tmp1_output.pk(tmp0_desc, 5, value.x2t_1);
|
|
53143
|
+
tmp1_output.nk(tmp0_desc, 6, value.y2t_1);
|
|
53144
|
+
tmp1_output.nk(tmp0_desc, 7, value.z2t_1);
|
|
53145
|
+
tmp1_output.pk(tmp0_desc, 8, value.a2u_1);
|
|
53187
53146
|
tmp1_output.gj(tmp0_desc);
|
|
53188
53147
|
};
|
|
53189
53148
|
$serializer_153.prototype.zf = function (encoder, value) {
|
|
53190
|
-
return this.
|
|
53149
|
+
return this.r2t(encoder, value instanceof RTCQuality ? value : THROW_CCE());
|
|
53191
53150
|
};
|
|
53192
53151
|
$serializer_153.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53193
53152
|
var $serializer_instance_153;
|
|
@@ -53198,17 +53157,17 @@ function requireClientsdkClientcore () {
|
|
|
53198
53157
|
}
|
|
53199
53158
|
function RTCQuality_init_$Init$(seen1, mos_score, quality_percentage, jitter_min_var, jitter_max_var, jitter_loss_rate, jitter_burst_rate, flaw_total, packet_cnt, packet_loss_perc, serializationConstructorMarker, $this) {
|
|
53200
53159
|
if (!(511 === (511 & seen1))) {
|
|
53201
|
-
throwMissingFieldException(seen1, 511, $serializer_getInstance_153().
|
|
53202
|
-
}
|
|
53203
|
-
$this.
|
|
53204
|
-
$this.
|
|
53205
|
-
$this.
|
|
53206
|
-
$this.
|
|
53207
|
-
$this.
|
|
53208
|
-
$this.
|
|
53209
|
-
$this.
|
|
53210
|
-
$this.
|
|
53211
|
-
$this.
|
|
53160
|
+
throwMissingFieldException(seen1, 511, $serializer_getInstance_153().q2t_1);
|
|
53161
|
+
}
|
|
53162
|
+
$this.s2t_1 = mos_score;
|
|
53163
|
+
$this.t2t_1 = quality_percentage;
|
|
53164
|
+
$this.u2t_1 = jitter_min_var;
|
|
53165
|
+
$this.v2t_1 = jitter_max_var;
|
|
53166
|
+
$this.w2t_1 = jitter_loss_rate;
|
|
53167
|
+
$this.x2t_1 = jitter_burst_rate;
|
|
53168
|
+
$this.y2t_1 = flaw_total;
|
|
53169
|
+
$this.z2t_1 = packet_cnt;
|
|
53170
|
+
$this.a2u_1 = packet_loss_perc;
|
|
53212
53171
|
return $this;
|
|
53213
53172
|
}
|
|
53214
53173
|
function RTCQuality_init_$Create$(seen1, mos_score, quality_percentage, jitter_min_var, jitter_max_var, jitter_loss_rate, jitter_burst_rate, flaw_total, packet_cnt, packet_loss_perc, serializationConstructorMarker) {
|
|
@@ -53217,18 +53176,18 @@ function requireClientsdkClientcore () {
|
|
|
53217
53176
|
function RTCQuality() {
|
|
53218
53177
|
}
|
|
53219
53178
|
RTCQuality.prototype.toString = function () {
|
|
53220
|
-
return 'RTCQuality(mos_score=' + this.
|
|
53179
|
+
return 'RTCQuality(mos_score=' + this.s2t_1 + ', quality_percentage=' + this.t2t_1 + ', jitter_min_var=' + this.u2t_1 + ', jitter_max_var=' + this.v2t_1 + ', jitter_loss_rate=' + this.w2t_1 + ', jitter_burst_rate=' + this.x2t_1 + ', flaw_total=' + this.y2t_1 + ', packet_cnt=' + this.z2t_1 + ', packet_loss_perc=' + this.a2u_1 + ')';
|
|
53221
53180
|
};
|
|
53222
53181
|
RTCQuality.prototype.hashCode = function () {
|
|
53223
|
-
var result = getNumberHashCode(this.
|
|
53224
|
-
result = imul(result, 31) + getNumberHashCode(this.q2t_1) | 0;
|
|
53225
|
-
result = imul(result, 31) + getNumberHashCode(this.r2t_1) | 0;
|
|
53226
|
-
result = imul(result, 31) + getNumberHashCode(this.s2t_1) | 0;
|
|
53182
|
+
var result = getNumberHashCode(this.s2t_1);
|
|
53227
53183
|
result = imul(result, 31) + getNumberHashCode(this.t2t_1) | 0;
|
|
53228
53184
|
result = imul(result, 31) + getNumberHashCode(this.u2t_1) | 0;
|
|
53229
|
-
result = imul(result, 31) + this.v2t_1 | 0;
|
|
53230
|
-
result = imul(result, 31) + this.w2t_1 | 0;
|
|
53185
|
+
result = imul(result, 31) + getNumberHashCode(this.v2t_1) | 0;
|
|
53186
|
+
result = imul(result, 31) + getNumberHashCode(this.w2t_1) | 0;
|
|
53231
53187
|
result = imul(result, 31) + getNumberHashCode(this.x2t_1) | 0;
|
|
53188
|
+
result = imul(result, 31) + this.y2t_1 | 0;
|
|
53189
|
+
result = imul(result, 31) + this.z2t_1 | 0;
|
|
53190
|
+
result = imul(result, 31) + getNumberHashCode(this.a2u_1) | 0;
|
|
53232
53191
|
return result;
|
|
53233
53192
|
};
|
|
53234
53193
|
RTCQuality.prototype.equals = function (other) {
|
|
@@ -53237,39 +53196,134 @@ function requireClientsdkClientcore () {
|
|
|
53237
53196
|
if (!(other instanceof RTCQuality))
|
|
53238
53197
|
return false;
|
|
53239
53198
|
var tmp0_other_with_cast = other instanceof RTCQuality ? other : THROW_CCE();
|
|
53240
|
-
if (!equals(this.p2t_1, tmp0_other_with_cast.p2t_1))
|
|
53241
|
-
return false;
|
|
53242
|
-
if (!equals(this.q2t_1, tmp0_other_with_cast.q2t_1))
|
|
53243
|
-
return false;
|
|
53244
|
-
if (!equals(this.r2t_1, tmp0_other_with_cast.r2t_1))
|
|
53245
|
-
return false;
|
|
53246
53199
|
if (!equals(this.s2t_1, tmp0_other_with_cast.s2t_1))
|
|
53247
53200
|
return false;
|
|
53248
53201
|
if (!equals(this.t2t_1, tmp0_other_with_cast.t2t_1))
|
|
53249
53202
|
return false;
|
|
53250
53203
|
if (!equals(this.u2t_1, tmp0_other_with_cast.u2t_1))
|
|
53251
53204
|
return false;
|
|
53252
|
-
if (!(this.v2t_1
|
|
53205
|
+
if (!equals(this.v2t_1, tmp0_other_with_cast.v2t_1))
|
|
53253
53206
|
return false;
|
|
53254
|
-
if (!(this.w2t_1
|
|
53207
|
+
if (!equals(this.w2t_1, tmp0_other_with_cast.w2t_1))
|
|
53255
53208
|
return false;
|
|
53256
53209
|
if (!equals(this.x2t_1, tmp0_other_with_cast.x2t_1))
|
|
53257
53210
|
return false;
|
|
53211
|
+
if (!(this.y2t_1 === tmp0_other_with_cast.y2t_1))
|
|
53212
|
+
return false;
|
|
53213
|
+
if (!(this.z2t_1 === tmp0_other_with_cast.z2t_1))
|
|
53214
|
+
return false;
|
|
53215
|
+
if (!equals(this.a2u_1, tmp0_other_with_cast.a2u_1))
|
|
53216
|
+
return false;
|
|
53258
53217
|
return true;
|
|
53259
53218
|
};
|
|
53260
53219
|
RTCQuality.$metadata$ = classMeta('RTCQuality', undefined, undefined, {0: $serializer_getInstance_153});
|
|
53220
|
+
function CallCompleteReason$Companion$$cachedSerializer$delegate$_anonymous__gwqa6d() {
|
|
53221
|
+
return $serializer_getInstance_154();
|
|
53222
|
+
}
|
|
53223
|
+
var CallCompleteReason_LocalHangup_instance;
|
|
53224
|
+
var CallCompleteReason_LocalCancel_instance;
|
|
53225
|
+
var CallCompleteReason_RemoteHangup_instance;
|
|
53226
|
+
var CallCompleteReason_MaxLength_instance;
|
|
53227
|
+
var CallCompleteReason_RingTimeout_instance;
|
|
53228
|
+
var CallCompleteReason_Failed_instance;
|
|
53229
|
+
var CallCompleteReason_Unknown_instance;
|
|
53230
|
+
function Companion_115() {
|
|
53231
|
+
Companion_instance_115 = this;
|
|
53232
|
+
var tmp = this;
|
|
53233
|
+
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
53234
|
+
tmp.b2u_1 = lazy(tmp_0, CallCompleteReason$Companion$$cachedSerializer$delegate$_anonymous__gwqa6d);
|
|
53235
|
+
}
|
|
53236
|
+
Companion_115.prototype.v10 = function () {
|
|
53237
|
+
return this.b2u_1.s1();
|
|
53238
|
+
};
|
|
53239
|
+
Companion_115.prototype.nr = function (typeParamsSerializers) {
|
|
53240
|
+
return this.v10();
|
|
53241
|
+
};
|
|
53242
|
+
Companion_115.$metadata$ = objectMeta('Companion', [SerializerFactory]);
|
|
53243
|
+
var Companion_instance_115;
|
|
53244
|
+
function Companion_getInstance_116() {
|
|
53245
|
+
CallCompleteReason_initEntries();
|
|
53246
|
+
if (Companion_instance_115 == null)
|
|
53247
|
+
new Companion_115();
|
|
53248
|
+
return Companion_instance_115;
|
|
53249
|
+
}
|
|
53261
53250
|
function $serializer_154() {
|
|
53262
53251
|
$serializer_instance_154 = this;
|
|
53252
|
+
var tmp0_serialDesc = new EnumDescriptor('com.vonage.clientcore.core.conversation.CallCompleteReason', 7);
|
|
53253
|
+
tmp0_serialDesc.eq('LocalHangup', false);
|
|
53254
|
+
tmp0_serialDesc.eq('LocalCancel', false);
|
|
53255
|
+
tmp0_serialDesc.eq('RemoteHangup', false);
|
|
53256
|
+
tmp0_serialDesc.eq('MaxLength', false);
|
|
53257
|
+
tmp0_serialDesc.eq('RingTimeout', false);
|
|
53258
|
+
tmp0_serialDesc.eq('Failed', false);
|
|
53259
|
+
tmp0_serialDesc.eq('Unknown', false);
|
|
53260
|
+
this.c2u_1 = tmp0_serialDesc;
|
|
53261
|
+
}
|
|
53262
|
+
$serializer_154.prototype.yf = function () {
|
|
53263
|
+
return this.c2u_1;
|
|
53264
|
+
};
|
|
53265
|
+
$serializer_154.prototype.tq = function () {
|
|
53266
|
+
var tmp$ret$2;
|
|
53267
|
+
// Inline function 'kotlin.arrayOf' call
|
|
53268
|
+
var tmp$ret$1;
|
|
53269
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
53270
|
+
var tmp$ret$0;
|
|
53271
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
53272
|
+
tmp$ret$0 = [];
|
|
53273
|
+
tmp$ret$1 = tmp$ret$0;
|
|
53274
|
+
tmp$ret$2 = tmp$ret$1;
|
|
53275
|
+
return tmp$ret$2;
|
|
53276
|
+
};
|
|
53277
|
+
$serializer_154.prototype.ag = function (decoder) {
|
|
53278
|
+
return values_4()[decoder.bj(this.c2u_1)];
|
|
53279
|
+
};
|
|
53280
|
+
$serializer_154.prototype.d2u = function (encoder, value) {
|
|
53281
|
+
encoder.ik(this.c2u_1, value.e4_1);
|
|
53282
|
+
};
|
|
53283
|
+
$serializer_154.prototype.zf = function (encoder, value) {
|
|
53284
|
+
return this.d2u(encoder, value instanceof CallCompleteReason ? value : THROW_CCE());
|
|
53285
|
+
};
|
|
53286
|
+
$serializer_154.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53287
|
+
var $serializer_instance_154;
|
|
53288
|
+
function $serializer_getInstance_154() {
|
|
53289
|
+
CallCompleteReason_initEntries();
|
|
53290
|
+
if ($serializer_instance_154 == null)
|
|
53291
|
+
new $serializer_154();
|
|
53292
|
+
return $serializer_instance_154;
|
|
53293
|
+
}
|
|
53294
|
+
function values_4() {
|
|
53295
|
+
return [CallCompleteReason_LocalHangup_getInstance(), CallCompleteReason_LocalCancel_getInstance(), CallCompleteReason_RemoteHangup_getInstance(), CallCompleteReason_MaxLength_getInstance(), CallCompleteReason_RingTimeout_getInstance(), CallCompleteReason_Failed_getInstance(), CallCompleteReason_Unknown_getInstance()];
|
|
53296
|
+
}
|
|
53297
|
+
var CallCompleteReason_entriesInitialized;
|
|
53298
|
+
function CallCompleteReason_initEntries() {
|
|
53299
|
+
if (CallCompleteReason_entriesInitialized)
|
|
53300
|
+
return Unit_getInstance();
|
|
53301
|
+
CallCompleteReason_entriesInitialized = true;
|
|
53302
|
+
CallCompleteReason_LocalHangup_instance = new CallCompleteReason('LocalHangup', 0);
|
|
53303
|
+
CallCompleteReason_LocalCancel_instance = new CallCompleteReason('LocalCancel', 1);
|
|
53304
|
+
CallCompleteReason_RemoteHangup_instance = new CallCompleteReason('RemoteHangup', 2);
|
|
53305
|
+
CallCompleteReason_MaxLength_instance = new CallCompleteReason('MaxLength', 3);
|
|
53306
|
+
CallCompleteReason_RingTimeout_instance = new CallCompleteReason('RingTimeout', 4);
|
|
53307
|
+
CallCompleteReason_Failed_instance = new CallCompleteReason('Failed', 5);
|
|
53308
|
+
CallCompleteReason_Unknown_instance = new CallCompleteReason('Unknown', 6);
|
|
53309
|
+
Companion_getInstance_116();
|
|
53310
|
+
}
|
|
53311
|
+
function CallCompleteReason(name, ordinal) {
|
|
53312
|
+
Enum.call(this, name, ordinal);
|
|
53313
|
+
}
|
|
53314
|
+
CallCompleteReason.$metadata$ = classMeta('CallCompleteReason', undefined, undefined, {0: $serializer_getInstance_154}, undefined, Enum.prototype);
|
|
53315
|
+
function $serializer_155() {
|
|
53316
|
+
$serializer_instance_155 = this;
|
|
53263
53317
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.RTCHangupReason', this, 3);
|
|
53264
53318
|
tmp0_serialDesc.eq('text', false);
|
|
53265
53319
|
tmp0_serialDesc.eq('code', false);
|
|
53266
53320
|
tmp0_serialDesc.eq('sip_code', false);
|
|
53267
|
-
this.
|
|
53321
|
+
this.e2u_1 = tmp0_serialDesc;
|
|
53268
53322
|
}
|
|
53269
|
-
$
|
|
53270
|
-
return this.
|
|
53323
|
+
$serializer_155.prototype.yf = function () {
|
|
53324
|
+
return this.e2u_1;
|
|
53271
53325
|
};
|
|
53272
|
-
$
|
|
53326
|
+
$serializer_155.prototype.tq = function () {
|
|
53273
53327
|
var tmp$ret$2;
|
|
53274
53328
|
// Inline function 'kotlin.arrayOf' call
|
|
53275
53329
|
var tmp0_arrayOf = [StringSerializer_getInstance(), CallCompleteReasonSerialiser_getInstance(), IntSerializer_getInstance()];
|
|
@@ -53282,8 +53336,8 @@ function requireClientsdkClientcore () {
|
|
|
53282
53336
|
tmp$ret$2 = tmp$ret$1;
|
|
53283
53337
|
return tmp$ret$2;
|
|
53284
53338
|
};
|
|
53285
|
-
$
|
|
53286
|
-
var tmp0_desc = this.
|
|
53339
|
+
$serializer_155.prototype.ag = function (decoder) {
|
|
53340
|
+
var tmp0_desc = this.e2u_1;
|
|
53287
53341
|
var tmp1_flag = true;
|
|
53288
53342
|
var tmp2_index = 0;
|
|
53289
53343
|
var tmp3_bitMask0 = 0;
|
|
@@ -53324,31 +53378,31 @@ function requireClientsdkClientcore () {
|
|
|
53324
53378
|
tmp7_input.gj(tmp0_desc);
|
|
53325
53379
|
return RTCHangupReason_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
53326
53380
|
};
|
|
53327
|
-
$
|
|
53328
|
-
var tmp0_desc = this.
|
|
53381
|
+
$serializer_155.prototype.f2u = function (encoder, value) {
|
|
53382
|
+
var tmp0_desc = this.e2u_1;
|
|
53329
53383
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
53330
|
-
tmp1_output.sk(tmp0_desc, 0, value.
|
|
53331
|
-
tmp1_output.tk(tmp0_desc, 1, CallCompleteReasonSerialiser_getInstance(), value.
|
|
53332
|
-
tmp1_output.nk(tmp0_desc, 2, value.
|
|
53384
|
+
tmp1_output.sk(tmp0_desc, 0, value.z2p_1);
|
|
53385
|
+
tmp1_output.tk(tmp0_desc, 1, CallCompleteReasonSerialiser_getInstance(), value.a2q_1);
|
|
53386
|
+
tmp1_output.nk(tmp0_desc, 2, value.b2q_1);
|
|
53333
53387
|
tmp1_output.gj(tmp0_desc);
|
|
53334
53388
|
};
|
|
53335
|
-
$
|
|
53336
|
-
return this.
|
|
53389
|
+
$serializer_155.prototype.zf = function (encoder, value) {
|
|
53390
|
+
return this.f2u(encoder, value instanceof RTCHangupReason ? value : THROW_CCE());
|
|
53337
53391
|
};
|
|
53338
|
-
$
|
|
53339
|
-
var $
|
|
53340
|
-
function $
|
|
53341
|
-
if ($
|
|
53342
|
-
new $
|
|
53343
|
-
return $
|
|
53392
|
+
$serializer_155.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53393
|
+
var $serializer_instance_155;
|
|
53394
|
+
function $serializer_getInstance_155() {
|
|
53395
|
+
if ($serializer_instance_155 == null)
|
|
53396
|
+
new $serializer_155();
|
|
53397
|
+
return $serializer_instance_155;
|
|
53344
53398
|
}
|
|
53345
53399
|
function RTCHangupReason_init_$Init$(seen1, text, code, sip_code, serializationConstructorMarker, $this) {
|
|
53346
53400
|
if (!(7 === (7 & seen1))) {
|
|
53347
|
-
throwMissingFieldException(seen1, 7, $
|
|
53401
|
+
throwMissingFieldException(seen1, 7, $serializer_getInstance_155().e2u_1);
|
|
53348
53402
|
}
|
|
53349
|
-
$this.
|
|
53350
|
-
$this.
|
|
53351
|
-
$this.
|
|
53403
|
+
$this.z2p_1 = text;
|
|
53404
|
+
$this.a2q_1 = code;
|
|
53405
|
+
$this.b2q_1 = sip_code;
|
|
53352
53406
|
return $this;
|
|
53353
53407
|
}
|
|
53354
53408
|
function RTCHangupReason_init_$Create$(seen1, text, code, sip_code, serializationConstructorMarker) {
|
|
@@ -53357,12 +53411,12 @@ function requireClientsdkClientcore () {
|
|
|
53357
53411
|
function RTCHangupReason() {
|
|
53358
53412
|
}
|
|
53359
53413
|
RTCHangupReason.prototype.toString = function () {
|
|
53360
|
-
return 'RTCHangupReason(text=' + this.
|
|
53414
|
+
return 'RTCHangupReason(text=' + this.z2p_1 + ', code=' + this.a2q_1 + ', sip_code=' + this.b2q_1 + ')';
|
|
53361
53415
|
};
|
|
53362
53416
|
RTCHangupReason.prototype.hashCode = function () {
|
|
53363
|
-
var result = getStringHashCode(this.
|
|
53364
|
-
result = imul(result, 31) + this.
|
|
53365
|
-
result = imul(result, 31) + this.
|
|
53417
|
+
var result = getStringHashCode(this.z2p_1);
|
|
53418
|
+
result = imul(result, 31) + this.a2q_1.hashCode() | 0;
|
|
53419
|
+
result = imul(result, 31) + this.b2q_1 | 0;
|
|
53366
53420
|
return result;
|
|
53367
53421
|
};
|
|
53368
53422
|
RTCHangupReason.prototype.equals = function (other) {
|
|
@@ -53371,26 +53425,70 @@ function requireClientsdkClientcore () {
|
|
|
53371
53425
|
if (!(other instanceof RTCHangupReason))
|
|
53372
53426
|
return false;
|
|
53373
53427
|
var tmp0_other_with_cast = other instanceof RTCHangupReason ? other : THROW_CCE();
|
|
53374
|
-
if (!(this.
|
|
53428
|
+
if (!(this.z2p_1 === tmp0_other_with_cast.z2p_1))
|
|
53375
53429
|
return false;
|
|
53376
|
-
if (!this.
|
|
53430
|
+
if (!this.a2q_1.equals(tmp0_other_with_cast.a2q_1))
|
|
53377
53431
|
return false;
|
|
53378
|
-
if (!(this.
|
|
53432
|
+
if (!(this.b2q_1 === tmp0_other_with_cast.b2q_1))
|
|
53379
53433
|
return false;
|
|
53380
53434
|
return true;
|
|
53381
53435
|
};
|
|
53382
|
-
RTCHangupReason.$metadata$ = classMeta('RTCHangupReason', undefined, undefined, {0: $
|
|
53383
|
-
function
|
|
53384
|
-
|
|
53436
|
+
RTCHangupReason.$metadata$ = classMeta('RTCHangupReason', undefined, undefined, {0: $serializer_getInstance_155});
|
|
53437
|
+
function CallCompleteReasonSerialiser() {
|
|
53438
|
+
CallCompleteReasonSerialiser_instance = this;
|
|
53439
|
+
this.g2u_1 = PrimitiveSerialDescriptor('RTCHangupReason.code', STRING_getInstance());
|
|
53440
|
+
}
|
|
53441
|
+
CallCompleteReasonSerialiser.prototype.yf = function () {
|
|
53442
|
+
return this.g2u_1;
|
|
53443
|
+
};
|
|
53444
|
+
CallCompleteReasonSerialiser.prototype.ag = function (decoder) {
|
|
53445
|
+
var tmp0_subject = decoder.aj();
|
|
53446
|
+
switch (tmp0_subject) {
|
|
53447
|
+
case 'LOCAL_HANGUP':
|
|
53448
|
+
return CallCompleteReason_LocalHangup_getInstance();
|
|
53449
|
+
case 'REMOTE_HANGUP':
|
|
53450
|
+
return CallCompleteReason_RemoteHangup_getInstance();
|
|
53451
|
+
case 'LOCAL_CANCEL':
|
|
53452
|
+
return CallCompleteReason_LocalCancel_getInstance();
|
|
53453
|
+
case 'LENGTH_TIMER':
|
|
53454
|
+
return CallCompleteReason_MaxLength_getInstance();
|
|
53455
|
+
case 'RING_TIMER':
|
|
53456
|
+
return CallCompleteReason_RingTimeout_getInstance();
|
|
53457
|
+
case 'REMOTE_NO_ANSWER':
|
|
53458
|
+
case 'REMOTE_REJECTED':
|
|
53459
|
+
case 'REMOTE_BUSY':
|
|
53460
|
+
case 'REMOTE_CANCEL':
|
|
53461
|
+
case 'REMOTE_NOT_FOUND':
|
|
53462
|
+
case 'REMOTE_FAILURE':
|
|
53463
|
+
return CallCompleteReason_RemoteHangup_getInstance();
|
|
53464
|
+
default:
|
|
53465
|
+
return CallCompleteReason_Unknown_getInstance();
|
|
53466
|
+
}
|
|
53467
|
+
};
|
|
53468
|
+
CallCompleteReasonSerialiser.prototype.d2u = function (encoder, value) {
|
|
53469
|
+
encoder.hk(value.d4_1);
|
|
53470
|
+
};
|
|
53471
|
+
CallCompleteReasonSerialiser.prototype.zf = function (encoder, value) {
|
|
53472
|
+
return this.d2u(encoder, value instanceof CallCompleteReason ? value : THROW_CCE());
|
|
53473
|
+
};
|
|
53474
|
+
CallCompleteReasonSerialiser.$metadata$ = objectMeta('CallCompleteReasonSerialiser', [KSerializer]);
|
|
53475
|
+
var CallCompleteReasonSerialiser_instance;
|
|
53476
|
+
function CallCompleteReasonSerialiser_getInstance() {
|
|
53477
|
+
if (CallCompleteReasonSerialiser_instance == null)
|
|
53478
|
+
new CallCompleteReasonSerialiser();
|
|
53479
|
+
return CallCompleteReasonSerialiser_instance;
|
|
53480
|
+
}
|
|
53481
|
+
function $serializer_156() {
|
|
53482
|
+
$serializer_instance_156 = this;
|
|
53385
53483
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.RTCBandwidth', this, 2);
|
|
53386
53484
|
tmp0_serialDesc.eq('bytes_in', false);
|
|
53387
53485
|
tmp0_serialDesc.eq('bytes_out', false);
|
|
53388
|
-
this.
|
|
53486
|
+
this.h2u_1 = tmp0_serialDesc;
|
|
53389
53487
|
}
|
|
53390
|
-
$
|
|
53391
|
-
return this.
|
|
53488
|
+
$serializer_156.prototype.yf = function () {
|
|
53489
|
+
return this.h2u_1;
|
|
53392
53490
|
};
|
|
53393
|
-
$
|
|
53491
|
+
$serializer_156.prototype.tq = function () {
|
|
53394
53492
|
var tmp$ret$2;
|
|
53395
53493
|
// Inline function 'kotlin.arrayOf' call
|
|
53396
53494
|
var tmp0_arrayOf = [IntSerializer_getInstance(), IntSerializer_getInstance()];
|
|
@@ -53403,8 +53501,8 @@ function requireClientsdkClientcore () {
|
|
|
53403
53501
|
tmp$ret$2 = tmp$ret$1;
|
|
53404
53502
|
return tmp$ret$2;
|
|
53405
53503
|
};
|
|
53406
|
-
$
|
|
53407
|
-
var tmp0_desc = this.
|
|
53504
|
+
$serializer_156.prototype.ag = function (decoder) {
|
|
53505
|
+
var tmp0_desc = this.h2u_1;
|
|
53408
53506
|
var tmp1_flag = true;
|
|
53409
53507
|
var tmp2_index = 0;
|
|
53410
53508
|
var tmp3_bitMask0 = 0;
|
|
@@ -53438,29 +53536,29 @@ function requireClientsdkClientcore () {
|
|
|
53438
53536
|
tmp6_input.gj(tmp0_desc);
|
|
53439
53537
|
return RTCBandwidth_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
53440
53538
|
};
|
|
53441
|
-
$
|
|
53442
|
-
var tmp0_desc = this.
|
|
53539
|
+
$serializer_156.prototype.i2u = function (encoder, value) {
|
|
53540
|
+
var tmp0_desc = this.h2u_1;
|
|
53443
53541
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
53444
|
-
tmp1_output.nk(tmp0_desc, 0, value.
|
|
53445
|
-
tmp1_output.nk(tmp0_desc, 1, value.
|
|
53542
|
+
tmp1_output.nk(tmp0_desc, 0, value.j2u_1);
|
|
53543
|
+
tmp1_output.nk(tmp0_desc, 1, value.k2u_1);
|
|
53446
53544
|
tmp1_output.gj(tmp0_desc);
|
|
53447
53545
|
};
|
|
53448
|
-
$
|
|
53449
|
-
return this.
|
|
53546
|
+
$serializer_156.prototype.zf = function (encoder, value) {
|
|
53547
|
+
return this.i2u(encoder, value instanceof RTCBandwidth ? value : THROW_CCE());
|
|
53450
53548
|
};
|
|
53451
|
-
$
|
|
53452
|
-
var $
|
|
53453
|
-
function $
|
|
53454
|
-
if ($
|
|
53455
|
-
new $
|
|
53456
|
-
return $
|
|
53549
|
+
$serializer_156.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53550
|
+
var $serializer_instance_156;
|
|
53551
|
+
function $serializer_getInstance_156() {
|
|
53552
|
+
if ($serializer_instance_156 == null)
|
|
53553
|
+
new $serializer_156();
|
|
53554
|
+
return $serializer_instance_156;
|
|
53457
53555
|
}
|
|
53458
53556
|
function RTCBandwidth_init_$Init$(seen1, bytes_in, bytes_out, serializationConstructorMarker, $this) {
|
|
53459
53557
|
if (!(3 === (3 & seen1))) {
|
|
53460
|
-
throwMissingFieldException(seen1, 3, $
|
|
53558
|
+
throwMissingFieldException(seen1, 3, $serializer_getInstance_156().h2u_1);
|
|
53461
53559
|
}
|
|
53462
|
-
$this.
|
|
53463
|
-
$this.
|
|
53560
|
+
$this.j2u_1 = bytes_in;
|
|
53561
|
+
$this.k2u_1 = bytes_out;
|
|
53464
53562
|
return $this;
|
|
53465
53563
|
}
|
|
53466
53564
|
function RTCBandwidth_init_$Create$(seen1, bytes_in, bytes_out, serializationConstructorMarker) {
|
|
@@ -53469,11 +53567,11 @@ function requireClientsdkClientcore () {
|
|
|
53469
53567
|
function RTCBandwidth() {
|
|
53470
53568
|
}
|
|
53471
53569
|
RTCBandwidth.prototype.toString = function () {
|
|
53472
|
-
return 'RTCBandwidth(bytes_in=' + this.
|
|
53570
|
+
return 'RTCBandwidth(bytes_in=' + this.j2u_1 + ', bytes_out=' + this.k2u_1 + ')';
|
|
53473
53571
|
};
|
|
53474
53572
|
RTCBandwidth.prototype.hashCode = function () {
|
|
53475
|
-
var result = this.
|
|
53476
|
-
result = imul(result, 31) + this.
|
|
53573
|
+
var result = this.j2u_1;
|
|
53574
|
+
result = imul(result, 31) + this.k2u_1 | 0;
|
|
53477
53575
|
return result;
|
|
53478
53576
|
};
|
|
53479
53577
|
RTCBandwidth.prototype.equals = function (other) {
|
|
@@ -53482,152 +53580,13 @@ function requireClientsdkClientcore () {
|
|
|
53482
53580
|
if (!(other instanceof RTCBandwidth))
|
|
53483
53581
|
return false;
|
|
53484
53582
|
var tmp0_other_with_cast = other instanceof RTCBandwidth ? other : THROW_CCE();
|
|
53485
|
-
if (!(this.
|
|
53583
|
+
if (!(this.j2u_1 === tmp0_other_with_cast.j2u_1))
|
|
53486
53584
|
return false;
|
|
53487
|
-
if (!(this.
|
|
53585
|
+
if (!(this.k2u_1 === tmp0_other_with_cast.k2u_1))
|
|
53488
53586
|
return false;
|
|
53489
53587
|
return true;
|
|
53490
53588
|
};
|
|
53491
|
-
RTCBandwidth.$metadata$ = classMeta('RTCBandwidth', undefined, undefined, {0: $
|
|
53492
|
-
function CallCompleteReason$Companion$$cachedSerializer$delegate$_anonymous__gwqa6d() {
|
|
53493
|
-
return $serializer_getInstance_156();
|
|
53494
|
-
}
|
|
53495
|
-
var CallCompleteReason_LocalHangup_instance;
|
|
53496
|
-
var CallCompleteReason_LocalCancel_instance;
|
|
53497
|
-
var CallCompleteReason_RemoteHangup_instance;
|
|
53498
|
-
var CallCompleteReason_MaxLength_instance;
|
|
53499
|
-
var CallCompleteReason_RingTimeout_instance;
|
|
53500
|
-
var CallCompleteReason_Failed_instance;
|
|
53501
|
-
var CallCompleteReason_Unknown_instance;
|
|
53502
|
-
function Companion_115() {
|
|
53503
|
-
Companion_instance_115 = this;
|
|
53504
|
-
var tmp = this;
|
|
53505
|
-
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
53506
|
-
tmp.h2u_1 = lazy(tmp_0, CallCompleteReason$Companion$$cachedSerializer$delegate$_anonymous__gwqa6d);
|
|
53507
|
-
}
|
|
53508
|
-
Companion_115.prototype.v10 = function () {
|
|
53509
|
-
return this.h2u_1.s1();
|
|
53510
|
-
};
|
|
53511
|
-
Companion_115.prototype.nr = function (typeParamsSerializers) {
|
|
53512
|
-
return this.v10();
|
|
53513
|
-
};
|
|
53514
|
-
Companion_115.$metadata$ = objectMeta('Companion', [SerializerFactory]);
|
|
53515
|
-
var Companion_instance_115;
|
|
53516
|
-
function Companion_getInstance_116() {
|
|
53517
|
-
CallCompleteReason_initEntries();
|
|
53518
|
-
if (Companion_instance_115 == null)
|
|
53519
|
-
new Companion_115();
|
|
53520
|
-
return Companion_instance_115;
|
|
53521
|
-
}
|
|
53522
|
-
function $serializer_156() {
|
|
53523
|
-
$serializer_instance_156 = this;
|
|
53524
|
-
var tmp0_serialDesc = new EnumDescriptor('com.vonage.clientcore.core.conversation.CallCompleteReason', 7);
|
|
53525
|
-
tmp0_serialDesc.eq('LocalHangup', false);
|
|
53526
|
-
tmp0_serialDesc.eq('LocalCancel', false);
|
|
53527
|
-
tmp0_serialDesc.eq('RemoteHangup', false);
|
|
53528
|
-
tmp0_serialDesc.eq('MaxLength', false);
|
|
53529
|
-
tmp0_serialDesc.eq('RingTimeout', false);
|
|
53530
|
-
tmp0_serialDesc.eq('Failed', false);
|
|
53531
|
-
tmp0_serialDesc.eq('Unknown', false);
|
|
53532
|
-
this.i2u_1 = tmp0_serialDesc;
|
|
53533
|
-
}
|
|
53534
|
-
$serializer_156.prototype.yf = function () {
|
|
53535
|
-
return this.i2u_1;
|
|
53536
|
-
};
|
|
53537
|
-
$serializer_156.prototype.tq = function () {
|
|
53538
|
-
var tmp$ret$2;
|
|
53539
|
-
// Inline function 'kotlin.arrayOf' call
|
|
53540
|
-
var tmp$ret$1;
|
|
53541
|
-
// Inline function 'kotlin.js.unsafeCast' call
|
|
53542
|
-
var tmp$ret$0;
|
|
53543
|
-
// Inline function 'kotlin.js.asDynamic' call
|
|
53544
|
-
tmp$ret$0 = [];
|
|
53545
|
-
tmp$ret$1 = tmp$ret$0;
|
|
53546
|
-
tmp$ret$2 = tmp$ret$1;
|
|
53547
|
-
return tmp$ret$2;
|
|
53548
|
-
};
|
|
53549
|
-
$serializer_156.prototype.ag = function (decoder) {
|
|
53550
|
-
return values_4()[decoder.bj(this.i2u_1)];
|
|
53551
|
-
};
|
|
53552
|
-
$serializer_156.prototype.j2u = function (encoder, value) {
|
|
53553
|
-
encoder.ik(this.i2u_1, value.e4_1);
|
|
53554
|
-
};
|
|
53555
|
-
$serializer_156.prototype.zf = function (encoder, value) {
|
|
53556
|
-
return this.j2u(encoder, value instanceof CallCompleteReason ? value : THROW_CCE());
|
|
53557
|
-
};
|
|
53558
|
-
$serializer_156.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53559
|
-
var $serializer_instance_156;
|
|
53560
|
-
function $serializer_getInstance_156() {
|
|
53561
|
-
CallCompleteReason_initEntries();
|
|
53562
|
-
if ($serializer_instance_156 == null)
|
|
53563
|
-
new $serializer_156();
|
|
53564
|
-
return $serializer_instance_156;
|
|
53565
|
-
}
|
|
53566
|
-
function values_4() {
|
|
53567
|
-
return [CallCompleteReason_LocalHangup_getInstance(), CallCompleteReason_LocalCancel_getInstance(), CallCompleteReason_RemoteHangup_getInstance(), CallCompleteReason_MaxLength_getInstance(), CallCompleteReason_RingTimeout_getInstance(), CallCompleteReason_Failed_getInstance(), CallCompleteReason_Unknown_getInstance()];
|
|
53568
|
-
}
|
|
53569
|
-
var CallCompleteReason_entriesInitialized;
|
|
53570
|
-
function CallCompleteReason_initEntries() {
|
|
53571
|
-
if (CallCompleteReason_entriesInitialized)
|
|
53572
|
-
return Unit_getInstance();
|
|
53573
|
-
CallCompleteReason_entriesInitialized = true;
|
|
53574
|
-
CallCompleteReason_LocalHangup_instance = new CallCompleteReason('LocalHangup', 0);
|
|
53575
|
-
CallCompleteReason_LocalCancel_instance = new CallCompleteReason('LocalCancel', 1);
|
|
53576
|
-
CallCompleteReason_RemoteHangup_instance = new CallCompleteReason('RemoteHangup', 2);
|
|
53577
|
-
CallCompleteReason_MaxLength_instance = new CallCompleteReason('MaxLength', 3);
|
|
53578
|
-
CallCompleteReason_RingTimeout_instance = new CallCompleteReason('RingTimeout', 4);
|
|
53579
|
-
CallCompleteReason_Failed_instance = new CallCompleteReason('Failed', 5);
|
|
53580
|
-
CallCompleteReason_Unknown_instance = new CallCompleteReason('Unknown', 6);
|
|
53581
|
-
Companion_getInstance_116();
|
|
53582
|
-
}
|
|
53583
|
-
function CallCompleteReason(name, ordinal) {
|
|
53584
|
-
Enum.call(this, name, ordinal);
|
|
53585
|
-
}
|
|
53586
|
-
CallCompleteReason.$metadata$ = classMeta('CallCompleteReason', undefined, undefined, {0: $serializer_getInstance_156}, undefined, Enum.prototype);
|
|
53587
|
-
function CallCompleteReasonSerialiser() {
|
|
53588
|
-
CallCompleteReasonSerialiser_instance = this;
|
|
53589
|
-
this.k2u_1 = PrimitiveSerialDescriptor('RTCHangupReason.code', STRING_getInstance());
|
|
53590
|
-
}
|
|
53591
|
-
CallCompleteReasonSerialiser.prototype.yf = function () {
|
|
53592
|
-
return this.k2u_1;
|
|
53593
|
-
};
|
|
53594
|
-
CallCompleteReasonSerialiser.prototype.ag = function (decoder) {
|
|
53595
|
-
var tmp0_subject = decoder.aj();
|
|
53596
|
-
switch (tmp0_subject) {
|
|
53597
|
-
case 'LOCAL_HANGUP':
|
|
53598
|
-
return CallCompleteReason_LocalHangup_getInstance();
|
|
53599
|
-
case 'REMOTE_HANGUP':
|
|
53600
|
-
return CallCompleteReason_RemoteHangup_getInstance();
|
|
53601
|
-
case 'LOCAL_CANCEL':
|
|
53602
|
-
return CallCompleteReason_LocalCancel_getInstance();
|
|
53603
|
-
case 'LENGTH_TIMER':
|
|
53604
|
-
return CallCompleteReason_MaxLength_getInstance();
|
|
53605
|
-
case 'RING_TIMER':
|
|
53606
|
-
return CallCompleteReason_RingTimeout_getInstance();
|
|
53607
|
-
case 'REMOTE_NO_ANSWER':
|
|
53608
|
-
case 'REMOTE_REJECTED':
|
|
53609
|
-
case 'REMOTE_BUSY':
|
|
53610
|
-
case 'REMOTE_CANCEL':
|
|
53611
|
-
case 'REMOTE_NOT_FOUND':
|
|
53612
|
-
case 'REMOTE_FAILURE':
|
|
53613
|
-
return CallCompleteReason_RemoteHangup_getInstance();
|
|
53614
|
-
default:
|
|
53615
|
-
return CallCompleteReason_Unknown_getInstance();
|
|
53616
|
-
}
|
|
53617
|
-
};
|
|
53618
|
-
CallCompleteReasonSerialiser.prototype.j2u = function (encoder, value) {
|
|
53619
|
-
encoder.hk(value.d4_1);
|
|
53620
|
-
};
|
|
53621
|
-
CallCompleteReasonSerialiser.prototype.zf = function (encoder, value) {
|
|
53622
|
-
return this.j2u(encoder, value instanceof CallCompleteReason ? value : THROW_CCE());
|
|
53623
|
-
};
|
|
53624
|
-
CallCompleteReasonSerialiser.$metadata$ = objectMeta('CallCompleteReasonSerialiser', [KSerializer]);
|
|
53625
|
-
var CallCompleteReasonSerialiser_instance;
|
|
53626
|
-
function CallCompleteReasonSerialiser_getInstance() {
|
|
53627
|
-
if (CallCompleteReasonSerialiser_instance == null)
|
|
53628
|
-
new CallCompleteReasonSerialiser();
|
|
53629
|
-
return CallCompleteReasonSerialiser_instance;
|
|
53630
|
-
}
|
|
53589
|
+
RTCBandwidth.$metadata$ = classMeta('RTCBandwidth', undefined, undefined, {0: $serializer_getInstance_156});
|
|
53631
53590
|
function CallCompleteReason_LocalHangup_getInstance() {
|
|
53632
53591
|
CallCompleteReason_initEntries();
|
|
53633
53592
|
return CallCompleteReason_LocalHangup_instance;
|
|
@@ -55759,7 +55718,7 @@ function requireClientsdkClientcore () {
|
|
|
55759
55718
|
tmp_0 = $next(action);
|
|
55760
55719
|
} else {
|
|
55761
55720
|
var tmp1_safe_receiver = $store.z2f(getKClass(ConfigReducer));
|
|
55762
|
-
var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.
|
|
55721
|
+
var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.o2q_1;
|
|
55763
55722
|
var host = tmp2_elvis_lhs == null ? '' : tmp2_elvis_lhs;
|
|
55764
55723
|
var tmp3_safe_receiver = $store.z2f(getKClass(SessionReducer));
|
|
55765
55724
|
var auth = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.d2g_1;
|
|
@@ -55772,7 +55731,7 @@ function requireClientsdkClientcore () {
|
|
|
55772
55731
|
tmp_2 = mapOf([to('Authorization', 'bearer ' + auth), to('Content-Type', 'application/json')]);
|
|
55773
55732
|
} else {
|
|
55774
55733
|
var tmp4_safe_receiver = $store.z2f(getKClass(ConfigReducer));
|
|
55775
|
-
var tmp5_elvis_lhs = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.
|
|
55734
|
+
var tmp5_elvis_lhs = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.p2q_1;
|
|
55776
55735
|
host = tmp5_elvis_lhs == null ? '' : tmp5_elvis_lhs;
|
|
55777
55736
|
tmp_2 = mapOf_0(to('Content-Type', 'application/json'));
|
|
55778
55737
|
}
|
|
@@ -56110,16 +56069,16 @@ function requireClientsdkClientcore () {
|
|
|
56110
56069
|
var legId = leg.a1t_1;
|
|
56111
56070
|
var remoteSdp = leg.b1t_1;
|
|
56112
56071
|
$callback(legId);
|
|
56113
|
-
var tmp_0 = new AppChannelEndpoint($action.o1d_1.
|
|
56072
|
+
var tmp_0 = new AppChannelEndpoint($action.o1d_1.v2q_1);
|
|
56114
56073
|
var tmp_1 = CallDirection_outbound_getInstance();
|
|
56115
|
-
$store.b1d(Action_init_$Create$(CallCreate_init_$Create$(legId, tmp_0, tmp_1, $action.o1d_1.
|
|
56074
|
+
$store.b1d(Action_init_$Create$(CallCreate_init_$Create$(legId, tmp_0, tmp_1, $action.o1d_1.w2q_1, null, 16, null)));
|
|
56116
56075
|
$store.b1d(Action_init_$Create$(new MediaOffer(legId, $offer)));
|
|
56117
56076
|
$media.j2v(legId, remoteSdp);
|
|
56118
56077
|
StaticConfig_getInstance();
|
|
56119
56078
|
$media.n2v(1000, legId);
|
|
56120
56079
|
var tmp_2 = new CallMemberMediaTimeout(legId);
|
|
56121
56080
|
StaticConfig_getInstance();
|
|
56122
|
-
$store.b1d(Action_init_$Create$(new TimeoutAction(tmp_2,
|
|
56081
|
+
$store.b1d(Action_init_$Create$(new TimeoutAction(tmp_2, 10000)));
|
|
56123
56082
|
var tmp_3;
|
|
56124
56083
|
if (!($action.p1d_1.n1d_1 == null)) {
|
|
56125
56084
|
$store.b1d(Action_init_$Create$(new CallbackAction(ensureNotNull($action.p1d_1.n1d_1), legId)));
|
|
@@ -56176,11 +56135,11 @@ function requireClientsdkClientcore () {
|
|
|
56176
56135
|
}
|
|
56177
56136
|
tmp = tmp_0;
|
|
56178
56137
|
} else {
|
|
56179
|
-
$store.b1d(Action_init_$Create$(new CallCreate($action.o1d_1.
|
|
56180
|
-
$store.b1d(Action_init_$Create$(new MediaAnswer($action.o1d_1.
|
|
56138
|
+
$store.b1d(Action_init_$Create$(new CallCreate($action.o1d_1.d2r_1, $action.o1d_1.g2r_1, CallDirection_inbound_getInstance(), null, new MemberJoinInfo($action.o1d_1.e2r_1, $action.o1d_1.f2r_1))));
|
|
56139
|
+
$store.b1d(Action_init_$Create$(new MediaAnswer($action.o1d_1.d2r_1, $offer)));
|
|
56181
56140
|
var tmp_1;
|
|
56182
56141
|
if (!($action.p1d_1.n1d_1 == null)) {
|
|
56183
|
-
$store.b1d(Action_init_$Create$(new CallbackAction(ensureNotNull($action.p1d_1.n1d_1), $action.o1d_1.
|
|
56142
|
+
$store.b1d(Action_init_$Create$(new CallbackAction(ensureNotNull($action.p1d_1.n1d_1), $action.o1d_1.d2r_1)));
|
|
56184
56143
|
tmp_1 = Unit_getInstance();
|
|
56185
56144
|
}
|
|
56186
56145
|
tmp = tmp_1;
|
|
@@ -56201,10 +56160,10 @@ function requireClientsdkClientcore () {
|
|
|
56201
56160
|
$store.b1d(Action_init_$Create$(new CallbackAction(ensureNotNull($action.p1d_1.n1d_1), error)));
|
|
56202
56161
|
tmp = Unit_getInstance();
|
|
56203
56162
|
} else {
|
|
56204
|
-
var tmp_1 = new RTCAnswerRequest($action.o1d_1.
|
|
56163
|
+
var tmp_1 = new RTCAnswerRequest($action.o1d_1.e2r_1, $action.o1d_1.f2r_1, $action.o1d_1.d2r_1, answer);
|
|
56205
56164
|
$store.b1d(new Action(tmp_1, ActionMeta_init_$Create$(null, null, mediaActionMiddleware$lambda$lambda$lambda$lambda_0($action, $store, $logger, $offer), 3, null)));
|
|
56206
56165
|
StaticConfig_getInstance();
|
|
56207
|
-
$media.n2v(1000, $action.o1d_1.
|
|
56166
|
+
$media.n2v(1000, $action.o1d_1.d2r_1);
|
|
56208
56167
|
tmp = Unit_getInstance();
|
|
56209
56168
|
}
|
|
56210
56169
|
return Unit_getInstance();
|
|
@@ -56234,11 +56193,11 @@ function requireClientsdkClientcore () {
|
|
|
56234
56193
|
}
|
|
56235
56194
|
tmp = tmp_1;
|
|
56236
56195
|
} else {
|
|
56237
|
-
callback($action.o1d_1.
|
|
56238
|
-
var tmp_3 = new RTCReconnectRequest($action.o1d_1.
|
|
56239
|
-
$store.b1d(new Action(tmp_3, ActionMeta_init_$Create$(null, $action.o1d_1.
|
|
56196
|
+
callback($action.o1d_1.z2q_1);
|
|
56197
|
+
var tmp_3 = new RTCReconnectRequest($action.o1d_1.b2r_1, $action.o1d_1.a2r_1, offer, $action.o1d_1.z2q_1);
|
|
56198
|
+
$store.b1d(new Action(tmp_3, ActionMeta_init_$Create$(null, $action.o1d_1.z2q_1, null, 5, null)));
|
|
56240
56199
|
StaticConfig_getInstance();
|
|
56241
|
-
$media.n2v(1000, $action.o1d_1.
|
|
56200
|
+
$media.n2v(1000, $action.o1d_1.z2q_1);
|
|
56242
56201
|
tmp = Unit_getInstance();
|
|
56243
56202
|
}
|
|
56244
56203
|
return Unit_getInstance();
|
|
@@ -56257,8 +56216,8 @@ function requireClientsdkClientcore () {
|
|
|
56257
56216
|
$media.h2v(mediaActionMiddleware$lambda$lambda$lambda_0(action, $store, $logger, $media));
|
|
56258
56217
|
} else {
|
|
56259
56218
|
if (tmp0_subject instanceof SetupInboundCall) {
|
|
56260
|
-
var offer = action.o1d_1.
|
|
56261
|
-
$media.i2v(mediaActionMiddleware$lambda$lambda$lambda_1($store, action, $media, $logger, offer), offer, action.o1d_1.
|
|
56219
|
+
var offer = action.o1d_1.h2r_1;
|
|
56220
|
+
$media.i2v(mediaActionMiddleware$lambda$lambda$lambda_1($store, action, $media, $logger, offer), offer, action.o1d_1.d2r_1);
|
|
56262
56221
|
} else {
|
|
56263
56222
|
if (tmp0_subject instanceof CallReconnect) {
|
|
56264
56223
|
$media.h2v(mediaActionMiddleware$lambda$lambda$lambda_2(action, $store, $logger, $media));
|
|
@@ -56278,7 +56237,7 @@ function requireClientsdkClientcore () {
|
|
|
56278
56237
|
$media.j2v(action.o1d_1.j24_1.v24_1, action.o1d_1.j24_1.w24_1);
|
|
56279
56238
|
} else {
|
|
56280
56239
|
if (tmp0_subject instanceof CallCleanup) {
|
|
56281
|
-
$media.k2v(action.o1d_1.
|
|
56240
|
+
$media.k2v(action.o1d_1.x2q_1);
|
|
56282
56241
|
} else {
|
|
56283
56242
|
if (tmp0_subject instanceof MediaDisable) {
|
|
56284
56243
|
$media.k2v(action.o1d_1.e29_1);
|
|
@@ -56533,9 +56492,9 @@ function requireClientsdkClientcore () {
|
|
|
56533
56492
|
var tmp_0;
|
|
56534
56493
|
if (a instanceof SocketConnect) {
|
|
56535
56494
|
var tmp0_safe_receiver = state;
|
|
56536
|
-
var host = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
56495
|
+
var host = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.m2q_1;
|
|
56537
56496
|
var tmp1_safe_receiver = state;
|
|
56538
|
-
var path = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.
|
|
56497
|
+
var path = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.n2q_1;
|
|
56539
56498
|
var token = a.q2a_1;
|
|
56540
56499
|
var sessionId = a.r2a_1;
|
|
56541
56500
|
var query = 'session_version=0.0.2&token=' + token;
|
|
@@ -57102,6 +57061,162 @@ function requireClientsdkClientcore () {
|
|
|
57102
57061
|
function WSEndPoints() {
|
|
57103
57062
|
}
|
|
57104
57063
|
WSEndPoints.$metadata$ = classMeta('WSEndPoints');
|
|
57064
|
+
function cleanupReducers(_this__u8e3s4, filteredLegId, filteredConversationId) {
|
|
57065
|
+
var tmp0_safe_receiver = _this__u8e3s4.z2f(getKClass(InviteReducer));
|
|
57066
|
+
if (tmp0_safe_receiver == null)
|
|
57067
|
+
null;
|
|
57068
|
+
else {
|
|
57069
|
+
var tmp$ret$7;
|
|
57070
|
+
// Inline function 'kotlin.run' call
|
|
57071
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57072
|
+
var tmp$ret$5;
|
|
57073
|
+
// Inline function 'kotlin.collections.filter' call
|
|
57074
|
+
var tmp0_filter = tmp0_safe_receiver.d2q_1;
|
|
57075
|
+
var tmp$ret$4;
|
|
57076
|
+
// Inline function 'kotlin.collections.filterTo' call
|
|
57077
|
+
var tmp0_filterTo = LinkedHashMap_init_$Create$();
|
|
57078
|
+
var tmp$ret$0;
|
|
57079
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
57080
|
+
tmp$ret$0 = tmp0_filter.q().g();
|
|
57081
|
+
var tmp0_iterator = tmp$ret$0;
|
|
57082
|
+
while (tmp0_iterator.h()) {
|
|
57083
|
+
var element = tmp0_iterator.i();
|
|
57084
|
+
var tmp$ret$3;
|
|
57085
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57086
|
+
var tmp0_safe_receiver_0 = filteredLegId;
|
|
57087
|
+
var tmp;
|
|
57088
|
+
if (tmp0_safe_receiver_0 == null) {
|
|
57089
|
+
tmp = null;
|
|
57090
|
+
} else {
|
|
57091
|
+
var tmp$ret$2;
|
|
57092
|
+
// Inline function 'kotlin.let' call
|
|
57093
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57094
|
+
var tmp$ret$1;
|
|
57095
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>.<anonymous>' call
|
|
57096
|
+
tmp$ret$1 = !(element.s1().q2p_1 === tmp0_safe_receiver_0) ? element.s1().w2p_1 : false;
|
|
57097
|
+
tmp$ret$2 = tmp$ret$1;
|
|
57098
|
+
tmp = tmp$ret$2;
|
|
57099
|
+
}
|
|
57100
|
+
var tmp1_elvis_lhs = tmp;
|
|
57101
|
+
tmp$ret$3 = tmp1_elvis_lhs == null ? true : tmp1_elvis_lhs;
|
|
57102
|
+
if (tmp$ret$3) {
|
|
57103
|
+
tmp0_filterTo.l(element.q1(), element.s1());
|
|
57104
|
+
}
|
|
57105
|
+
}
|
|
57106
|
+
tmp$ret$4 = tmp0_filterTo;
|
|
57107
|
+
tmp$ret$5 = tmp$ret$4;
|
|
57108
|
+
var tmp1_forEach = tmp$ret$5;
|
|
57109
|
+
var tmp$ret$6;
|
|
57110
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
57111
|
+
tmp$ret$6 = tmp1_forEach.q().g();
|
|
57112
|
+
var tmp0_iterator_0 = tmp$ret$6;
|
|
57113
|
+
while (tmp0_iterator_0.h()) {
|
|
57114
|
+
var element_0 = tmp0_iterator_0.i();
|
|
57115
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57116
|
+
_this__u8e3s4.b1d(Action_init_$Create$(new InviteCleanup(element_0.q1())));
|
|
57117
|
+
}
|
|
57118
|
+
tmp$ret$7 = Unit_getInstance();
|
|
57119
|
+
}
|
|
57120
|
+
var tmp1_safe_receiver = _this__u8e3s4.z2f(getKClass(CallReducer));
|
|
57121
|
+
if (tmp1_safe_receiver == null)
|
|
57122
|
+
null;
|
|
57123
|
+
else {
|
|
57124
|
+
var tmp$ret$19;
|
|
57125
|
+
// Inline function 'kotlin.run' call
|
|
57126
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57127
|
+
var tmp$ret$17;
|
|
57128
|
+
// Inline function 'kotlin.collections.filter' call
|
|
57129
|
+
var tmp0_filter_0 = tmp1_safe_receiver.m2p_1;
|
|
57130
|
+
var tmp$ret$16;
|
|
57131
|
+
// Inline function 'kotlin.collections.filterTo' call
|
|
57132
|
+
var tmp0_filterTo_0 = LinkedHashMap_init_$Create$();
|
|
57133
|
+
var tmp$ret$8;
|
|
57134
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
57135
|
+
tmp$ret$8 = tmp0_filter_0.q().g();
|
|
57136
|
+
var tmp0_iterator_1 = tmp$ret$8;
|
|
57137
|
+
while (tmp0_iterator_1.h()) {
|
|
57138
|
+
var element_1 = tmp0_iterator_1.i();
|
|
57139
|
+
var tmp$ret$15;
|
|
57140
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57141
|
+
var tmp$ret$9;
|
|
57142
|
+
// Inline function 'kotlin.collections.component1' call
|
|
57143
|
+
tmp$ret$9 = element_1.q1();
|
|
57144
|
+
var conversationId = tmp$ret$9;
|
|
57145
|
+
var tmp$ret$10;
|
|
57146
|
+
// Inline function 'kotlin.collections.component2' call
|
|
57147
|
+
tmp$ret$10 = element_1.s1();
|
|
57148
|
+
var callId = tmp$ret$10;
|
|
57149
|
+
var tmp_0;
|
|
57150
|
+
var tmp0_safe_receiver_1 = filteredLegId;
|
|
57151
|
+
var tmp_1;
|
|
57152
|
+
if (tmp0_safe_receiver_1 == null) {
|
|
57153
|
+
tmp_1 = null;
|
|
57154
|
+
} else {
|
|
57155
|
+
var tmp$ret$12;
|
|
57156
|
+
// Inline function 'kotlin.let' call
|
|
57157
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57158
|
+
var tmp$ret$11;
|
|
57159
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>.<anonymous>' call
|
|
57160
|
+
tmp$ret$11 = !(callId === tmp0_safe_receiver_1);
|
|
57161
|
+
tmp$ret$12 = tmp$ret$11;
|
|
57162
|
+
tmp_1 = tmp$ret$12;
|
|
57163
|
+
}
|
|
57164
|
+
var tmp1_elvis_lhs_0 = tmp_1;
|
|
57165
|
+
if (tmp1_elvis_lhs_0 == null ? true : tmp1_elvis_lhs_0) {
|
|
57166
|
+
var tmp2_safe_receiver = filteredConversationId;
|
|
57167
|
+
var tmp_2;
|
|
57168
|
+
if (tmp2_safe_receiver == null) {
|
|
57169
|
+
tmp_2 = null;
|
|
57170
|
+
} else {
|
|
57171
|
+
var tmp$ret$14;
|
|
57172
|
+
// Inline function 'kotlin.let' call
|
|
57173
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57174
|
+
var tmp$ret$13;
|
|
57175
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>.<anonymous>' call
|
|
57176
|
+
tmp$ret$13 = !(tmp2_safe_receiver === conversationId);
|
|
57177
|
+
tmp$ret$14 = tmp$ret$13;
|
|
57178
|
+
tmp_2 = tmp$ret$14;
|
|
57179
|
+
}
|
|
57180
|
+
var tmp3_elvis_lhs = tmp_2;
|
|
57181
|
+
tmp_0 = tmp3_elvis_lhs == null ? true : tmp3_elvis_lhs;
|
|
57182
|
+
} else {
|
|
57183
|
+
tmp_0 = false;
|
|
57184
|
+
}
|
|
57185
|
+
tmp$ret$15 = tmp_0;
|
|
57186
|
+
if (tmp$ret$15) {
|
|
57187
|
+
tmp0_filterTo_0.l(element_1.q1(), element_1.s1());
|
|
57188
|
+
}
|
|
57189
|
+
}
|
|
57190
|
+
tmp$ret$16 = tmp0_filterTo_0;
|
|
57191
|
+
tmp$ret$17 = tmp$ret$16;
|
|
57192
|
+
var tmp1_forEach_0 = tmp$ret$17.i2();
|
|
57193
|
+
var tmp0_iterator_2 = tmp1_forEach_0.g();
|
|
57194
|
+
while (tmp0_iterator_2.h()) {
|
|
57195
|
+
var element_2 = tmp0_iterator_2.i();
|
|
57196
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57197
|
+
var tmp$ret$18;
|
|
57198
|
+
// Inline function 'kotlin.let' call
|
|
57199
|
+
var tmp0_safe_receiver_2 = tmp1_safe_receiver.l2p_1.g2(element_2);
|
|
57200
|
+
var tmp1_safe_receiver_0 = tmp0_safe_receiver_2 == null ? null : tmp0_safe_receiver_2.b2p_1;
|
|
57201
|
+
var tmp0_let = tmp1_safe_receiver_0 == null ? null : tmp1_safe_receiver_0.s1();
|
|
57202
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57203
|
+
var tmp_3;
|
|
57204
|
+
if (tmp0_let instanceof Completed) {
|
|
57205
|
+
_this__u8e3s4.b1d(Action_init_$Create$(new CallCleanup(element_2)));
|
|
57206
|
+
tmp_3 = Unit_getInstance();
|
|
57207
|
+
}
|
|
57208
|
+
tmp$ret$18 = tmp_3;
|
|
57209
|
+
}
|
|
57210
|
+
tmp$ret$19 = Unit_getInstance();
|
|
57211
|
+
}
|
|
57212
|
+
}
|
|
57213
|
+
function cleanupReducers$default(_this__u8e3s4, filteredLegId, filteredConversationId, $mask0, $handler) {
|
|
57214
|
+
if (!(($mask0 & 1) === 0))
|
|
57215
|
+
filteredLegId = null;
|
|
57216
|
+
if (!(($mask0 & 2) === 0))
|
|
57217
|
+
filteredConversationId = null;
|
|
57218
|
+
return cleanupReducers(_this__u8e3s4, filteredLegId, filteredConversationId);
|
|
57219
|
+
}
|
|
57105
57220
|
function SetConfig(wsHost, wsPath, httpHost, enableWsInvites) {
|
|
57106
57221
|
this.f2y_1 = wsHost;
|
|
57107
57222
|
this.g2y_1 = wsPath;
|
|
@@ -57206,36 +57321,36 @@ function requireClientsdkClientcore () {
|
|
|
57206
57321
|
return ConfigState_init_$Init$(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites, $mask0, $marker, Object.create(ConfigState.prototype));
|
|
57207
57322
|
}
|
|
57208
57323
|
function ConfigState(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites) {
|
|
57209
|
-
this.
|
|
57210
|
-
this.
|
|
57211
|
-
this.
|
|
57212
|
-
this.
|
|
57213
|
-
this.
|
|
57324
|
+
this.m2q_1 = wsHost;
|
|
57325
|
+
this.n2q_1 = wsPath;
|
|
57326
|
+
this.o2q_1 = httpHost;
|
|
57327
|
+
this.p2q_1 = rtcStatsHost;
|
|
57328
|
+
this.q2q_1 = enableWsInvites;
|
|
57214
57329
|
}
|
|
57215
57330
|
ConfigState.prototype.z2y = function (_set____db54di) {
|
|
57216
|
-
this.
|
|
57331
|
+
this.m2q_1 = _set____db54di;
|
|
57217
57332
|
};
|
|
57218
57333
|
ConfigState.prototype.a2z = function (_set____db54di) {
|
|
57219
|
-
this.
|
|
57334
|
+
this.n2q_1 = _set____db54di;
|
|
57220
57335
|
};
|
|
57221
57336
|
ConfigState.prototype.b2z = function (_set____db54di) {
|
|
57222
|
-
this.
|
|
57337
|
+
this.o2q_1 = _set____db54di;
|
|
57223
57338
|
};
|
|
57224
57339
|
ConfigState.prototype.c2z = function (_set____db54di) {
|
|
57225
|
-
this.
|
|
57340
|
+
this.q2q_1 = _set____db54di;
|
|
57226
57341
|
};
|
|
57227
57342
|
ConfigState.prototype.m2y = function () {
|
|
57228
|
-
return this.
|
|
57343
|
+
return this.q2q_1;
|
|
57229
57344
|
};
|
|
57230
57345
|
ConfigState.prototype.v2y = function (action) {
|
|
57231
57346
|
var tmp$ret$0;
|
|
57232
57347
|
// Inline function 'kotlin.apply' call
|
|
57233
57348
|
// Inline function 'kotlin.contracts.contract' call
|
|
57234
57349
|
// Inline function 'com.vonage.clientcore.core.reducers.ConfigState.update.<anonymous>' call
|
|
57235
|
-
this.
|
|
57236
|
-
this.
|
|
57237
|
-
this.
|
|
57238
|
-
this.
|
|
57350
|
+
this.o2q_1 = action.h2y_1;
|
|
57351
|
+
this.m2q_1 = action.f2y_1;
|
|
57352
|
+
this.n2q_1 = action.g2y_1;
|
|
57353
|
+
this.q2q_1 = action.i2y_1;
|
|
57239
57354
|
tmp$ret$0 = this;
|
|
57240
57355
|
return tmp$ret$0;
|
|
57241
57356
|
};
|
|
@@ -57244,26 +57359,26 @@ function requireClientsdkClientcore () {
|
|
|
57244
57359
|
};
|
|
57245
57360
|
ConfigState.prototype.t2y = function (wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites, $mask0, $handler) {
|
|
57246
57361
|
if (!(($mask0 & 1) === 0))
|
|
57247
|
-
wsHost = this.
|
|
57362
|
+
wsHost = this.m2q_1;
|
|
57248
57363
|
if (!(($mask0 & 2) === 0))
|
|
57249
|
-
wsPath = this.
|
|
57364
|
+
wsPath = this.n2q_1;
|
|
57250
57365
|
if (!(($mask0 & 4) === 0))
|
|
57251
|
-
httpHost = this.
|
|
57366
|
+
httpHost = this.o2q_1;
|
|
57252
57367
|
if (!(($mask0 & 8) === 0))
|
|
57253
|
-
rtcStatsHost = this.
|
|
57368
|
+
rtcStatsHost = this.p2q_1;
|
|
57254
57369
|
if (!(($mask0 & 16) === 0))
|
|
57255
|
-
enableWsInvites = this.
|
|
57370
|
+
enableWsInvites = this.q2q_1;
|
|
57256
57371
|
return this.d2z(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites);
|
|
57257
57372
|
};
|
|
57258
57373
|
ConfigState.prototype.toString = function () {
|
|
57259
|
-
return 'ConfigState(wsHost=' + this.
|
|
57374
|
+
return 'ConfigState(wsHost=' + this.m2q_1 + ', wsPath=' + this.n2q_1 + ', httpHost=' + this.o2q_1 + ', rtcStatsHost=' + this.p2q_1 + ', enableWsInvites=' + this.q2q_1 + ')';
|
|
57260
57375
|
};
|
|
57261
57376
|
ConfigState.prototype.hashCode = function () {
|
|
57262
|
-
var result = this.
|
|
57263
|
-
result = imul(result, 31) + (this.
|
|
57264
|
-
result = imul(result, 31) + (this.
|
|
57265
|
-
result = imul(result, 31) + (this.
|
|
57266
|
-
result = imul(result, 31) + (this.
|
|
57377
|
+
var result = this.m2q_1 == null ? 0 : getStringHashCode(this.m2q_1);
|
|
57378
|
+
result = imul(result, 31) + (this.n2q_1 == null ? 0 : getStringHashCode(this.n2q_1)) | 0;
|
|
57379
|
+
result = imul(result, 31) + (this.o2q_1 == null ? 0 : getStringHashCode(this.o2q_1)) | 0;
|
|
57380
|
+
result = imul(result, 31) + (this.p2q_1 == null ? 0 : getStringHashCode(this.p2q_1)) | 0;
|
|
57381
|
+
result = imul(result, 31) + (this.q2q_1 | 0) | 0;
|
|
57267
57382
|
return result;
|
|
57268
57383
|
};
|
|
57269
57384
|
ConfigState.prototype.equals = function (other) {
|
|
@@ -57272,15 +57387,15 @@ function requireClientsdkClientcore () {
|
|
|
57272
57387
|
if (!(other instanceof ConfigState))
|
|
57273
57388
|
return false;
|
|
57274
57389
|
var tmp0_other_with_cast = other instanceof ConfigState ? other : THROW_CCE();
|
|
57275
|
-
if (!(this.
|
|
57390
|
+
if (!(this.m2q_1 == tmp0_other_with_cast.m2q_1))
|
|
57276
57391
|
return false;
|
|
57277
|
-
if (!(this.
|
|
57392
|
+
if (!(this.n2q_1 == tmp0_other_with_cast.n2q_1))
|
|
57278
57393
|
return false;
|
|
57279
|
-
if (!(this.
|
|
57394
|
+
if (!(this.o2q_1 == tmp0_other_with_cast.o2q_1))
|
|
57280
57395
|
return false;
|
|
57281
|
-
if (!(this.
|
|
57396
|
+
if (!(this.p2q_1 == tmp0_other_with_cast.p2q_1))
|
|
57282
57397
|
return false;
|
|
57283
|
-
if (!(this.
|
|
57398
|
+
if (!(this.q2q_1 === tmp0_other_with_cast.q2q_1))
|
|
57284
57399
|
return false;
|
|
57285
57400
|
return true;
|
|
57286
57401
|
};
|
|
@@ -58065,7 +58180,7 @@ function requireClientsdkClientcore () {
|
|
|
58065
58180
|
Call.prototype.e31 = function (isReconnect, from, customData, id, memberState, legState, mediaState, localMedia) {
|
|
58066
58181
|
return new Call(isReconnect, from, customData, id, memberState, legState, mediaState, localMedia);
|
|
58067
58182
|
};
|
|
58068
|
-
Call.prototype.
|
|
58183
|
+
Call.prototype.r2q = function (isReconnect, from, customData, id, memberState, legState, mediaState, localMedia, $mask0, $handler) {
|
|
58069
58184
|
if (!(($mask0 & 1) === 0))
|
|
58070
58185
|
isReconnect = this.w2o_1;
|
|
58071
58186
|
if (!(($mask0 & 2) === 0))
|
|
@@ -58229,22 +58344,22 @@ function requireClientsdkClientcore () {
|
|
|
58229
58344
|
var tmp3_subject = action.o1d_1;
|
|
58230
58345
|
var tmp_1;
|
|
58231
58346
|
if (tmp3_subject instanceof CallMemberMediaTimeout) {
|
|
58232
|
-
tmp_1 = state.d32(action.o1d_1, action.o1d_1.
|
|
58347
|
+
tmp_1 = state.d32(action.o1d_1, action.o1d_1.w2r_1);
|
|
58233
58348
|
} else {
|
|
58234
58349
|
if (tmp3_subject instanceof CallKnockingRequestFailure) {
|
|
58235
|
-
tmp_1 = state.c32(action.o1d_1, action.o1d_1.
|
|
58350
|
+
tmp_1 = state.c32(action.o1d_1, action.o1d_1.l2r_1);
|
|
58236
58351
|
} else {
|
|
58237
58352
|
if (tmp3_subject instanceof CallCreate) {
|
|
58238
|
-
tmp_1 = state.b32(action.o1d_1, action.o1d_1.
|
|
58353
|
+
tmp_1 = state.b32(action.o1d_1, action.o1d_1.p2r_1);
|
|
58239
58354
|
} else {
|
|
58240
58355
|
if (tmp3_subject instanceof CallReconnect) {
|
|
58241
|
-
tmp_1 = state.a32(action.o1d_1, action.o1d_1.
|
|
58356
|
+
tmp_1 = state.a32(action.o1d_1, action.o1d_1.z2q_1);
|
|
58242
58357
|
} else {
|
|
58243
58358
|
if (tmp3_subject instanceof CallCleanup) {
|
|
58244
|
-
tmp_1 = state.z31(action.o1d_1, action.o1d_1.
|
|
58359
|
+
tmp_1 = state.z31(action.o1d_1, action.o1d_1.x2q_1);
|
|
58245
58360
|
} else {
|
|
58246
58361
|
if (tmp3_subject instanceof CallConversationUpdate) {
|
|
58247
|
-
tmp_1 = state.y31(action.o1d_1, action.o1d_1.
|
|
58362
|
+
tmp_1 = state.y31(action.o1d_1, action.o1d_1.n2r_1);
|
|
58248
58363
|
} else {
|
|
58249
58364
|
tmp_1 = null;
|
|
58250
58365
|
}
|
|
@@ -58487,22 +58602,22 @@ function requireClientsdkClientcore () {
|
|
|
58487
58602
|
return function ($this$new) {
|
|
58488
58603
|
var tmp$ret$1;
|
|
58489
58604
|
// Inline function 'kotlin.also' call
|
|
58490
|
-
var tmp0_customData = $action.
|
|
58491
|
-
var tmp1_id = $action.
|
|
58492
|
-
var tmp2_from = $action.
|
|
58605
|
+
var tmp0_customData = $action.s2r_1;
|
|
58606
|
+
var tmp1_id = $action.p2r_1;
|
|
58607
|
+
var tmp2_from = $action.q2r_1;
|
|
58493
58608
|
var tmp0_also = Call_init_$Create$(false, tmp2_from, tmp0_customData, tmp1_id, null, null, null, null, 241, null);
|
|
58494
58609
|
// Inline function 'kotlin.contracts.contract' call
|
|
58495
58610
|
// Inline function 'com.vonage.clientcore.core.reducers.call.CallState.update.<anonymous>.<anonymous>' call
|
|
58496
58611
|
var tmp = tmp0_also;
|
|
58497
|
-
var tmp0_subject = $action.
|
|
58612
|
+
var tmp0_subject = $action.r2r_1;
|
|
58498
58613
|
var tmp0 = tmp0_subject.e4_1;
|
|
58499
58614
|
var tmp_0;
|
|
58500
58615
|
switch (tmp0) {
|
|
58501
58616
|
case 1:
|
|
58502
|
-
tmp_0 = toResolved(tmp0_also.b2p_1, new Started($action.
|
|
58617
|
+
tmp_0 = toResolved(tmp0_also.b2p_1, new Started($action.p2r_1));
|
|
58503
58618
|
break;
|
|
58504
58619
|
case 0:
|
|
58505
|
-
tmp_0 = toResolved(tmp0_also.b2p_1, new Prewarm($action.
|
|
58620
|
+
tmp_0 = toResolved(tmp0_also.b2p_1, new Prewarm($action.p2r_1));
|
|
58506
58621
|
break;
|
|
58507
58622
|
default:
|
|
58508
58623
|
noWhenBranchMatchedException();
|
|
@@ -58510,7 +58625,7 @@ function requireClientsdkClientcore () {
|
|
|
58510
58625
|
}
|
|
58511
58626
|
tmp.b2p_1 = tmp_0;
|
|
58512
58627
|
tmp0_also.c2p_1 = toPending(tmp0_also.c2p_1, Active_getInstance(), $id);
|
|
58513
|
-
var tmp1_safe_receiver = $action.
|
|
58628
|
+
var tmp1_safe_receiver = $action.t2r_1;
|
|
58514
58629
|
if (tmp1_safe_receiver == null)
|
|
58515
58630
|
null;
|
|
58516
58631
|
else {
|
|
@@ -58519,9 +58634,9 @@ function requireClientsdkClientcore () {
|
|
|
58519
58634
|
// Inline function 'kotlin.contracts.contract' call
|
|
58520
58635
|
var tmp_1 = tmp0_also;
|
|
58521
58636
|
var tmp_2 = tmp0_also.a2p_1;
|
|
58522
|
-
tmp_1.a2p_1 = toResolved(tmp_2, Joined_init_$Create$(tmp1_safe_receiver.
|
|
58637
|
+
tmp_1.a2p_1 = toResolved(tmp_2, Joined_init_$Create$(tmp1_safe_receiver.y2r_1, tmp1_safe_receiver.z2r_1, null, 4, null));
|
|
58523
58638
|
var tmp0_set = $this$new.m2p_1;
|
|
58524
|
-
var tmp1_set = tmp1_safe_receiver.
|
|
58639
|
+
var tmp1_set = tmp1_safe_receiver.y2r_1;
|
|
58525
58640
|
tmp0_set.l(tmp1_set, $id);
|
|
58526
58641
|
tmp$ret$0 = Unit_getInstance();
|
|
58527
58642
|
}
|
|
@@ -58531,8 +58646,8 @@ function requireClientsdkClientcore () {
|
|
|
58531
58646
|
}
|
|
58532
58647
|
function CallState$update$lambda_1($action, $id) {
|
|
58533
58648
|
return function ($this$new) {
|
|
58534
|
-
var tmp0_from = new AppChannelEndpoint($action.
|
|
58535
|
-
var tmp = Joined_init_$Create$($action.
|
|
58649
|
+
var tmp0_from = new AppChannelEndpoint($action.a2r_1);
|
|
58650
|
+
var tmp = Joined_init_$Create$($action.b2r_1, $action.a2r_1, null, 4, null);
|
|
58536
58651
|
var tmp1_memberState = Resolved_init_$Create$(tmp, null, 2, null);
|
|
58537
58652
|
return Call_init_$Create$(true, tmp0_from, null, $id, tmp1_memberState, null, null, null, 224, null);
|
|
58538
58653
|
};
|
|
@@ -58543,7 +58658,7 @@ function requireClientsdkClientcore () {
|
|
|
58543
58658
|
var tmp_0 = $this$modify.a2p_1.s1();
|
|
58544
58659
|
if (isInterface(tmp_0, CoreMemberStateWithCid)) {
|
|
58545
58660
|
var tmp_1 = $this$modify.a2p_1.s1();
|
|
58546
|
-
(isInterface(tmp_1, CoreMemberStateWithCid) ? tmp_1 : THROW_CCE()).i32($action.
|
|
58661
|
+
(isInterface(tmp_1, CoreMemberStateWithCid) ? tmp_1 : THROW_CCE()).i32($action.o2r_1);
|
|
58547
58662
|
tmp = Unit_getInstance();
|
|
58548
58663
|
}
|
|
58549
58664
|
return Unit_getInstance();
|
|
@@ -58586,7 +58701,7 @@ function requireClientsdkClientcore () {
|
|
|
58586
58701
|
if (equals(tmp0_subject, Active_getInstance())) {
|
|
58587
58702
|
tmp = Unit_getInstance();
|
|
58588
58703
|
} else {
|
|
58589
|
-
$this$modify.c2p_1 = toFailed($this$modify.c2p_1, $event.
|
|
58704
|
+
$this$modify.c2p_1 = toFailed($this$modify.c2p_1, $event.m2r_1);
|
|
58590
58705
|
tmp = Unit_getInstance();
|
|
58591
58706
|
}
|
|
58592
58707
|
return Unit_getInstance();
|
|
@@ -58666,7 +58781,7 @@ function requireClientsdkClientcore () {
|
|
|
58666
58781
|
var tmp = $this$modify;
|
|
58667
58782
|
var tmp_0 = $this$modify.d2p_1;
|
|
58668
58783
|
var tmp_1 = new Offer($offer.g29_1);
|
|
58669
|
-
tmp.d2p_1 = tmp_0.
|
|
58784
|
+
tmp.d2p_1 = tmp_0.h2t(tmp_1, null, false, 6, null);
|
|
58670
58785
|
return Unit_getInstance();
|
|
58671
58786
|
};
|
|
58672
58787
|
}
|
|
@@ -58675,14 +58790,14 @@ function requireClientsdkClientcore () {
|
|
|
58675
58790
|
var tmp = $this$modify;
|
|
58676
58791
|
var tmp_0 = $this$modify.d2p_1;
|
|
58677
58792
|
var tmp_1 = new Answer($offer.i29_1);
|
|
58678
|
-
tmp.d2p_1 = tmp_0.
|
|
58793
|
+
tmp.d2p_1 = tmp_0.h2t(tmp_1, null, false, 6, null);
|
|
58679
58794
|
return Unit_getInstance();
|
|
58680
58795
|
};
|
|
58681
58796
|
}
|
|
58682
58797
|
function CallState$update$lambda_19($this$modify) {
|
|
58683
58798
|
var tmp = $this$modify;
|
|
58684
58799
|
var tmp_0 = $this$modify.d2p_1;
|
|
58685
|
-
tmp.d2p_1 = tmp_0.
|
|
58800
|
+
tmp.d2p_1 = tmp_0.h2t(null, null, false, 3, null);
|
|
58686
58801
|
return Unit_getInstance();
|
|
58687
58802
|
}
|
|
58688
58803
|
function CallState$update$lambda_20($action) {
|
|
@@ -58690,7 +58805,7 @@ function requireClientsdkClientcore () {
|
|
|
58690
58805
|
var tmp = $this$modify;
|
|
58691
58806
|
var tmp_0 = $this$modify.d2p_1;
|
|
58692
58807
|
var tmp_1 = new Answer($action.j24_1.w24_1);
|
|
58693
|
-
tmp.d2p_1 = tmp_0.
|
|
58808
|
+
tmp.d2p_1 = tmp_0.h2t(null, tmp_1, false, 5, null);
|
|
58694
58809
|
return Unit_getInstance();
|
|
58695
58810
|
};
|
|
58696
58811
|
}
|
|
@@ -59037,28 +59152,28 @@ function requireClientsdkClientcore () {
|
|
|
59037
59152
|
};
|
|
59038
59153
|
Joined.$metadata$ = classMeta('Joined', [CoreMemberStateWithCid]);
|
|
59039
59154
|
function Left(cid, mid, conversationName, reasonCode) {
|
|
59040
|
-
this.
|
|
59041
|
-
this.
|
|
59042
|
-
this.
|
|
59043
|
-
this.
|
|
59155
|
+
this.g2q_1 = cid;
|
|
59156
|
+
this.h2q_1 = mid;
|
|
59157
|
+
this.i2q_1 = conversationName;
|
|
59158
|
+
this.j2q_1 = reasonCode;
|
|
59044
59159
|
}
|
|
59045
59160
|
Left.prototype.w1f = function () {
|
|
59046
|
-
return this.
|
|
59161
|
+
return this.g2q_1;
|
|
59047
59162
|
};
|
|
59048
59163
|
Left.prototype.i32 = function (_set____db54di) {
|
|
59049
|
-
this.
|
|
59164
|
+
this.i2q_1 = _set____db54di;
|
|
59050
59165
|
};
|
|
59051
59166
|
Left.prototype.s2x = function () {
|
|
59052
|
-
return this.
|
|
59167
|
+
return this.i2q_1;
|
|
59053
59168
|
};
|
|
59054
59169
|
Left.prototype.toString = function () {
|
|
59055
|
-
return 'Left(cid=' + this.
|
|
59170
|
+
return 'Left(cid=' + this.g2q_1 + ', mid=' + this.h2q_1 + ', conversationName=' + this.i2q_1 + ', reasonCode=' + this.j2q_1 + ')';
|
|
59056
59171
|
};
|
|
59057
59172
|
Left.prototype.hashCode = function () {
|
|
59058
|
-
var result = getStringHashCode(this.
|
|
59059
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
59060
|
-
result = imul(result, 31) + (this.
|
|
59061
|
-
result = imul(result, 31) + (this.
|
|
59173
|
+
var result = getStringHashCode(this.g2q_1);
|
|
59174
|
+
result = imul(result, 31) + getStringHashCode(this.h2q_1) | 0;
|
|
59175
|
+
result = imul(result, 31) + (this.i2q_1 == null ? 0 : getStringHashCode(this.i2q_1)) | 0;
|
|
59176
|
+
result = imul(result, 31) + (this.j2q_1 == null ? 0 : getStringHashCode(this.j2q_1)) | 0;
|
|
59062
59177
|
return result;
|
|
59063
59178
|
};
|
|
59064
59179
|
Left.prototype.equals = function (other) {
|
|
@@ -59067,13 +59182,13 @@ function requireClientsdkClientcore () {
|
|
|
59067
59182
|
if (!(other instanceof Left))
|
|
59068
59183
|
return false;
|
|
59069
59184
|
var tmp0_other_with_cast = other instanceof Left ? other : THROW_CCE();
|
|
59070
|
-
if (!(this.
|
|
59185
|
+
if (!(this.g2q_1 === tmp0_other_with_cast.g2q_1))
|
|
59071
59186
|
return false;
|
|
59072
|
-
if (!(this.
|
|
59187
|
+
if (!(this.h2q_1 === tmp0_other_with_cast.h2q_1))
|
|
59073
59188
|
return false;
|
|
59074
|
-
if (!(this.
|
|
59189
|
+
if (!(this.i2q_1 == tmp0_other_with_cast.i2q_1))
|
|
59075
59190
|
return false;
|
|
59076
|
-
if (!(this.
|
|
59191
|
+
if (!(this.j2q_1 == tmp0_other_with_cast.j2q_1))
|
|
59077
59192
|
return false;
|
|
59078
59193
|
return true;
|
|
59079
59194
|
};
|
|
@@ -59113,7 +59228,7 @@ function requireClientsdkClientcore () {
|
|
|
59113
59228
|
Invite.prototype.e1k = function () {
|
|
59114
59229
|
return this.p2p_1;
|
|
59115
59230
|
};
|
|
59116
|
-
Invite.prototype.
|
|
59231
|
+
Invite.prototype.j2r = function () {
|
|
59117
59232
|
return this.q2p_1;
|
|
59118
59233
|
};
|
|
59119
59234
|
Invite.prototype.p32 = function () {
|
|
@@ -59125,7 +59240,7 @@ function requireClientsdkClientcore () {
|
|
|
59125
59240
|
Invite.prototype.r32 = function (from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code) {
|
|
59126
59241
|
return new Invite(from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code);
|
|
59127
59242
|
};
|
|
59128
|
-
Invite.prototype.
|
|
59243
|
+
Invite.prototype.k2q = function (from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code, $mask0, $handler) {
|
|
59129
59244
|
if (!(($mask0 & 1) === 0))
|
|
59130
59245
|
from = this.p2p_1;
|
|
59131
59246
|
if (!(($mask0 & 2) === 0))
|
|
@@ -59287,7 +59402,7 @@ function requireClientsdkClientcore () {
|
|
|
59287
59402
|
if (tmp0_subject instanceof InviteCleanup) {
|
|
59288
59403
|
var tmp$ret$5;
|
|
59289
59404
|
// Inline function 'kotlin.let' call
|
|
59290
|
-
var tmp0_let = state.y32(action.o1d_1, action.o1d_1.
|
|
59405
|
+
var tmp0_let = state.y32(action.o1d_1, action.o1d_1.x2r_1);
|
|
59291
59406
|
// Inline function 'kotlin.contracts.contract' call
|
|
59292
59407
|
var tmp$ret$4;
|
|
59293
59408
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteReducer.reduce.<anonymous>' call
|
|
@@ -59347,16 +59462,16 @@ function requireClientsdkClientcore () {
|
|
|
59347
59462
|
return function ($this$new) {
|
|
59348
59463
|
var tmp;
|
|
59349
59464
|
var tmp_0;
|
|
59350
|
-
var tmp0_safe_receiver = $event.h1y_1.u1y_1.
|
|
59351
|
-
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
59352
|
-
tmp_0 = $event.h1y_1.t1y_1.t2j_1 === $this$new.
|
|
59465
|
+
var tmp0_safe_receiver = $event.h1y_1.u1y_1.p2t_1;
|
|
59466
|
+
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.k2t_1) === true) {
|
|
59467
|
+
tmp_0 = $event.h1y_1.t1y_1.t2j_1 === $this$new.e2q_1;
|
|
59353
59468
|
} else {
|
|
59354
59469
|
tmp_0 = false;
|
|
59355
59470
|
}
|
|
59356
59471
|
if (tmp_0) {
|
|
59357
59472
|
var remoteDescription = new Offer(ensureNotNull($event.h1y_1.x1y_1));
|
|
59358
59473
|
var tmp_1 = ensureNotNull($event.h1y_1.v1y_1.i2j_1);
|
|
59359
|
-
tmp = Invite_init_$Create$(tmp_1, $event.h1y_1.v1y_1.e2j_1, $event.h1y_1.s1y_1, $event.h1y_1.r1y_1.
|
|
59474
|
+
tmp = Invite_init_$Create$(tmp_1, $event.h1y_1.v1y_1.e2j_1, $event.h1y_1.s1y_1, $event.h1y_1.r1y_1.w2s_1, remoteDescription.e2t_1, null, true, false, 0, 416, null);
|
|
59360
59475
|
} else {
|
|
59361
59476
|
tmp = null;
|
|
59362
59477
|
}
|
|
@@ -59366,14 +59481,14 @@ function requireClientsdkClientcore () {
|
|
|
59366
59481
|
function InviteState$update$lambda_0($event) {
|
|
59367
59482
|
return function ($this$new) {
|
|
59368
59483
|
var tmp;
|
|
59369
|
-
var tmp0_safe_receiver = $event.q23_1.u1y_1.
|
|
59370
|
-
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
59484
|
+
var tmp0_safe_receiver = $event.q23_1.u1y_1.p2t_1;
|
|
59485
|
+
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.k2t_1) === true) {
|
|
59371
59486
|
var remoteDescription = new Offer(ensureNotNull($event.q23_1.x1y_1));
|
|
59372
59487
|
var tmp_0 = ensureNotNull($event.q23_1.v1y_1.i2j_1);
|
|
59373
|
-
var tmp1_safe_receiver = $this$new.
|
|
59488
|
+
var tmp1_safe_receiver = $this$new.d2q_1.g2($event.q23_1.v1y_1.e2j_1);
|
|
59374
59489
|
var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.v2p_1;
|
|
59375
59490
|
var tmp_1 = tmp2_elvis_lhs == null ? false : tmp2_elvis_lhs;
|
|
59376
|
-
tmp = Invite_init_$Create$(tmp_0, $event.q23_1.v1y_1.e2j_1, $event.q23_1.s1y_1, $event.u23_1, remoteDescription.
|
|
59491
|
+
tmp = Invite_init_$Create$(tmp_0, $event.q23_1.v1y_1.e2j_1, $event.q23_1.s1y_1, $event.u23_1, remoteDescription.e2t_1, null, tmp_1, false, 0, 416, null);
|
|
59377
59492
|
} else {
|
|
59378
59493
|
tmp = null;
|
|
59379
59494
|
}
|
|
@@ -59383,7 +59498,7 @@ function requireClientsdkClientcore () {
|
|
|
59383
59498
|
function InviteState$update$lambda_1($event, this$0) {
|
|
59384
59499
|
return function ($this$modify) {
|
|
59385
59500
|
var tmp;
|
|
59386
|
-
if ($event.b1z_1.k1z_1.s2j_1 === this$0.
|
|
59501
|
+
if ($event.b1z_1.k1z_1.s2j_1 === this$0.e2q_1) {
|
|
59387
59502
|
var tmp_0 = $this$modify;
|
|
59388
59503
|
var tmp_1 = $this$modify.u2p_1;
|
|
59389
59504
|
tmp_0.u2p_1 = toResolved(tmp_1, Joined_init_$Create$($event.d1z_1, $event.e1z_1, null, 4, null));
|
|
@@ -59403,7 +59518,7 @@ function requireClientsdkClientcore () {
|
|
|
59403
59518
|
function InviteState$update$lambda_3($event, this$0) {
|
|
59404
59519
|
return function ($this$modify) {
|
|
59405
59520
|
var tmp;
|
|
59406
|
-
if ($event.p1z_1.z1z_1.m2j_1 === this$0.
|
|
59521
|
+
if ($event.p1z_1.z1z_1.m2j_1 === this$0.e2q_1 ? equals($this$modify.u2p_1.s1(), None_getInstance_2()) : false) {
|
|
59407
59522
|
var tmp_0 = $this$modify;
|
|
59408
59523
|
var tmp_1 = $this$modify.u2p_1;
|
|
59409
59524
|
var tmp0_safe_receiver = $event.p1z_1.b20_1;
|
|
@@ -59416,7 +59531,7 @@ function requireClientsdkClientcore () {
|
|
|
59416
59531
|
function InviteState$update$lambda_4($event) {
|
|
59417
59532
|
return function ($this$modify) {
|
|
59418
59533
|
$this$modify.w2p_1 = true;
|
|
59419
|
-
$this$modify.x2p_1 = $event.x22_1.b1y_1.
|
|
59534
|
+
$this$modify.x2p_1 = $event.x22_1.b1y_1.b2q_1;
|
|
59420
59535
|
return Unit_getInstance();
|
|
59421
59536
|
};
|
|
59422
59537
|
}
|
|
@@ -59429,32 +59544,32 @@ function requireClientsdkClientcore () {
|
|
|
59429
59544
|
};
|
|
59430
59545
|
}
|
|
59431
59546
|
function InviteState(invites, currentUserId) {
|
|
59432
|
-
this.
|
|
59433
|
-
this.
|
|
59434
|
-
this.
|
|
59547
|
+
this.d2q_1 = invites;
|
|
59548
|
+
this.e2q_1 = currentUserId;
|
|
59549
|
+
this.f2q_1 = null;
|
|
59435
59550
|
}
|
|
59436
59551
|
InviteState.prototype.a33 = function () {
|
|
59437
|
-
return this.
|
|
59552
|
+
return this.d2q_1;
|
|
59438
59553
|
};
|
|
59439
59554
|
InviteState.prototype.l32 = function (_set____db54di) {
|
|
59440
|
-
this.
|
|
59555
|
+
this.e2q_1 = _set____db54di;
|
|
59441
59556
|
};
|
|
59442
59557
|
InviteState.prototype.v2z = function () {
|
|
59443
|
-
return this.
|
|
59558
|
+
return this.d2q_1;
|
|
59444
59559
|
};
|
|
59445
59560
|
InviteState.prototype.m2z = function (_set____db54di) {
|
|
59446
|
-
this.
|
|
59561
|
+
this.f2q_1 = _set____db54di;
|
|
59447
59562
|
};
|
|
59448
59563
|
InviteState.prototype.n32 = function () {
|
|
59449
|
-
return this.
|
|
59564
|
+
return this.f2q_1;
|
|
59450
59565
|
};
|
|
59451
59566
|
InviteState.prototype.m30 = function (event) {
|
|
59452
59567
|
var tmp$ret$0;
|
|
59453
59568
|
// Inline function 'kotlin.apply' call
|
|
59454
59569
|
// Inline function 'kotlin.contracts.contract' call
|
|
59455
59570
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteState.update.<anonymous>' call
|
|
59456
|
-
this.
|
|
59457
|
-
this.
|
|
59571
|
+
this.e2q_1 = event.x23_1.e25_1;
|
|
59572
|
+
this.f2q_1 = null;
|
|
59458
59573
|
tmp$ret$0 = this;
|
|
59459
59574
|
return tmp$ret$0;
|
|
59460
59575
|
};
|
|
@@ -59487,7 +59602,7 @@ function requireClientsdkClientcore () {
|
|
|
59487
59602
|
// Inline function 'kotlin.apply' call
|
|
59488
59603
|
// Inline function 'kotlin.contracts.contract' call
|
|
59489
59604
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteState.update.<anonymous>' call
|
|
59490
|
-
this.
|
|
59605
|
+
this.d2q_1.g3(id);
|
|
59491
59606
|
tmp$ret$0 = this;
|
|
59492
59607
|
return tmp$ret$0;
|
|
59493
59608
|
};
|
|
@@ -59496,17 +59611,17 @@ function requireClientsdkClientcore () {
|
|
|
59496
59611
|
};
|
|
59497
59612
|
InviteState.prototype.w32 = function (invites, currentUserId, $mask0, $handler) {
|
|
59498
59613
|
if (!(($mask0 & 1) === 0))
|
|
59499
|
-
invites = this.
|
|
59614
|
+
invites = this.d2q_1;
|
|
59500
59615
|
if (!(($mask0 & 2) === 0))
|
|
59501
|
-
currentUserId = this.
|
|
59616
|
+
currentUserId = this.e2q_1;
|
|
59502
59617
|
return this.b33(invites, currentUserId);
|
|
59503
59618
|
};
|
|
59504
59619
|
InviteState.prototype.toString = function () {
|
|
59505
|
-
return 'InviteState(invites=' + this.
|
|
59620
|
+
return 'InviteState(invites=' + this.d2q_1 + ', currentUserId=' + this.e2q_1 + ')';
|
|
59506
59621
|
};
|
|
59507
59622
|
InviteState.prototype.hashCode = function () {
|
|
59508
|
-
var result = hashCode(this.
|
|
59509
|
-
result = imul(result, 31) + (this.
|
|
59623
|
+
var result = hashCode(this.d2q_1);
|
|
59624
|
+
result = imul(result, 31) + (this.e2q_1 == null ? 0 : getStringHashCode(this.e2q_1)) | 0;
|
|
59510
59625
|
return result;
|
|
59511
59626
|
};
|
|
59512
59627
|
InviteState.prototype.equals = function (other) {
|
|
@@ -59515,9 +59630,9 @@ function requireClientsdkClientcore () {
|
|
|
59515
59630
|
if (!(other instanceof InviteState))
|
|
59516
59631
|
return false;
|
|
59517
59632
|
var tmp0_other_with_cast = other instanceof InviteState ? other : THROW_CCE();
|
|
59518
|
-
if (!equals(this.
|
|
59633
|
+
if (!equals(this.d2q_1, tmp0_other_with_cast.d2q_1))
|
|
59519
59634
|
return false;
|
|
59520
|
-
if (!(this.
|
|
59635
|
+
if (!(this.e2q_1 == tmp0_other_with_cast.e2q_1))
|
|
59521
59636
|
return false;
|
|
59522
59637
|
return true;
|
|
59523
59638
|
};
|
|
@@ -60518,7 +60633,7 @@ function requireClientsdkClientcore () {
|
|
|
60518
60633
|
//endregion
|
|
60519
60634
|
//region block: pre-declaration
|
|
60520
60635
|
function setConfig(config) {
|
|
60521
|
-
this.core.s1b(new SetConfig(config.
|
|
60636
|
+
this.core.s1b(new SetConfig(config.o3b_1, config.p3b_1, config.n3b_1, config.r3b_1));
|
|
60522
60637
|
}
|
|
60523
60638
|
function createSession(token, sessionId) {
|
|
60524
60639
|
return new Promise(ICoreClientJS$createSession$lambda(this, token, sessionId));
|
|
@@ -60886,7 +61001,7 @@ function requireClientsdkClientcore () {
|
|
|
60886
61001
|
MemberInvitedEventJS.prototype.k1o = function () {
|
|
60887
61002
|
return this.h34_1;
|
|
60888
61003
|
};
|
|
60889
|
-
MemberInvitedEventJS.prototype.
|
|
61004
|
+
MemberInvitedEventJS.prototype.c2r = function () {
|
|
60890
61005
|
return this.i34_1;
|
|
60891
61006
|
};
|
|
60892
61007
|
MemberInvitedEventJS.prototype.e1k = function () {
|
|
@@ -60909,7 +61024,7 @@ function requireClientsdkClientcore () {
|
|
|
60909
61024
|
Object.defineProperty(MemberInvitedEventJS.prototype, 'conversationId', {
|
|
60910
61025
|
configurable: true,
|
|
60911
61026
|
get: function () {
|
|
60912
|
-
return this.
|
|
61027
|
+
return this.c2r();
|
|
60913
61028
|
}
|
|
60914
61029
|
});
|
|
60915
61030
|
Object.defineProperty(MemberInvitedEventJS.prototype, 'from', {
|
|
@@ -60925,13 +61040,13 @@ function requireClientsdkClientcore () {
|
|
|
60925
61040
|
function Body_0(body) {
|
|
60926
61041
|
this.l34_1 = body.y2l_1;
|
|
60927
61042
|
}
|
|
60928
|
-
Body_0.prototype.
|
|
61043
|
+
Body_0.prototype.l2s = function () {
|
|
60929
61044
|
return this.l34_1;
|
|
60930
61045
|
};
|
|
60931
61046
|
Body_0.$metadata$ = classMeta('Body');
|
|
60932
61047
|
Object.defineProperty(Body_0.prototype, 'username', {
|
|
60933
61048
|
configurable: true,
|
|
60934
|
-
get: Body_0.prototype.
|
|
61049
|
+
get: Body_0.prototype.l2s
|
|
60935
61050
|
});
|
|
60936
61051
|
function MemberJoinedEventJS(event) {
|
|
60937
61052
|
this.m34_1 = event.z2l_1;
|
|
@@ -60946,7 +61061,7 @@ function requireClientsdkClientcore () {
|
|
|
60946
61061
|
MemberJoinedEventJS.prototype.k1o = function () {
|
|
60947
61062
|
return this.n34_1;
|
|
60948
61063
|
};
|
|
60949
|
-
MemberJoinedEventJS.prototype.
|
|
61064
|
+
MemberJoinedEventJS.prototype.c2r = function () {
|
|
60950
61065
|
return this.o34_1;
|
|
60951
61066
|
};
|
|
60952
61067
|
MemberJoinedEventJS.prototype.e1k = function () {
|
|
@@ -60969,7 +61084,7 @@ function requireClientsdkClientcore () {
|
|
|
60969
61084
|
Object.defineProperty(MemberJoinedEventJS.prototype, 'conversationId', {
|
|
60970
61085
|
configurable: true,
|
|
60971
61086
|
get: function () {
|
|
60972
|
-
return this.
|
|
61087
|
+
return this.c2r();
|
|
60973
61088
|
}
|
|
60974
61089
|
});
|
|
60975
61090
|
Object.defineProperty(MemberJoinedEventJS.prototype, 'from', {
|
|
@@ -60985,13 +61100,13 @@ function requireClientsdkClientcore () {
|
|
|
60985
61100
|
function Body_1(body) {
|
|
60986
61101
|
this.r34_1 = body.e2m_1;
|
|
60987
61102
|
}
|
|
60988
|
-
Body_1.prototype.
|
|
61103
|
+
Body_1.prototype.l2s = function () {
|
|
60989
61104
|
return this.r34_1;
|
|
60990
61105
|
};
|
|
60991
61106
|
Body_1.$metadata$ = classMeta('Body');
|
|
60992
61107
|
Object.defineProperty(Body_1.prototype, 'username', {
|
|
60993
61108
|
configurable: true,
|
|
60994
|
-
get: Body_1.prototype.
|
|
61109
|
+
get: Body_1.prototype.l2s
|
|
60995
61110
|
});
|
|
60996
61111
|
function MemberLeftEventJS(event) {
|
|
60997
61112
|
this.s34_1 = event.f2m_1;
|
|
@@ -61006,7 +61121,7 @@ function requireClientsdkClientcore () {
|
|
|
61006
61121
|
MemberLeftEventJS.prototype.k1o = function () {
|
|
61007
61122
|
return this.t34_1;
|
|
61008
61123
|
};
|
|
61009
|
-
MemberLeftEventJS.prototype.
|
|
61124
|
+
MemberLeftEventJS.prototype.c2r = function () {
|
|
61010
61125
|
return this.u34_1;
|
|
61011
61126
|
};
|
|
61012
61127
|
MemberLeftEventJS.prototype.e1k = function () {
|
|
@@ -61029,7 +61144,7 @@ function requireClientsdkClientcore () {
|
|
|
61029
61144
|
Object.defineProperty(MemberLeftEventJS.prototype, 'conversationId', {
|
|
61030
61145
|
configurable: true,
|
|
61031
61146
|
get: function () {
|
|
61032
|
-
return this.
|
|
61147
|
+
return this.c2r();
|
|
61033
61148
|
}
|
|
61034
61149
|
});
|
|
61035
61150
|
Object.defineProperty(MemberLeftEventJS.prototype, 'from', {
|
|
@@ -61049,7 +61164,7 @@ function requireClientsdkClientcore () {
|
|
|
61049
61164
|
this.a35_1 = event.n2m_1;
|
|
61050
61165
|
this.b35_1 = event.o2m_1;
|
|
61051
61166
|
}
|
|
61052
|
-
UnknownEventJS.prototype.
|
|
61167
|
+
UnknownEventJS.prototype.l2q = function () {
|
|
61053
61168
|
return this.x34_1;
|
|
61054
61169
|
};
|
|
61055
61170
|
UnknownEventJS.prototype.v1k = function () {
|
|
@@ -61058,7 +61173,7 @@ function requireClientsdkClientcore () {
|
|
|
61058
61173
|
UnknownEventJS.prototype.k1o = function () {
|
|
61059
61174
|
return this.z34_1;
|
|
61060
61175
|
};
|
|
61061
|
-
UnknownEventJS.prototype.
|
|
61176
|
+
UnknownEventJS.prototype.c2r = function () {
|
|
61062
61177
|
return this.a35_1;
|
|
61063
61178
|
};
|
|
61064
61179
|
UnknownEventJS.prototype.e1k = function () {
|
|
@@ -61067,7 +61182,7 @@ function requireClientsdkClientcore () {
|
|
|
61067
61182
|
UnknownEventJS.$metadata$ = classMeta('UnknownEventJS', [ConversationEventJS]);
|
|
61068
61183
|
Object.defineProperty(UnknownEventJS.prototype, 'type', {
|
|
61069
61184
|
configurable: true,
|
|
61070
|
-
get: UnknownEventJS.prototype.
|
|
61185
|
+
get: UnknownEventJS.prototype.l2q
|
|
61071
61186
|
});
|
|
61072
61187
|
Object.defineProperty(UnknownEventJS.prototype, 'id', {
|
|
61073
61188
|
configurable: true,
|
|
@@ -61082,7 +61197,7 @@ function requireClientsdkClientcore () {
|
|
|
61082
61197
|
Object.defineProperty(UnknownEventJS.prototype, 'conversationId', {
|
|
61083
61198
|
configurable: true,
|
|
61084
61199
|
get: function () {
|
|
61085
|
-
return this.
|
|
61200
|
+
return this.c2r();
|
|
61086
61201
|
}
|
|
61087
61202
|
});
|
|
61088
61203
|
Object.defineProperty(UnknownEventJS.prototype, 'from', {
|
|
@@ -61157,7 +61272,7 @@ function requireClientsdkClientcore () {
|
|
|
61157
61272
|
TextMessageEventJS.prototype.k1o = function () {
|
|
61158
61273
|
return this.h35_1;
|
|
61159
61274
|
};
|
|
61160
|
-
TextMessageEventJS.prototype.
|
|
61275
|
+
TextMessageEventJS.prototype.c2r = function () {
|
|
61161
61276
|
return this.i35_1;
|
|
61162
61277
|
};
|
|
61163
61278
|
TextMessageEventJS.prototype.e1k = function () {
|
|
@@ -61182,7 +61297,7 @@ function requireClientsdkClientcore () {
|
|
|
61182
61297
|
Object.defineProperty(TextMessageEventJS.prototype, 'conversationId', {
|
|
61183
61298
|
configurable: true,
|
|
61184
61299
|
get: function () {
|
|
61185
|
-
return this.
|
|
61300
|
+
return this.c2r();
|
|
61186
61301
|
}
|
|
61187
61302
|
});
|
|
61188
61303
|
Object.defineProperty(TextMessageEventJS.prototype, 'from', {
|
|
@@ -61292,7 +61407,7 @@ function requireClientsdkClientcore () {
|
|
|
61292
61407
|
ConversationJS.prototype.k1o = function () {
|
|
61293
61408
|
return this.r35_1;
|
|
61294
61409
|
};
|
|
61295
|
-
ConversationJS.prototype.
|
|
61410
|
+
ConversationJS.prototype.k2r = function () {
|
|
61296
61411
|
return this.s35_1;
|
|
61297
61412
|
};
|
|
61298
61413
|
ConversationJS.prototype.z30 = function () {
|
|
@@ -61325,7 +61440,7 @@ function requireClientsdkClientcore () {
|
|
|
61325
61440
|
});
|
|
61326
61441
|
Object.defineProperty(ConversationJS.prototype, 'memberId', {
|
|
61327
61442
|
configurable: true,
|
|
61328
|
-
get: ConversationJS.prototype.
|
|
61443
|
+
get: ConversationJS.prototype.k2r
|
|
61329
61444
|
});
|
|
61330
61445
|
Object.defineProperty(ConversationJS.prototype, 'memberState', {
|
|
61331
61446
|
configurable: true,
|
|
@@ -62276,7 +62391,7 @@ function requireClientsdkClientcore () {
|
|
|
62276
62391
|
}
|
|
62277
62392
|
tmp_1.n38_1 = tmp_2;
|
|
62278
62393
|
}
|
|
62279
|
-
MemberChannelJS.prototype.
|
|
62394
|
+
MemberChannelJS.prototype.l2q = function () {
|
|
62280
62395
|
return this.l38_1;
|
|
62281
62396
|
};
|
|
62282
62397
|
MemberChannelJS.prototype.e1k = function () {
|
|
@@ -62288,7 +62403,7 @@ function requireClientsdkClientcore () {
|
|
|
62288
62403
|
MemberChannelJS.$metadata$ = classMeta('MemberChannelJS');
|
|
62289
62404
|
Object.defineProperty(MemberChannelJS.prototype, 'type', {
|
|
62290
62405
|
configurable: true,
|
|
62291
|
-
get: MemberChannelJS.prototype.
|
|
62406
|
+
get: MemberChannelJS.prototype.l2q
|
|
62292
62407
|
});
|
|
62293
62408
|
Object.defineProperty(MemberChannelJS.prototype, 'from', {
|
|
62294
62409
|
configurable: true,
|
|
@@ -62305,7 +62420,7 @@ function requireClientsdkClientcore () {
|
|
|
62305
62420
|
ChannelJS.prototype.v1k = function () {
|
|
62306
62421
|
return this.o38_1;
|
|
62307
62422
|
};
|
|
62308
|
-
ChannelJS.prototype.
|
|
62423
|
+
ChannelJS.prototype.d2s = function () {
|
|
62309
62424
|
return this.p38_1;
|
|
62310
62425
|
};
|
|
62311
62426
|
ChannelJS.$metadata$ = classMeta('ChannelJS');
|
|
@@ -62315,26 +62430,26 @@ function requireClientsdkClientcore () {
|
|
|
62315
62430
|
});
|
|
62316
62431
|
Object.defineProperty(ChannelJS.prototype, 'number', {
|
|
62317
62432
|
configurable: true,
|
|
62318
|
-
get: ChannelJS.prototype.
|
|
62433
|
+
get: ChannelJS.prototype.d2s
|
|
62319
62434
|
});
|
|
62320
62435
|
function LegChannelJS(channel) {
|
|
62321
62436
|
this.q38_1 = channel.u2k_1;
|
|
62322
62437
|
this.r38_1 = channel.w2k_1;
|
|
62323
62438
|
this.s38_1 = channel.v2k_1;
|
|
62324
62439
|
}
|
|
62325
|
-
LegChannelJS.prototype.
|
|
62440
|
+
LegChannelJS.prototype.l2q = function () {
|
|
62326
62441
|
return this.q38_1;
|
|
62327
62442
|
};
|
|
62328
62443
|
LegChannelJS.prototype.n1k = function () {
|
|
62329
62444
|
return this.r38_1;
|
|
62330
62445
|
};
|
|
62331
|
-
LegChannelJS.prototype.
|
|
62446
|
+
LegChannelJS.prototype.d2s = function () {
|
|
62332
62447
|
return this.s38_1;
|
|
62333
62448
|
};
|
|
62334
62449
|
LegChannelJS.$metadata$ = classMeta('LegChannelJS');
|
|
62335
62450
|
Object.defineProperty(LegChannelJS.prototype, 'type', {
|
|
62336
62451
|
configurable: true,
|
|
62337
|
-
get: LegChannelJS.prototype.
|
|
62452
|
+
get: LegChannelJS.prototype.l2q
|
|
62338
62453
|
});
|
|
62339
62454
|
Object.defineProperty(LegChannelJS.prototype, 'user', {
|
|
62340
62455
|
configurable: true,
|
|
@@ -62342,7 +62457,7 @@ function requireClientsdkClientcore () {
|
|
|
62342
62457
|
});
|
|
62343
62458
|
Object.defineProperty(LegChannelJS.prototype, 'number', {
|
|
62344
62459
|
configurable: true,
|
|
62345
|
-
get: LegChannelJS.prototype.
|
|
62460
|
+
get: LegChannelJS.prototype.d2s
|
|
62346
62461
|
});
|
|
62347
62462
|
function LegJS(leg) {
|
|
62348
62463
|
this.t38_1 = leg.p2m_1;
|
|
@@ -62358,13 +62473,13 @@ function requireClientsdkClientcore () {
|
|
|
62358
62473
|
LegJS.prototype.v1k = function () {
|
|
62359
62474
|
return this.t38_1;
|
|
62360
62475
|
};
|
|
62361
|
-
LegJS.prototype.
|
|
62476
|
+
LegJS.prototype.l2q = function () {
|
|
62362
62477
|
return this.u38_1;
|
|
62363
62478
|
};
|
|
62364
|
-
LegJS.prototype.
|
|
62479
|
+
LegJS.prototype.u2r = function () {
|
|
62365
62480
|
return this.v38_1;
|
|
62366
62481
|
};
|
|
62367
|
-
LegJS.prototype.
|
|
62482
|
+
LegJS.prototype.c2r = function () {
|
|
62368
62483
|
return this.w38_1;
|
|
62369
62484
|
};
|
|
62370
62485
|
LegJS.prototype.f2f = function () {
|
|
@@ -62389,15 +62504,15 @@ function requireClientsdkClientcore () {
|
|
|
62389
62504
|
});
|
|
62390
62505
|
Object.defineProperty(LegJS.prototype, 'type', {
|
|
62391
62506
|
configurable: true,
|
|
62392
|
-
get: LegJS.prototype.
|
|
62507
|
+
get: LegJS.prototype.l2q
|
|
62393
62508
|
});
|
|
62394
62509
|
Object.defineProperty(LegJS.prototype, 'direction', {
|
|
62395
62510
|
configurable: true,
|
|
62396
|
-
get: LegJS.prototype.
|
|
62511
|
+
get: LegJS.prototype.u2r
|
|
62397
62512
|
});
|
|
62398
62513
|
Object.defineProperty(LegJS.prototype, 'conversationId', {
|
|
62399
62514
|
configurable: true,
|
|
62400
|
-
get: LegJS.prototype.
|
|
62515
|
+
get: LegJS.prototype.c2r
|
|
62401
62516
|
});
|
|
62402
62517
|
Object.defineProperty(LegJS.prototype, 'status', {
|
|
62403
62518
|
configurable: true,
|
|
@@ -62796,43 +62911,23 @@ function requireClientsdkClientcore () {
|
|
|
62796
62911
|
extendThrowable(this, vonageError.c2j_1, vonageError.d2j_1);
|
|
62797
62912
|
this.e3b_1 = valueOf_3(vonageError.a2j_1.d4_1);
|
|
62798
62913
|
this.f3b_1 = vonageError.b2j_1;
|
|
62799
|
-
this.g3b_1 = vonageError.c2j_1;
|
|
62800
|
-
this.h3b_1 = vonageError.d2j_1;
|
|
62801
62914
|
captureStack(this, VonageErrorJS);
|
|
62802
62915
|
}
|
|
62803
|
-
VonageErrorJS.prototype.
|
|
62916
|
+
VonageErrorJS.prototype.l2q = function () {
|
|
62804
62917
|
return this.e3b_1;
|
|
62805
62918
|
};
|
|
62806
62919
|
VonageErrorJS.prototype.e1e = function () {
|
|
62807
62920
|
return this.f3b_1;
|
|
62808
62921
|
};
|
|
62809
|
-
VonageErrorJS.prototype.g1 = function () {
|
|
62810
|
-
return this.g3b_1;
|
|
62811
|
-
};
|
|
62812
|
-
VonageErrorJS.prototype.h1 = function () {
|
|
62813
|
-
return this.h3b_1;
|
|
62814
|
-
};
|
|
62815
62922
|
VonageErrorJS.$metadata$ = classMeta('VonageErrorJS', undefined, undefined, undefined, undefined, Error.prototype);
|
|
62816
62923
|
Object.defineProperty(VonageErrorJS.prototype, 'type', {
|
|
62817
62924
|
configurable: true,
|
|
62818
|
-
get: VonageErrorJS.prototype.
|
|
62925
|
+
get: VonageErrorJS.prototype.l2q
|
|
62819
62926
|
});
|
|
62820
62927
|
Object.defineProperty(VonageErrorJS.prototype, 'code', {
|
|
62821
62928
|
configurable: true,
|
|
62822
62929
|
get: VonageErrorJS.prototype.e1e
|
|
62823
62930
|
});
|
|
62824
|
-
Object.defineProperty(VonageErrorJS.prototype, 'message', {
|
|
62825
|
-
configurable: true,
|
|
62826
|
-
get: function () {
|
|
62827
|
-
return this.g1();
|
|
62828
|
-
}
|
|
62829
|
-
});
|
|
62830
|
-
Object.defineProperty(VonageErrorJS.prototype, 'cause', {
|
|
62831
|
-
configurable: true,
|
|
62832
|
-
get: function () {
|
|
62833
|
-
return this.h1();
|
|
62834
|
-
}
|
|
62835
|
-
});
|
|
62836
62931
|
var VonageErrorTypeJS_CS_ERROR_instance;
|
|
62837
62932
|
var VonageErrorTypeJS_HTTP_CLIENT_ERROR_instance;
|
|
62838
62933
|
var VonageErrorTypeJS_SESSION_ERROR_instance;
|
|
@@ -63430,15 +63525,15 @@ function requireClientsdkClientcore () {
|
|
|
63430
63525
|
}
|
|
63431
63526
|
function CoreClientConfigRegionJS(name, ordinal, coreRegion) {
|
|
63432
63527
|
Enum.call(this, name, ordinal);
|
|
63433
|
-
this.
|
|
63528
|
+
this.k3b_1 = coreRegion;
|
|
63434
63529
|
}
|
|
63435
|
-
CoreClientConfigRegionJS.prototype.
|
|
63436
|
-
return this.
|
|
63530
|
+
CoreClientConfigRegionJS.prototype.l3b = function () {
|
|
63531
|
+
return this.k3b_1;
|
|
63437
63532
|
};
|
|
63438
63533
|
CoreClientConfigRegionJS.$metadata$ = classMeta('CoreClientConfigRegionJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
63439
63534
|
Object.defineProperty(CoreClientConfigRegionJS.prototype, 'coreRegion', {
|
|
63440
63535
|
configurable: true,
|
|
63441
|
-
get: CoreClientConfigRegionJS.prototype.
|
|
63536
|
+
get: CoreClientConfigRegionJS.prototype.l3b
|
|
63442
63537
|
});
|
|
63443
63538
|
Object.defineProperty(CoreClientConfigRegionJS.prototype, 'name', {
|
|
63444
63539
|
configurable: true,
|
|
@@ -63449,69 +63544,69 @@ function requireClientsdkClientcore () {
|
|
|
63449
63544
|
get: CoreClientConfigRegionJS.prototype.pe
|
|
63450
63545
|
});
|
|
63451
63546
|
function CoreClientConfigJS(region) {
|
|
63452
|
-
this.
|
|
63453
|
-
this.
|
|
63454
|
-
this.
|
|
63455
|
-
this.
|
|
63456
|
-
this.
|
|
63457
|
-
this.
|
|
63547
|
+
this.m3b_1 = Companion_getInstance().s2g(region.k3b_1, true);
|
|
63548
|
+
this.n3b_1 = this.m3b_1.t2g_1;
|
|
63549
|
+
this.o3b_1 = this.m3b_1.u2g_1;
|
|
63550
|
+
this.p3b_1 = this.m3b_1.v2g_1;
|
|
63551
|
+
this.q3b_1 = this.m3b_1.w2g_1;
|
|
63552
|
+
this.r3b_1 = this.m3b_1.y2g_1;
|
|
63458
63553
|
}
|
|
63554
|
+
CoreClientConfigJS.prototype.s3b = function (_set____db54di) {
|
|
63555
|
+
this.n3b_1 = _set____db54di;
|
|
63556
|
+
};
|
|
63557
|
+
CoreClientConfigJS.prototype.t3b = function () {
|
|
63558
|
+
return this.n3b_1;
|
|
63559
|
+
};
|
|
63459
63560
|
CoreClientConfigJS.prototype.u3b = function (_set____db54di) {
|
|
63460
|
-
this.
|
|
63561
|
+
this.o3b_1 = _set____db54di;
|
|
63461
63562
|
};
|
|
63462
63563
|
CoreClientConfigJS.prototype.v3b = function () {
|
|
63463
|
-
return this.
|
|
63564
|
+
return this.o3b_1;
|
|
63464
63565
|
};
|
|
63465
63566
|
CoreClientConfigJS.prototype.w3b = function (_set____db54di) {
|
|
63466
|
-
this.
|
|
63567
|
+
this.p3b_1 = _set____db54di;
|
|
63467
63568
|
};
|
|
63468
63569
|
CoreClientConfigJS.prototype.x3b = function () {
|
|
63469
|
-
return this.
|
|
63570
|
+
return this.p3b_1;
|
|
63470
63571
|
};
|
|
63471
63572
|
CoreClientConfigJS.prototype.y3b = function (_set____db54di) {
|
|
63472
|
-
this.
|
|
63573
|
+
this.q3b_1 = _set____db54di;
|
|
63473
63574
|
};
|
|
63474
63575
|
CoreClientConfigJS.prototype.z3b = function () {
|
|
63475
|
-
return this.
|
|
63576
|
+
return this.q3b_1;
|
|
63476
63577
|
};
|
|
63477
63578
|
CoreClientConfigJS.prototype.a3c = function (_set____db54di) {
|
|
63478
|
-
this.
|
|
63579
|
+
this.r3b_1 = _set____db54di;
|
|
63479
63580
|
};
|
|
63480
63581
|
CoreClientConfigJS.prototype.b3c = function () {
|
|
63481
|
-
return this.
|
|
63482
|
-
};
|
|
63483
|
-
CoreClientConfigJS.prototype.c3c = function (_set____db54di) {
|
|
63484
|
-
this.t3b_1 = _set____db54di;
|
|
63485
|
-
};
|
|
63486
|
-
CoreClientConfigJS.prototype.d3c = function () {
|
|
63487
|
-
return this.t3b_1;
|
|
63582
|
+
return this.r3b_1;
|
|
63488
63583
|
};
|
|
63489
63584
|
CoreClientConfigJS.$metadata$ = classMeta('CoreClientConfigJS');
|
|
63490
63585
|
Object.defineProperty(CoreClientConfigJS.prototype, 'apiUrl', {
|
|
63586
|
+
configurable: true,
|
|
63587
|
+
get: CoreClientConfigJS.prototype.t3b,
|
|
63588
|
+
set: CoreClientConfigJS.prototype.s3b
|
|
63589
|
+
});
|
|
63590
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'websocketUrl', {
|
|
63491
63591
|
configurable: true,
|
|
63492
63592
|
get: CoreClientConfigJS.prototype.v3b,
|
|
63493
63593
|
set: CoreClientConfigJS.prototype.u3b
|
|
63494
63594
|
});
|
|
63495
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63595
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'websocketPath', {
|
|
63496
63596
|
configurable: true,
|
|
63497
63597
|
get: CoreClientConfigJS.prototype.x3b,
|
|
63498
63598
|
set: CoreClientConfigJS.prototype.w3b
|
|
63499
63599
|
});
|
|
63500
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63600
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'autoMediaReoffer', {
|
|
63501
63601
|
configurable: true,
|
|
63502
63602
|
get: CoreClientConfigJS.prototype.z3b,
|
|
63503
63603
|
set: CoreClientConfigJS.prototype.y3b
|
|
63504
63604
|
});
|
|
63505
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63605
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'enableWebsocketInvites', {
|
|
63506
63606
|
configurable: true,
|
|
63507
63607
|
get: CoreClientConfigJS.prototype.b3c,
|
|
63508
63608
|
set: CoreClientConfigJS.prototype.a3c
|
|
63509
63609
|
});
|
|
63510
|
-
Object.defineProperty(CoreClientConfigJS.prototype, 'enableWebsocketInvites', {
|
|
63511
|
-
configurable: true,
|
|
63512
|
-
get: CoreClientConfigJS.prototype.d3c,
|
|
63513
|
-
set: CoreClientConfigJS.prototype.c3c
|
|
63514
|
-
});
|
|
63515
63610
|
var LoggingLevelJS_Verbose_instance;
|
|
63516
63611
|
var LoggingLevelJS_Debug_instance;
|
|
63517
63612
|
var LoggingLevelJS_Info_instance;
|
|
@@ -63555,10 +63650,10 @@ function requireClientsdkClientcore () {
|
|
|
63555
63650
|
}
|
|
63556
63651
|
function LoggingLevelJS(name, ordinal, sev) {
|
|
63557
63652
|
Enum.call(this, name, ordinal);
|
|
63558
|
-
this.
|
|
63653
|
+
this.e3c_1 = sev;
|
|
63559
63654
|
}
|
|
63560
63655
|
LoggingLevelJS.prototype.h2g = function () {
|
|
63561
|
-
return this.
|
|
63656
|
+
return this.e3c_1;
|
|
63562
63657
|
};
|
|
63563
63658
|
LoggingLevelJS.$metadata$ = classMeta('LoggingLevelJS', [ILoggingLevel], undefined, undefined, undefined, Enum.prototype);
|
|
63564
63659
|
Object.defineProperty(LoggingLevelJS.prototype, 'name', {
|
|
@@ -63590,7 +63685,7 @@ function requireClientsdkClientcore () {
|
|
|
63590
63685
|
inductionVariable = inductionVariable + 1 | 0;
|
|
63591
63686
|
var tmp$ret$0;
|
|
63592
63687
|
// Inline function 'vonage.Companion.getSessionErrorReason.<anonymous>' call
|
|
63593
|
-
tmp$ret$0 = element.
|
|
63688
|
+
tmp$ret$0 = element.h3c_1.equals(reason);
|
|
63594
63689
|
if (tmp$ret$0) {
|
|
63595
63690
|
tmp$ret$1 = element;
|
|
63596
63691
|
break $l$block;
|
|
@@ -63638,10 +63733,10 @@ function requireClientsdkClientcore () {
|
|
|
63638
63733
|
}
|
|
63639
63734
|
function SessionErrorReasonJS(name, ordinal, reason) {
|
|
63640
63735
|
Enum.call(this, name, ordinal);
|
|
63641
|
-
this.
|
|
63736
|
+
this.h3c_1 = reason;
|
|
63642
63737
|
}
|
|
63643
63738
|
SessionErrorReasonJS.prototype.z29 = function () {
|
|
63644
|
-
return this.
|
|
63739
|
+
return this.h3c_1;
|
|
63645
63740
|
};
|
|
63646
63741
|
SessionErrorReasonJS.$metadata$ = classMeta('SessionErrorReasonJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
63647
63742
|
Object.defineProperty(SessionErrorReasonJS.prototype, 'reason', {
|
|
@@ -64205,40 +64300,40 @@ function requireClientsdkClientcore () {
|
|
|
64205
64300
|
}
|
|
64206
64301
|
IVoiceClientJS.$metadata$ = interfaceMeta('IVoiceClientJS', [ICoreClientJS]);
|
|
64207
64302
|
function VoiceInviteFromInfoJS(id, type) {
|
|
64208
|
-
this.
|
|
64209
|
-
this.
|
|
64303
|
+
this.m3c_1 = id;
|
|
64304
|
+
this.n3c_1 = type;
|
|
64210
64305
|
}
|
|
64211
64306
|
VoiceInviteFromInfoJS.prototype.v1k = function () {
|
|
64212
|
-
return this.
|
|
64307
|
+
return this.m3c_1;
|
|
64213
64308
|
};
|
|
64214
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64215
|
-
return this.
|
|
64309
|
+
VoiceInviteFromInfoJS.prototype.l2q = function () {
|
|
64310
|
+
return this.n3c_1;
|
|
64216
64311
|
};
|
|
64217
64312
|
VoiceInviteFromInfoJS.prototype.component1 = function () {
|
|
64218
|
-
return this.
|
|
64313
|
+
return this.m3c_1;
|
|
64219
64314
|
};
|
|
64220
64315
|
VoiceInviteFromInfoJS.prototype.component2 = function () {
|
|
64221
|
-
return this.
|
|
64316
|
+
return this.n3c_1;
|
|
64222
64317
|
};
|
|
64223
64318
|
VoiceInviteFromInfoJS.prototype.copy = function (id, type) {
|
|
64224
|
-
return this.
|
|
64319
|
+
return this.o3c(id === void 1 ? this.m3c_1 : id, type === void 1 ? this.n3c_1 : type);
|
|
64225
64320
|
};
|
|
64226
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64321
|
+
VoiceInviteFromInfoJS.prototype.o3c = function (id, type) {
|
|
64227
64322
|
return new VoiceInviteFromInfoJS(id, type);
|
|
64228
64323
|
};
|
|
64229
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64324
|
+
VoiceInviteFromInfoJS.prototype.p3c = function (id, type, $mask0, $handler) {
|
|
64230
64325
|
if (!(($mask0 & 1) === 0))
|
|
64231
|
-
id = this.
|
|
64326
|
+
id = this.m3c_1;
|
|
64232
64327
|
if (!(($mask0 & 2) === 0))
|
|
64233
|
-
type = this.
|
|
64234
|
-
return this.
|
|
64328
|
+
type = this.n3c_1;
|
|
64329
|
+
return this.o3c(id, type);
|
|
64235
64330
|
};
|
|
64236
64331
|
VoiceInviteFromInfoJS.prototype.toString = function () {
|
|
64237
|
-
return 'VoiceInviteFromInfoJS(id=' + this.
|
|
64332
|
+
return 'VoiceInviteFromInfoJS(id=' + this.m3c_1 + ', type=' + this.n3c_1 + ')';
|
|
64238
64333
|
};
|
|
64239
64334
|
VoiceInviteFromInfoJS.prototype.hashCode = function () {
|
|
64240
|
-
var result = this.
|
|
64241
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
64335
|
+
var result = this.m3c_1 == null ? 0 : getStringHashCode(this.m3c_1);
|
|
64336
|
+
result = imul(result, 31) + getStringHashCode(this.n3c_1) | 0;
|
|
64242
64337
|
return result;
|
|
64243
64338
|
};
|
|
64244
64339
|
VoiceInviteFromInfoJS.prototype.equals = function (other) {
|
|
@@ -64247,9 +64342,9 @@ function requireClientsdkClientcore () {
|
|
|
64247
64342
|
if (!(other instanceof VoiceInviteFromInfoJS))
|
|
64248
64343
|
return false;
|
|
64249
64344
|
var tmp0_other_with_cast = other instanceof VoiceInviteFromInfoJS ? other : THROW_CCE();
|
|
64250
|
-
if (!(this.
|
|
64345
|
+
if (!(this.m3c_1 == tmp0_other_with_cast.m3c_1))
|
|
64251
64346
|
return false;
|
|
64252
|
-
if (!(this.
|
|
64347
|
+
if (!(this.n3c_1 === tmp0_other_with_cast.n3c_1))
|
|
64253
64348
|
return false;
|
|
64254
64349
|
return true;
|
|
64255
64350
|
};
|
|
@@ -64260,7 +64355,7 @@ function requireClientsdkClientcore () {
|
|
|
64260
64355
|
});
|
|
64261
64356
|
Object.defineProperty(VoiceInviteFromInfoJS.prototype, 'type', {
|
|
64262
64357
|
configurable: true,
|
|
64263
|
-
get: VoiceInviteFromInfoJS.prototype.
|
|
64358
|
+
get: VoiceInviteFromInfoJS.prototype.l2q
|
|
64264
64359
|
});
|
|
64265
64360
|
function LegStatusJS_RINGING_getInstance() {
|
|
64266
64361
|
LegStatusJS_initEntries();
|
|
@@ -64313,64 +64408,64 @@ function requireClientsdkClientcore () {
|
|
|
64313
64408
|
var responseBody_0 = responseBody === void 1 ? null : responseBody;
|
|
64314
64409
|
var cause_0 = cause === void 1 ? null : cause;
|
|
64315
64410
|
extendThrowable(this, void 1, void 1);
|
|
64316
|
-
this.
|
|
64317
|
-
this.
|
|
64318
|
-
this.
|
|
64319
|
-
this.
|
|
64411
|
+
this.q3c_1 = message_0;
|
|
64412
|
+
this.r3c_1 = responseCode_0;
|
|
64413
|
+
this.s3c_1 = responseBody_0;
|
|
64414
|
+
this.t3c_1 = cause_0;
|
|
64320
64415
|
captureStack(this, HttpClientErrorJS);
|
|
64321
64416
|
}
|
|
64322
64417
|
HttpClientErrorJS.prototype.g1 = function () {
|
|
64323
|
-
return this.
|
|
64418
|
+
return this.q3c_1;
|
|
64324
64419
|
};
|
|
64325
|
-
HttpClientErrorJS.prototype.
|
|
64326
|
-
return this.
|
|
64420
|
+
HttpClientErrorJS.prototype.u3c = function () {
|
|
64421
|
+
return this.r3c_1;
|
|
64327
64422
|
};
|
|
64328
|
-
HttpClientErrorJS.prototype.
|
|
64329
|
-
return this.
|
|
64423
|
+
HttpClientErrorJS.prototype.v3c = function () {
|
|
64424
|
+
return this.s3c_1;
|
|
64330
64425
|
};
|
|
64331
64426
|
HttpClientErrorJS.prototype.h1 = function () {
|
|
64332
|
-
return this.
|
|
64427
|
+
return this.t3c_1;
|
|
64333
64428
|
};
|
|
64334
|
-
HttpClientErrorJS.prototype.
|
|
64335
|
-
return new HTTPClientError(this.
|
|
64429
|
+
HttpClientErrorJS.prototype.w3c = function () {
|
|
64430
|
+
return new HTTPClientError(this.q3c_1, this.r3c_1, this.s3c_1, this.t3c_1);
|
|
64336
64431
|
};
|
|
64337
64432
|
HttpClientErrorJS.prototype.component1 = function () {
|
|
64338
|
-
return this.
|
|
64433
|
+
return this.q3c_1;
|
|
64339
64434
|
};
|
|
64340
64435
|
HttpClientErrorJS.prototype.component2 = function () {
|
|
64341
|
-
return this.
|
|
64436
|
+
return this.r3c_1;
|
|
64342
64437
|
};
|
|
64343
64438
|
HttpClientErrorJS.prototype.component3 = function () {
|
|
64344
|
-
return this.
|
|
64439
|
+
return this.s3c_1;
|
|
64345
64440
|
};
|
|
64346
64441
|
HttpClientErrorJS.prototype.component4 = function () {
|
|
64347
|
-
return this.
|
|
64442
|
+
return this.t3c_1;
|
|
64348
64443
|
};
|
|
64349
64444
|
HttpClientErrorJS.prototype.copy = function (message, responseCode, responseBody, cause) {
|
|
64350
|
-
return this.
|
|
64445
|
+
return this.x3c(message === void 1 ? this.q3c_1 : message, responseCode === void 1 ? this.r3c_1 : responseCode, responseBody === void 1 ? this.s3c_1 : responseBody, cause === void 1 ? this.t3c_1 : cause);
|
|
64351
64446
|
};
|
|
64352
|
-
HttpClientErrorJS.prototype.
|
|
64447
|
+
HttpClientErrorJS.prototype.x3c = function (message, responseCode, responseBody, cause) {
|
|
64353
64448
|
return new HttpClientErrorJS(message, responseCode, responseBody, cause);
|
|
64354
64449
|
};
|
|
64355
|
-
HttpClientErrorJS.prototype.
|
|
64450
|
+
HttpClientErrorJS.prototype.y3c = function (message, responseCode, responseBody, cause, $mask0, $handler) {
|
|
64356
64451
|
if (!(($mask0 & 1) === 0))
|
|
64357
|
-
message = this.
|
|
64452
|
+
message = this.q3c_1;
|
|
64358
64453
|
if (!(($mask0 & 2) === 0))
|
|
64359
|
-
responseCode = this.
|
|
64454
|
+
responseCode = this.r3c_1;
|
|
64360
64455
|
if (!(($mask0 & 4) === 0))
|
|
64361
|
-
responseBody = this.
|
|
64456
|
+
responseBody = this.s3c_1;
|
|
64362
64457
|
if (!(($mask0 & 8) === 0))
|
|
64363
|
-
cause = this.
|
|
64364
|
-
return this.
|
|
64458
|
+
cause = this.t3c_1;
|
|
64459
|
+
return this.x3c(message, responseCode, responseBody, cause);
|
|
64365
64460
|
};
|
|
64366
64461
|
HttpClientErrorJS.prototype.toString = function () {
|
|
64367
|
-
return 'HttpClientErrorJS(message=' + this.
|
|
64462
|
+
return 'HttpClientErrorJS(message=' + this.q3c_1 + ', responseCode=' + this.r3c_1 + ', responseBody=' + this.s3c_1 + ', cause=' + this.t3c_1 + ')';
|
|
64368
64463
|
};
|
|
64369
64464
|
HttpClientErrorJS.prototype.hashCode = function () {
|
|
64370
|
-
var result = this.
|
|
64371
|
-
result = imul(result, 31) + (this.
|
|
64372
|
-
result = imul(result, 31) + (this.
|
|
64373
|
-
result = imul(result, 31) + (this.
|
|
64465
|
+
var result = this.q3c_1 == null ? 0 : getStringHashCode(this.q3c_1);
|
|
64466
|
+
result = imul(result, 31) + (this.r3c_1 == null ? 0 : this.r3c_1) | 0;
|
|
64467
|
+
result = imul(result, 31) + (this.s3c_1 == null ? 0 : getStringHashCode(this.s3c_1)) | 0;
|
|
64468
|
+
result = imul(result, 31) + (this.t3c_1 == null ? 0 : hashCode(this.t3c_1)) | 0;
|
|
64374
64469
|
return result;
|
|
64375
64470
|
};
|
|
64376
64471
|
HttpClientErrorJS.prototype.equals = function (other) {
|
|
@@ -64379,13 +64474,13 @@ function requireClientsdkClientcore () {
|
|
|
64379
64474
|
if (!(other instanceof HttpClientErrorJS))
|
|
64380
64475
|
return false;
|
|
64381
64476
|
var tmp0_other_with_cast = other instanceof HttpClientErrorJS ? other : THROW_CCE();
|
|
64382
|
-
if (!(this.
|
|
64477
|
+
if (!(this.q3c_1 == tmp0_other_with_cast.q3c_1))
|
|
64383
64478
|
return false;
|
|
64384
|
-
if (!(this.
|
|
64479
|
+
if (!(this.r3c_1 == tmp0_other_with_cast.r3c_1))
|
|
64385
64480
|
return false;
|
|
64386
|
-
if (!(this.
|
|
64481
|
+
if (!(this.s3c_1 == tmp0_other_with_cast.s3c_1))
|
|
64387
64482
|
return false;
|
|
64388
|
-
if (!equals(this.
|
|
64483
|
+
if (!equals(this.t3c_1, tmp0_other_with_cast.t3c_1))
|
|
64389
64484
|
return false;
|
|
64390
64485
|
return true;
|
|
64391
64486
|
};
|
|
@@ -64398,11 +64493,11 @@ function requireClientsdkClientcore () {
|
|
|
64398
64493
|
});
|
|
64399
64494
|
Object.defineProperty(HttpClientErrorJS.prototype, 'responseCode', {
|
|
64400
64495
|
configurable: true,
|
|
64401
|
-
get: HttpClientErrorJS.prototype.
|
|
64496
|
+
get: HttpClientErrorJS.prototype.u3c
|
|
64402
64497
|
});
|
|
64403
64498
|
Object.defineProperty(HttpClientErrorJS.prototype, 'responseBody', {
|
|
64404
64499
|
configurable: true,
|
|
64405
|
-
get: HttpClientErrorJS.prototype.
|
|
64500
|
+
get: HttpClientErrorJS.prototype.v3c
|
|
64406
64501
|
});
|
|
64407
64502
|
Object.defineProperty(HttpClientErrorJS.prototype, 'cause', {
|
|
64408
64503
|
configurable: true,
|
|
@@ -64412,7 +64507,7 @@ function requireClientsdkClientcore () {
|
|
|
64412
64507
|
});
|
|
64413
64508
|
Object.defineProperty(HttpClientErrorJS.prototype, 'coreError', {
|
|
64414
64509
|
configurable: true,
|
|
64415
|
-
get: HttpClientErrorJS.prototype.
|
|
64510
|
+
get: HttpClientErrorJS.prototype.w3c
|
|
64416
64511
|
});
|
|
64417
64512
|
function get_SOCKET_CONNECTED() {
|
|
64418
64513
|
return SOCKET_CONNECTED;
|
|
@@ -64443,20 +64538,20 @@ function requireClientsdkClientcore () {
|
|
|
64443
64538
|
}
|
|
64444
64539
|
var REASON_PING_TIMEOUT;
|
|
64445
64540
|
var CancelReasonJS_RemoteCancel_instance;
|
|
64446
|
-
var
|
|
64447
|
-
var
|
|
64541
|
+
var CancelReasonJS_AnsweredElsewhere_instance;
|
|
64542
|
+
var CancelReasonJS_RejectedElsewhere_instance;
|
|
64448
64543
|
var CancelReasonJS_RemoteTimeout_instance;
|
|
64449
64544
|
function values_9() {
|
|
64450
|
-
return [CancelReasonJS_RemoteCancel_getInstance(),
|
|
64545
|
+
return [CancelReasonJS_RemoteCancel_getInstance(), CancelReasonJS_AnsweredElsewhere_getInstance(), CancelReasonJS_RejectedElsewhere_getInstance(), CancelReasonJS_RemoteTimeout_getInstance()];
|
|
64451
64546
|
}
|
|
64452
64547
|
function valueOf_9(value) {
|
|
64453
64548
|
switch (value) {
|
|
64454
64549
|
case 'RemoteCancel':
|
|
64455
64550
|
return CancelReasonJS_RemoteCancel_getInstance();
|
|
64456
|
-
case '
|
|
64457
|
-
return
|
|
64458
|
-
case '
|
|
64459
|
-
return
|
|
64551
|
+
case 'AnsweredElsewhere':
|
|
64552
|
+
return CancelReasonJS_AnsweredElsewhere_getInstance();
|
|
64553
|
+
case 'RejectedElsewhere':
|
|
64554
|
+
return CancelReasonJS_RejectedElsewhere_getInstance();
|
|
64460
64555
|
case 'RemoteTimeout':
|
|
64461
64556
|
return CancelReasonJS_RemoteTimeout_getInstance();
|
|
64462
64557
|
default:
|
|
@@ -64471,16 +64566,16 @@ function requireClientsdkClientcore () {
|
|
|
64471
64566
|
return Unit_getInstance();
|
|
64472
64567
|
CancelReasonJS_entriesInitialized = true;
|
|
64473
64568
|
CancelReasonJS_RemoteCancel_instance = new CancelReasonJS('RemoteCancel', 0, 'RemoteCancel');
|
|
64474
|
-
|
|
64475
|
-
|
|
64569
|
+
CancelReasonJS_AnsweredElsewhere_instance = new CancelReasonJS('AnsweredElsewhere', 1, 'AnsweredElsewhere');
|
|
64570
|
+
CancelReasonJS_RejectedElsewhere_instance = new CancelReasonJS('RejectedElsewhere', 2, 'RejectedElsewhere');
|
|
64476
64571
|
CancelReasonJS_RemoteTimeout_instance = new CancelReasonJS('RemoteTimeout', 3, 'RemoteTimeout');
|
|
64477
64572
|
}
|
|
64478
64573
|
function CancelReasonJS(name, ordinal, reason) {
|
|
64479
64574
|
Enum.call(this, name, ordinal);
|
|
64480
|
-
this.
|
|
64575
|
+
this.b3d_1 = reason;
|
|
64481
64576
|
}
|
|
64482
64577
|
CancelReasonJS.prototype.z29 = function () {
|
|
64483
|
-
return this.
|
|
64578
|
+
return this.b3d_1;
|
|
64484
64579
|
};
|
|
64485
64580
|
CancelReasonJS.$metadata$ = classMeta('CancelReasonJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
64486
64581
|
Object.defineProperty(CancelReasonJS.prototype, 'reason', {
|
|
@@ -64496,17 +64591,23 @@ function requireClientsdkClientcore () {
|
|
|
64496
64591
|
get: CancelReasonJS.prototype.pe
|
|
64497
64592
|
});
|
|
64498
64593
|
function RTCQualityJS(callQuality) {
|
|
64499
|
-
this.
|
|
64500
|
-
this.
|
|
64501
|
-
this.
|
|
64502
|
-
this.
|
|
64503
|
-
this.
|
|
64504
|
-
this.
|
|
64505
|
-
this.
|
|
64506
|
-
this.
|
|
64507
|
-
this.
|
|
64508
|
-
this.
|
|
64594
|
+
this.c3d_1 = callQuality;
|
|
64595
|
+
this.d3d_1 = this.c3d_1.s2t_1;
|
|
64596
|
+
this.e3d_1 = this.c3d_1.t2t_1;
|
|
64597
|
+
this.f3d_1 = this.c3d_1.u2t_1;
|
|
64598
|
+
this.g3d_1 = this.c3d_1.v2t_1;
|
|
64599
|
+
this.h3d_1 = this.c3d_1.w2t_1;
|
|
64600
|
+
this.i3d_1 = this.c3d_1.x2t_1;
|
|
64601
|
+
this.j3d_1 = this.c3d_1.y2t_1;
|
|
64602
|
+
this.k3d_1 = this.c3d_1.z2t_1;
|
|
64603
|
+
this.l3d_1 = this.c3d_1.a2u_1;
|
|
64509
64604
|
}
|
|
64605
|
+
RTCQualityJS.prototype.m3d = function () {
|
|
64606
|
+
return this.d3d_1;
|
|
64607
|
+
};
|
|
64608
|
+
RTCQualityJS.prototype.n3d = function () {
|
|
64609
|
+
return this.e3d_1;
|
|
64610
|
+
};
|
|
64510
64611
|
RTCQualityJS.prototype.o3d = function () {
|
|
64511
64612
|
return this.f3d_1;
|
|
64512
64613
|
};
|
|
@@ -64528,28 +64629,22 @@ function requireClientsdkClientcore () {
|
|
|
64528
64629
|
RTCQualityJS.prototype.u3d = function () {
|
|
64529
64630
|
return this.l3d_1;
|
|
64530
64631
|
};
|
|
64531
|
-
RTCQualityJS.prototype.v3d = function () {
|
|
64532
|
-
return this.m3d_1;
|
|
64533
|
-
};
|
|
64534
|
-
RTCQualityJS.prototype.w3d = function () {
|
|
64535
|
-
return this.n3d_1;
|
|
64536
|
-
};
|
|
64537
64632
|
RTCQualityJS.prototype.copy = function (callQuality) {
|
|
64538
|
-
return this.
|
|
64633
|
+
return this.v3d(callQuality === void 1 ? this.c3d_1 : callQuality);
|
|
64539
64634
|
};
|
|
64540
|
-
RTCQualityJS.prototype.
|
|
64635
|
+
RTCQualityJS.prototype.v3d = function (callQuality) {
|
|
64541
64636
|
return new RTCQualityJS(callQuality);
|
|
64542
64637
|
};
|
|
64543
|
-
RTCQualityJS.prototype.
|
|
64638
|
+
RTCQualityJS.prototype.w3d = function (callQuality, $mask0, $handler) {
|
|
64544
64639
|
if (!(($mask0 & 1) === 0))
|
|
64545
|
-
callQuality = this.
|
|
64546
|
-
return this.
|
|
64640
|
+
callQuality = this.c3d_1;
|
|
64641
|
+
return this.v3d(callQuality);
|
|
64547
64642
|
};
|
|
64548
64643
|
RTCQualityJS.prototype.toString = function () {
|
|
64549
|
-
return 'RTCQualityJS(callQuality=' + this.
|
|
64644
|
+
return 'RTCQualityJS(callQuality=' + this.c3d_1 + ')';
|
|
64550
64645
|
};
|
|
64551
64646
|
RTCQualityJS.prototype.hashCode = function () {
|
|
64552
|
-
return this.
|
|
64647
|
+
return this.c3d_1.hashCode();
|
|
64553
64648
|
};
|
|
64554
64649
|
RTCQualityJS.prototype.equals = function (other) {
|
|
64555
64650
|
if (this === other)
|
|
@@ -64557,59 +64652,65 @@ function requireClientsdkClientcore () {
|
|
|
64557
64652
|
if (!(other instanceof RTCQualityJS))
|
|
64558
64653
|
return false;
|
|
64559
64654
|
var tmp0_other_with_cast = other instanceof RTCQualityJS ? other : THROW_CCE();
|
|
64560
|
-
if (!this.
|
|
64655
|
+
if (!this.c3d_1.equals(tmp0_other_with_cast.c3d_1))
|
|
64561
64656
|
return false;
|
|
64562
64657
|
return true;
|
|
64563
64658
|
};
|
|
64564
64659
|
RTCQualityJS.$metadata$ = classMeta('RTCQualityJS');
|
|
64565
64660
|
Object.defineProperty(RTCQualityJS.prototype, 'mos_score', {
|
|
64566
64661
|
configurable: true,
|
|
64567
|
-
get: RTCQualityJS.prototype.
|
|
64662
|
+
get: RTCQualityJS.prototype.m3d
|
|
64568
64663
|
});
|
|
64569
64664
|
Object.defineProperty(RTCQualityJS.prototype, 'quality_percentage', {
|
|
64570
64665
|
configurable: true,
|
|
64571
|
-
get: RTCQualityJS.prototype.
|
|
64666
|
+
get: RTCQualityJS.prototype.n3d
|
|
64572
64667
|
});
|
|
64573
64668
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_min_var', {
|
|
64574
64669
|
configurable: true,
|
|
64575
|
-
get: RTCQualityJS.prototype.
|
|
64670
|
+
get: RTCQualityJS.prototype.o3d
|
|
64576
64671
|
});
|
|
64577
64672
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_max_var', {
|
|
64578
64673
|
configurable: true,
|
|
64579
|
-
get: RTCQualityJS.prototype.
|
|
64674
|
+
get: RTCQualityJS.prototype.p3d
|
|
64580
64675
|
});
|
|
64581
64676
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_loss_rate', {
|
|
64582
64677
|
configurable: true,
|
|
64583
|
-
get: RTCQualityJS.prototype.
|
|
64678
|
+
get: RTCQualityJS.prototype.q3d
|
|
64584
64679
|
});
|
|
64585
64680
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_burst_rate', {
|
|
64586
64681
|
configurable: true,
|
|
64587
|
-
get: RTCQualityJS.prototype.
|
|
64682
|
+
get: RTCQualityJS.prototype.r3d
|
|
64588
64683
|
});
|
|
64589
64684
|
Object.defineProperty(RTCQualityJS.prototype, 'flaw_total', {
|
|
64590
64685
|
configurable: true,
|
|
64591
|
-
get: RTCQualityJS.prototype.
|
|
64686
|
+
get: RTCQualityJS.prototype.s3d
|
|
64592
64687
|
});
|
|
64593
64688
|
Object.defineProperty(RTCQualityJS.prototype, 'packet_cnt', {
|
|
64594
64689
|
configurable: true,
|
|
64595
|
-
get: RTCQualityJS.prototype.
|
|
64690
|
+
get: RTCQualityJS.prototype.t3d
|
|
64596
64691
|
});
|
|
64597
64692
|
Object.defineProperty(RTCQualityJS.prototype, 'packet_loss_perc', {
|
|
64598
64693
|
configurable: true,
|
|
64599
|
-
get: RTCQualityJS.prototype.
|
|
64694
|
+
get: RTCQualityJS.prototype.u3d
|
|
64600
64695
|
});
|
|
64601
64696
|
function RTCStatsJS(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId) {
|
|
64602
|
-
this.
|
|
64603
|
-
this.
|
|
64604
|
-
this.
|
|
64605
|
-
this.
|
|
64606
|
-
this.
|
|
64607
|
-
this.
|
|
64608
|
-
this.
|
|
64609
|
-
this.
|
|
64610
|
-
this.
|
|
64611
|
-
this.
|
|
64697
|
+
this.x3d_1 = audioRecvPackets;
|
|
64698
|
+
this.y3d_1 = audioRecvPacketsLost;
|
|
64699
|
+
this.z3d_1 = audioRecvBytes;
|
|
64700
|
+
this.a3e_1 = audioRecvJitter;
|
|
64701
|
+
this.b3e_1 = audioSentPackets;
|
|
64702
|
+
this.c3e_1 = audioSentBytes;
|
|
64703
|
+
this.d3e_1 = audioSentPacketsLost;
|
|
64704
|
+
this.e3e_1 = audioRtt;
|
|
64705
|
+
this.f3e_1 = audioSentJitter;
|
|
64706
|
+
this.g3e_1 = legId;
|
|
64612
64707
|
}
|
|
64708
|
+
RTCStatsJS.prototype.h3e = function () {
|
|
64709
|
+
return this.x3d_1;
|
|
64710
|
+
};
|
|
64711
|
+
RTCStatsJS.prototype.i3e = function () {
|
|
64712
|
+
return this.y3d_1;
|
|
64713
|
+
};
|
|
64613
64714
|
RTCStatsJS.prototype.j3e = function () {
|
|
64614
64715
|
return this.z3d_1;
|
|
64615
64716
|
};
|
|
@@ -64631,88 +64732,82 @@ function requireClientsdkClientcore () {
|
|
|
64631
64732
|
RTCStatsJS.prototype.p3e = function () {
|
|
64632
64733
|
return this.f3e_1;
|
|
64633
64734
|
};
|
|
64634
|
-
RTCStatsJS.prototype.q3e = function () {
|
|
64635
|
-
return this.g3e_1;
|
|
64636
|
-
};
|
|
64637
|
-
RTCStatsJS.prototype.r3e = function () {
|
|
64638
|
-
return this.h3e_1;
|
|
64639
|
-
};
|
|
64640
64735
|
RTCStatsJS.prototype.g1k = function () {
|
|
64641
|
-
return this.
|
|
64736
|
+
return this.g3e_1;
|
|
64642
64737
|
};
|
|
64643
64738
|
RTCStatsJS.prototype.component1 = function () {
|
|
64644
|
-
return this.
|
|
64739
|
+
return this.x3d_1;
|
|
64645
64740
|
};
|
|
64646
64741
|
RTCStatsJS.prototype.component2 = function () {
|
|
64647
|
-
return this.
|
|
64742
|
+
return this.y3d_1;
|
|
64648
64743
|
};
|
|
64649
64744
|
RTCStatsJS.prototype.component3 = function () {
|
|
64650
|
-
return this.
|
|
64745
|
+
return this.z3d_1;
|
|
64651
64746
|
};
|
|
64652
64747
|
RTCStatsJS.prototype.component4 = function () {
|
|
64653
|
-
return this.
|
|
64748
|
+
return this.a3e_1;
|
|
64654
64749
|
};
|
|
64655
64750
|
RTCStatsJS.prototype.component5 = function () {
|
|
64656
|
-
return this.
|
|
64751
|
+
return this.b3e_1;
|
|
64657
64752
|
};
|
|
64658
64753
|
RTCStatsJS.prototype.component6 = function () {
|
|
64659
|
-
return this.
|
|
64754
|
+
return this.c3e_1;
|
|
64660
64755
|
};
|
|
64661
64756
|
RTCStatsJS.prototype.component7 = function () {
|
|
64662
|
-
return this.
|
|
64757
|
+
return this.d3e_1;
|
|
64663
64758
|
};
|
|
64664
64759
|
RTCStatsJS.prototype.component8 = function () {
|
|
64665
|
-
return this.
|
|
64760
|
+
return this.e3e_1;
|
|
64666
64761
|
};
|
|
64667
64762
|
RTCStatsJS.prototype.component9 = function () {
|
|
64668
|
-
return this.
|
|
64763
|
+
return this.f3e_1;
|
|
64669
64764
|
};
|
|
64670
64765
|
RTCStatsJS.prototype.component10 = function () {
|
|
64671
|
-
return this.
|
|
64766
|
+
return this.g3e_1;
|
|
64672
64767
|
};
|
|
64673
64768
|
RTCStatsJS.prototype.copy = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId) {
|
|
64674
|
-
return this.
|
|
64769
|
+
return this.q3e(audioRecvPackets === void 1 ? this.x3d_1 : audioRecvPackets, audioRecvPacketsLost === void 1 ? this.y3d_1 : audioRecvPacketsLost, audioRecvBytes === void 1 ? this.z3d_1 : audioRecvBytes, audioRecvJitter === void 1 ? this.a3e_1 : audioRecvJitter, audioSentPackets === void 1 ? this.b3e_1 : audioSentPackets, audioSentBytes === void 1 ? this.c3e_1 : audioSentBytes, audioSentPacketsLost === void 1 ? this.d3e_1 : audioSentPacketsLost, audioRtt === void 1 ? this.e3e_1 : audioRtt, audioSentJitter === void 1 ? this.f3e_1 : audioSentJitter, legId === void 1 ? this.g3e_1 : legId);
|
|
64675
64770
|
};
|
|
64676
|
-
RTCStatsJS.prototype.
|
|
64771
|
+
RTCStatsJS.prototype.q3e = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId) {
|
|
64677
64772
|
return new RTCStatsJS(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId);
|
|
64678
64773
|
};
|
|
64679
|
-
RTCStatsJS.prototype.
|
|
64774
|
+
RTCStatsJS.prototype.r3e = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId, $mask0, $handler) {
|
|
64680
64775
|
if (!(($mask0 & 1) === 0))
|
|
64681
|
-
audioRecvPackets = this.
|
|
64776
|
+
audioRecvPackets = this.x3d_1;
|
|
64682
64777
|
if (!(($mask0 & 2) === 0))
|
|
64683
|
-
audioRecvPacketsLost = this.
|
|
64778
|
+
audioRecvPacketsLost = this.y3d_1;
|
|
64684
64779
|
if (!(($mask0 & 4) === 0))
|
|
64685
|
-
audioRecvBytes = this.
|
|
64780
|
+
audioRecvBytes = this.z3d_1;
|
|
64686
64781
|
if (!(($mask0 & 8) === 0))
|
|
64687
|
-
audioRecvJitter = this.
|
|
64782
|
+
audioRecvJitter = this.a3e_1;
|
|
64688
64783
|
if (!(($mask0 & 16) === 0))
|
|
64689
|
-
audioSentPackets = this.
|
|
64784
|
+
audioSentPackets = this.b3e_1;
|
|
64690
64785
|
if (!(($mask0 & 32) === 0))
|
|
64691
|
-
audioSentBytes = this.
|
|
64786
|
+
audioSentBytes = this.c3e_1;
|
|
64692
64787
|
if (!(($mask0 & 64) === 0))
|
|
64693
|
-
audioSentPacketsLost = this.
|
|
64788
|
+
audioSentPacketsLost = this.d3e_1;
|
|
64694
64789
|
if (!(($mask0 & 128) === 0))
|
|
64695
|
-
audioRtt = this.
|
|
64790
|
+
audioRtt = this.e3e_1;
|
|
64696
64791
|
if (!(($mask0 & 256) === 0))
|
|
64697
|
-
audioSentJitter = this.
|
|
64792
|
+
audioSentJitter = this.f3e_1;
|
|
64698
64793
|
if (!(($mask0 & 512) === 0))
|
|
64699
|
-
legId = this.
|
|
64700
|
-
return this.
|
|
64794
|
+
legId = this.g3e_1;
|
|
64795
|
+
return this.q3e(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId);
|
|
64701
64796
|
};
|
|
64702
64797
|
RTCStatsJS.prototype.toString = function () {
|
|
64703
|
-
return 'RTCStatsJS(audioRecvPackets=' + toString(this.
|
|
64798
|
+
return 'RTCStatsJS(audioRecvPackets=' + toString(this.x3d_1) + ', audioRecvPacketsLost=' + toString(this.y3d_1) + ', audioRecvBytes=' + toString(this.z3d_1) + ', audioRecvJitter=' + toString(this.a3e_1) + ', audioSentPackets=' + toString(this.b3e_1) + ', audioSentBytes=' + toString(this.c3e_1) + ', audioSentPacketsLost=' + toString(this.d3e_1) + ', audioRtt=' + toString(this.e3e_1) + ', audioSentJitter=' + toString(this.f3e_1) + ', legId=' + this.g3e_1 + ')';
|
|
64704
64799
|
};
|
|
64705
64800
|
RTCStatsJS.prototype.hashCode = function () {
|
|
64706
|
-
var result = this.
|
|
64801
|
+
var result = this.x3d_1 == null ? 0 : hashCode(this.x3d_1);
|
|
64802
|
+
result = imul(result, 31) + (this.y3d_1 == null ? 0 : hashCode(this.y3d_1)) | 0;
|
|
64803
|
+
result = imul(result, 31) + (this.z3d_1 == null ? 0 : hashCode(this.z3d_1)) | 0;
|
|
64707
64804
|
result = imul(result, 31) + (this.a3e_1 == null ? 0 : hashCode(this.a3e_1)) | 0;
|
|
64708
64805
|
result = imul(result, 31) + (this.b3e_1 == null ? 0 : hashCode(this.b3e_1)) | 0;
|
|
64709
64806
|
result = imul(result, 31) + (this.c3e_1 == null ? 0 : hashCode(this.c3e_1)) | 0;
|
|
64710
64807
|
result = imul(result, 31) + (this.d3e_1 == null ? 0 : hashCode(this.d3e_1)) | 0;
|
|
64711
64808
|
result = imul(result, 31) + (this.e3e_1 == null ? 0 : hashCode(this.e3e_1)) | 0;
|
|
64712
64809
|
result = imul(result, 31) + (this.f3e_1 == null ? 0 : hashCode(this.f3e_1)) | 0;
|
|
64713
|
-
result = imul(result, 31) + (this.g3e_1
|
|
64714
|
-
result = imul(result, 31) + (this.h3e_1 == null ? 0 : hashCode(this.h3e_1)) | 0;
|
|
64715
|
-
result = imul(result, 31) + getStringHashCode(this.i3e_1) | 0;
|
|
64810
|
+
result = imul(result, 31) + getStringHashCode(this.g3e_1) | 0;
|
|
64716
64811
|
return result;
|
|
64717
64812
|
};
|
|
64718
64813
|
RTCStatsJS.prototype.equals = function (other) {
|
|
@@ -64721,6 +64816,10 @@ function requireClientsdkClientcore () {
|
|
|
64721
64816
|
if (!(other instanceof RTCStatsJS))
|
|
64722
64817
|
return false;
|
|
64723
64818
|
var tmp0_other_with_cast = other instanceof RTCStatsJS ? other : THROW_CCE();
|
|
64819
|
+
if (!equals(this.x3d_1, tmp0_other_with_cast.x3d_1))
|
|
64820
|
+
return false;
|
|
64821
|
+
if (!equals(this.y3d_1, tmp0_other_with_cast.y3d_1))
|
|
64822
|
+
return false;
|
|
64724
64823
|
if (!equals(this.z3d_1, tmp0_other_with_cast.z3d_1))
|
|
64725
64824
|
return false;
|
|
64726
64825
|
if (!equals(this.a3e_1, tmp0_other_with_cast.a3e_1))
|
|
@@ -64735,50 +64834,46 @@ function requireClientsdkClientcore () {
|
|
|
64735
64834
|
return false;
|
|
64736
64835
|
if (!equals(this.f3e_1, tmp0_other_with_cast.f3e_1))
|
|
64737
64836
|
return false;
|
|
64738
|
-
if (!
|
|
64739
|
-
return false;
|
|
64740
|
-
if (!equals(this.h3e_1, tmp0_other_with_cast.h3e_1))
|
|
64741
|
-
return false;
|
|
64742
|
-
if (!(this.i3e_1 === tmp0_other_with_cast.i3e_1))
|
|
64837
|
+
if (!(this.g3e_1 === tmp0_other_with_cast.g3e_1))
|
|
64743
64838
|
return false;
|
|
64744
64839
|
return true;
|
|
64745
64840
|
};
|
|
64746
64841
|
RTCStatsJS.$metadata$ = classMeta('RTCStatsJS');
|
|
64747
64842
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvPackets', {
|
|
64748
64843
|
configurable: true,
|
|
64749
|
-
get: RTCStatsJS.prototype.
|
|
64844
|
+
get: RTCStatsJS.prototype.h3e
|
|
64750
64845
|
});
|
|
64751
64846
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvPacketsLost', {
|
|
64752
64847
|
configurable: true,
|
|
64753
|
-
get: RTCStatsJS.prototype.
|
|
64848
|
+
get: RTCStatsJS.prototype.i3e
|
|
64754
64849
|
});
|
|
64755
64850
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvBytes', {
|
|
64756
64851
|
configurable: true,
|
|
64757
|
-
get: RTCStatsJS.prototype.
|
|
64852
|
+
get: RTCStatsJS.prototype.j3e
|
|
64758
64853
|
});
|
|
64759
64854
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvJitter', {
|
|
64760
64855
|
configurable: true,
|
|
64761
|
-
get: RTCStatsJS.prototype.
|
|
64856
|
+
get: RTCStatsJS.prototype.k3e
|
|
64762
64857
|
});
|
|
64763
64858
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentPackets', {
|
|
64764
64859
|
configurable: true,
|
|
64765
|
-
get: RTCStatsJS.prototype.
|
|
64860
|
+
get: RTCStatsJS.prototype.l3e
|
|
64766
64861
|
});
|
|
64767
64862
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentBytes', {
|
|
64768
64863
|
configurable: true,
|
|
64769
|
-
get: RTCStatsJS.prototype.
|
|
64864
|
+
get: RTCStatsJS.prototype.m3e
|
|
64770
64865
|
});
|
|
64771
64866
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentPacketsLost', {
|
|
64772
64867
|
configurable: true,
|
|
64773
|
-
get: RTCStatsJS.prototype.
|
|
64868
|
+
get: RTCStatsJS.prototype.n3e
|
|
64774
64869
|
});
|
|
64775
64870
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRtt', {
|
|
64776
64871
|
configurable: true,
|
|
64777
|
-
get: RTCStatsJS.prototype.
|
|
64872
|
+
get: RTCStatsJS.prototype.o3e
|
|
64778
64873
|
});
|
|
64779
64874
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentJitter', {
|
|
64780
64875
|
configurable: true,
|
|
64781
|
-
get: RTCStatsJS.prototype.
|
|
64876
|
+
get: RTCStatsJS.prototype.p3e
|
|
64782
64877
|
});
|
|
64783
64878
|
Object.defineProperty(RTCStatsJS.prototype, 'legId', {
|
|
64784
64879
|
configurable: true,
|
|
@@ -64789,9 +64884,9 @@ function requireClientsdkClientcore () {
|
|
|
64789
64884
|
}
|
|
64790
64885
|
function getCancelReason(reason) {
|
|
64791
64886
|
if (reason === 'RejectedElsewhere')
|
|
64792
|
-
return
|
|
64887
|
+
return CancelReasonJS_RejectedElsewhere_getInstance();
|
|
64793
64888
|
if (reason === 'AnsweredElsewhere')
|
|
64794
|
-
return
|
|
64889
|
+
return CancelReasonJS_AnsweredElsewhere_getInstance();
|
|
64795
64890
|
if (reason === 'RemoteTimeout')
|
|
64796
64891
|
return CancelReasonJS_RemoteTimeout_getInstance();
|
|
64797
64892
|
return CancelReasonJS_RemoteCancel_getInstance();
|
|
@@ -64816,7 +64911,7 @@ function requireClientsdkClientcore () {
|
|
|
64816
64911
|
};
|
|
64817
64912
|
}
|
|
64818
64913
|
function HttpClientJSAdapter$1($js) {
|
|
64819
|
-
this.
|
|
64914
|
+
this.s3e_1 = $js;
|
|
64820
64915
|
}
|
|
64821
64916
|
HttpClientJSAdapter$1.prototype.v2u = function (verb, url, headers, body, callback) {
|
|
64822
64917
|
var tmp = verb.toString();
|
|
@@ -64828,7 +64923,7 @@ function requireClientsdkClientcore () {
|
|
|
64828
64923
|
tmp$ret$0 = fromMap(JSON, headers);
|
|
64829
64924
|
tmp$ret$1 = tmp$ret$0;
|
|
64830
64925
|
var tmp_0 = tmp$ret$1;
|
|
64831
|
-
this.
|
|
64926
|
+
this.s3e_1.request(tmp, url, tmp_0, body, HttpClientJSAdapter$o$request$lambda(callback));
|
|
64832
64927
|
};
|
|
64833
64928
|
HttpClientJSAdapter$1.$metadata$ = classMeta(undefined, [HTTPClient]);
|
|
64834
64929
|
function SocketClientJSAdapter$o$emit$lambda($callback) {
|
|
@@ -64852,14 +64947,14 @@ function requireClientsdkClientcore () {
|
|
|
64852
64947
|
};
|
|
64853
64948
|
}
|
|
64854
64949
|
function SocketClientJSAdapter$adapter$1($js) {
|
|
64855
|
-
this.
|
|
64856
|
-
this.
|
|
64950
|
+
this.u3e_1 = $js;
|
|
64951
|
+
this.t3e_1 = null;
|
|
64857
64952
|
}
|
|
64858
64953
|
SocketClientJSAdapter$adapter$1.prototype.y2u = function (_set____db54di) {
|
|
64859
|
-
this.
|
|
64954
|
+
this.t3e_1 = _set____db54di;
|
|
64860
64955
|
};
|
|
64861
|
-
SocketClientJSAdapter$adapter$1.prototype.
|
|
64862
|
-
return this.
|
|
64956
|
+
SocketClientJSAdapter$adapter$1.prototype.v3e = function () {
|
|
64957
|
+
return this.t3e_1;
|
|
64863
64958
|
};
|
|
64864
64959
|
SocketClientJSAdapter$adapter$1.prototype.z2u = function (type, msg, callback) {
|
|
64865
64960
|
var tmp0_safe_receiver = msg;
|
|
@@ -64877,26 +64972,26 @@ function requireClientsdkClientcore () {
|
|
|
64877
64972
|
tmp = tmp$ret$1;
|
|
64878
64973
|
}
|
|
64879
64974
|
var tmp_0 = tmp;
|
|
64880
|
-
this.
|
|
64975
|
+
this.u3e_1.emit(type, tmp_0, SocketClientJSAdapter$o$emit$lambda(callback));
|
|
64881
64976
|
};
|
|
64882
64977
|
SocketClientJSAdapter$adapter$1.prototype.a2v = function (host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, token, session_id, query) {
|
|
64883
|
-
this.
|
|
64978
|
+
this.u3e_1.connect(host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, query);
|
|
64884
64979
|
};
|
|
64885
64980
|
SocketClientJSAdapter$adapter$1.prototype.b2v = function () {
|
|
64886
|
-
this.
|
|
64981
|
+
this.u3e_1.disconnect();
|
|
64887
64982
|
};
|
|
64888
64983
|
SocketClientJSAdapter$adapter$1.prototype.c2v = function (token) {
|
|
64889
|
-
this.
|
|
64984
|
+
this.u3e_1.setConnectParamsSocketConfig(token);
|
|
64890
64985
|
};
|
|
64891
64986
|
SocketClientJSAdapter$adapter$1.prototype.d2v = function (milliseconds, callback) {
|
|
64892
|
-
this.
|
|
64987
|
+
this.u3e_1.startVerifyResponseTimer(milliseconds, callback);
|
|
64893
64988
|
};
|
|
64894
64989
|
SocketClientJSAdapter$adapter$1.$metadata$ = classMeta(undefined, [SocketClient]);
|
|
64895
64990
|
function SocketClientJSAdapter$1($adapter) {
|
|
64896
|
-
this.
|
|
64991
|
+
this.w3e_1 = $adapter;
|
|
64897
64992
|
}
|
|
64898
64993
|
SocketClientJSAdapter$1.prototype.didReceiveNewSocketEvent = function (type, body) {
|
|
64899
|
-
var tmp0_safe_receiver = this.
|
|
64994
|
+
var tmp0_safe_receiver = this.w3e_1.t3e_1;
|
|
64900
64995
|
if (tmp0_safe_receiver == null)
|
|
64901
64996
|
null;
|
|
64902
64997
|
else {
|
|
@@ -64934,7 +65029,7 @@ function requireClientsdkClientcore () {
|
|
|
64934
65029
|
var tmp;
|
|
64935
65030
|
switch (tmp0_subject_0) {
|
|
64936
65031
|
case 'NXMCORE_REASON_SERVER_DISCONNECTED':
|
|
64937
|
-
var tmp1_safe_receiver_0 = this.
|
|
65032
|
+
var tmp1_safe_receiver_0 = this.w3e_1.t3e_1;
|
|
64938
65033
|
var tmp_0;
|
|
64939
65034
|
if (tmp1_safe_receiver_0 == null) {
|
|
64940
65035
|
tmp_0 = null;
|
|
@@ -64946,7 +65041,7 @@ function requireClientsdkClientcore () {
|
|
|
64946
65041
|
tmp = tmp_0;
|
|
64947
65042
|
break;
|
|
64948
65043
|
case 'NXMCORE_REASON_CLIENT_DISCONNECTED':
|
|
64949
|
-
var tmp2_safe_receiver = this.
|
|
65044
|
+
var tmp2_safe_receiver = this.w3e_1.t3e_1;
|
|
64950
65045
|
var tmp_1;
|
|
64951
65046
|
if (tmp2_safe_receiver == null) {
|
|
64952
65047
|
tmp_1 = null;
|
|
@@ -64958,7 +65053,7 @@ function requireClientsdkClientcore () {
|
|
|
64958
65053
|
tmp = tmp_1;
|
|
64959
65054
|
break;
|
|
64960
65055
|
case 'NXMCORE_CLIENT_NETWORK_ERROR':
|
|
64961
|
-
var tmp3_safe_receiver = this.
|
|
65056
|
+
var tmp3_safe_receiver = this.w3e_1.t3e_1;
|
|
64962
65057
|
var tmp_2;
|
|
64963
65058
|
if (tmp3_safe_receiver == null) {
|
|
64964
65059
|
tmp_2 = null;
|
|
@@ -64970,7 +65065,7 @@ function requireClientsdkClientcore () {
|
|
|
64970
65065
|
tmp = tmp_2;
|
|
64971
65066
|
break;
|
|
64972
65067
|
case 'NXMCORE_REASON_PING_TIMEOUT':
|
|
64973
|
-
var tmp4_safe_receiver = this.
|
|
65068
|
+
var tmp4_safe_receiver = this.w3e_1.t3e_1;
|
|
64974
65069
|
var tmp_3;
|
|
64975
65070
|
if (tmp4_safe_receiver == null) {
|
|
64976
65071
|
tmp_3 = null;
|
|
@@ -64982,7 +65077,7 @@ function requireClientsdkClientcore () {
|
|
|
64982
65077
|
tmp = tmp_3;
|
|
64983
65078
|
break;
|
|
64984
65079
|
default:
|
|
64985
|
-
var tmp5_safe_receiver = this.
|
|
65080
|
+
var tmp5_safe_receiver = this.w3e_1.t3e_1;
|
|
64986
65081
|
var tmp_4;
|
|
64987
65082
|
if (tmp5_safe_receiver == null) {
|
|
64988
65083
|
tmp_4 = null;
|
|
@@ -65000,43 +65095,43 @@ function requireClientsdkClientcore () {
|
|
|
65000
65095
|
};
|
|
65001
65096
|
SocketClientJSAdapter$1.$metadata$ = classMeta();
|
|
65002
65097
|
function MediaClientJSAdapter$adapter$1($js) {
|
|
65003
|
-
this.
|
|
65004
|
-
this.
|
|
65098
|
+
this.y3e_1 = $js;
|
|
65099
|
+
this.x3e_1 = null;
|
|
65005
65100
|
}
|
|
65006
65101
|
MediaClientJSAdapter$adapter$1.prototype.g2v = function (_set____db54di) {
|
|
65007
|
-
this.
|
|
65102
|
+
this.x3e_1 = _set____db54di;
|
|
65008
65103
|
};
|
|
65009
65104
|
MediaClientJSAdapter$adapter$1.prototype.h2v = function (closure) {
|
|
65010
|
-
this.
|
|
65105
|
+
this.y3e_1.enableMediaOutbound(closure);
|
|
65011
65106
|
};
|
|
65012
|
-
MediaClientJSAdapter$adapter$1.prototype.
|
|
65013
|
-
this.
|
|
65107
|
+
MediaClientJSAdapter$adapter$1.prototype.z3e = function (closure, offerSDP, rtcId) {
|
|
65108
|
+
this.y3e_1.enableMediaInbound(closure, offerSDP, rtcId);
|
|
65014
65109
|
};
|
|
65015
65110
|
MediaClientJSAdapter$adapter$1.prototype.i2v = function (closure, offerSDP, rtcId) {
|
|
65016
|
-
return this.
|
|
65111
|
+
return this.z3e(closure, offerSDP, rtcId);
|
|
65017
65112
|
};
|
|
65018
65113
|
MediaClientJSAdapter$adapter$1.prototype.j2v = function (id, sdp) {
|
|
65019
|
-
this.
|
|
65114
|
+
this.y3e_1.processAnswer(id, sdp);
|
|
65020
65115
|
};
|
|
65021
65116
|
MediaClientJSAdapter$adapter$1.prototype.k2v = function (id) {
|
|
65022
|
-
this.
|
|
65117
|
+
this.y3e_1.disableMedia(id);
|
|
65023
65118
|
};
|
|
65024
65119
|
MediaClientJSAdapter$adapter$1.prototype.l2v = function (id) {
|
|
65025
|
-
this.
|
|
65120
|
+
this.y3e_1.mute(id);
|
|
65026
65121
|
};
|
|
65027
65122
|
MediaClientJSAdapter$adapter$1.prototype.m2v = function (id) {
|
|
65028
|
-
this.
|
|
65123
|
+
this.y3e_1.unmute(id);
|
|
65029
65124
|
};
|
|
65030
65125
|
MediaClientJSAdapter$adapter$1.prototype.n2v = function (interval, mediaId) {
|
|
65031
|
-
this.
|
|
65126
|
+
this.y3e_1.enableRtcStatsCollection(interval, mediaId);
|
|
65032
65127
|
};
|
|
65033
65128
|
MediaClientJSAdapter$adapter$1.$metadata$ = classMeta(undefined, [MediaClient]);
|
|
65034
65129
|
function MediaClientJSAdapter$1($adapter) {
|
|
65035
|
-
this.
|
|
65130
|
+
this.a3f_1 = $adapter;
|
|
65036
65131
|
}
|
|
65037
65132
|
MediaClientJSAdapter$1.prototype.onRtcStats = function (rtcStats) {
|
|
65038
|
-
var stats = new RTCStats(rtcStats.z3d_1, rtcStats.a3e_1, rtcStats.b3e_1, rtcStats.c3e_1, rtcStats.d3e_1, rtcStats.e3e_1, rtcStats.f3e_1, rtcStats.g3e_1
|
|
65039
|
-
var tmp0_safe_receiver = this.
|
|
65133
|
+
var stats = new RTCStats(rtcStats.x3d_1, rtcStats.y3d_1, rtcStats.z3d_1, rtcStats.a3e_1, rtcStats.b3e_1, rtcStats.c3e_1, rtcStats.d3e_1, rtcStats.e3e_1, rtcStats.f3e_1, rtcStats.g3e_1);
|
|
65134
|
+
var tmp0_safe_receiver = this.a3f_1.x3e_1;
|
|
65040
65135
|
if (tmp0_safe_receiver == null)
|
|
65041
65136
|
null;
|
|
65042
65137
|
else {
|
|
@@ -65048,13 +65143,13 @@ function requireClientsdkClientcore () {
|
|
|
65048
65143
|
CancelReasonJS_initEntries();
|
|
65049
65144
|
return CancelReasonJS_RemoteCancel_instance;
|
|
65050
65145
|
}
|
|
65051
|
-
function
|
|
65146
|
+
function CancelReasonJS_AnsweredElsewhere_getInstance() {
|
|
65052
65147
|
CancelReasonJS_initEntries();
|
|
65053
|
-
return
|
|
65148
|
+
return CancelReasonJS_AnsweredElsewhere_instance;
|
|
65054
65149
|
}
|
|
65055
|
-
function
|
|
65150
|
+
function CancelReasonJS_RejectedElsewhere_getInstance() {
|
|
65056
65151
|
CancelReasonJS_initEntries();
|
|
65057
|
-
return
|
|
65152
|
+
return CancelReasonJS_RejectedElsewhere_instance;
|
|
65058
65153
|
}
|
|
65059
65154
|
function CancelReasonJS_RemoteTimeout_getInstance() {
|
|
65060
65155
|
CancelReasonJS_initEntries();
|
|
@@ -65526,13 +65621,13 @@ function requireClientsdkClientcore () {
|
|
|
65526
65621
|
configurable: true,
|
|
65527
65622
|
get: CancelReasonJS_RemoteCancel_getInstance
|
|
65528
65623
|
});
|
|
65529
|
-
Object.defineProperty($vonage.CancelReasonJS, '
|
|
65624
|
+
Object.defineProperty($vonage.CancelReasonJS, 'AnsweredElsewhere', {
|
|
65530
65625
|
configurable: true,
|
|
65531
|
-
get:
|
|
65626
|
+
get: CancelReasonJS_AnsweredElsewhere_getInstance
|
|
65532
65627
|
});
|
|
65533
|
-
Object.defineProperty($vonage.CancelReasonJS, '
|
|
65628
|
+
Object.defineProperty($vonage.CancelReasonJS, 'RejectedElsewhere', {
|
|
65534
65629
|
configurable: true,
|
|
65535
|
-
get:
|
|
65630
|
+
get: CancelReasonJS_RejectedElsewhere_getInstance
|
|
65536
65631
|
});
|
|
65537
65632
|
Object.defineProperty($vonage.CancelReasonJS, 'RemoteTimeout', {
|
|
65538
65633
|
configurable: true,
|
|
@@ -66060,6 +66155,7 @@ const CSErrorCodes = clientsdkClientcore_jsExports.vonage.CSErrorCodesJS;
|
|
|
66060
66155
|
const SessionErrorCodes = clientsdkClientcore_jsExports.vonage.SessionErrorCodesJS;
|
|
66061
66156
|
|
|
66062
66157
|
const CancelReason = clientsdkClientcore_jsExports.vonage.CancelReasonJS;
|
|
66158
|
+
const HangupReason = clientsdkClientcore_jsExports.vonage.HangupReasonJS;
|
|
66063
66159
|
const SessionErrorReason = clientsdkClientcore_jsExports.vonage.SessionErrorReasonJS;
|
|
66064
66160
|
const LegStatus = clientsdkClientcore_jsExports.vonage.LegStatusJS;
|
|
66065
66161
|
const setVonageClientLoggingLevel = setDefaultLoggingLevel;
|
|
@@ -66094,4 +66190,4 @@ class VonageClient extends clientsdkClientcore_jsExports.vonage.CombinedClientJS
|
|
|
66094
66190
|
}
|
|
66095
66191
|
}
|
|
66096
66192
|
|
|
66097
|
-
export { CSErrorCodes, CancelReason, ChannelType, ClientConfig, ConfigRegion, ConversationState, LegStatus, LoggingLevel, MemberInvitedEvent, MemberJoinedEvent, MemberLeftEvent, MemberState, PresentingOrder, SessionErrorCodes, SessionErrorReason, TextMessageEvent, UnknownEvent, VonageClient, VonageError, VonageErrorType, VonageClient as default, setVonageClientLoggingLevel };
|
|
66193
|
+
export { CSErrorCodes, CancelReason, ChannelType, ClientConfig, ConfigRegion, ConversationState, HangupReason, LegStatus, LoggingLevel, MemberInvitedEvent, MemberJoinedEvent, MemberLeftEvent, MemberState, PresentingOrder, SessionErrorCodes, SessionErrorReason, TextMessageEvent, UnknownEvent, VonageClient, VonageError, VonageErrorType, VonageClient as default, setVonageClientLoggingLevel };
|