@vonage/client-sdk 1.0.0 → 1.0.1-alpha.1
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 +1146 -1037
- package/dist/client/index.mjs +1146 -1038
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +5 -5
- package/dist/vonageClientSDK.js +1120 -1018
- package/dist/vonageClientSDK.min.js +2 -2
- package/dist/vonageClientSDK.min.mjs +2 -2
- package/dist/vonageClientSDK.mjs +1120 -1019
- package/package.json +2 -1
package/dist/client/index.cjs
CHANGED
|
@@ -2469,23 +2469,6 @@ function requireKotlinKotlinStdlibJsIr () {
|
|
|
2469
2469
|
function getValue(_this__u8e3s4, key) {
|
|
2470
2470
|
return getOrImplicitDefault(_this__u8e3s4, key);
|
|
2471
2471
|
}
|
|
2472
|
-
function filter_0(_this__u8e3s4, predicate) {
|
|
2473
|
-
var tmp$ret$1;
|
|
2474
|
-
// Inline function 'kotlin.collections.filterTo' call
|
|
2475
|
-
var tmp0_filterTo = LinkedHashMap_init_$Create$();
|
|
2476
|
-
var tmp$ret$0;
|
|
2477
|
-
// Inline function 'kotlin.collections.iterator' call
|
|
2478
|
-
tmp$ret$0 = _this__u8e3s4.q().g();
|
|
2479
|
-
var tmp0_iterator = tmp$ret$0;
|
|
2480
|
-
while (tmp0_iterator.h()) {
|
|
2481
|
-
var element = tmp0_iterator.i();
|
|
2482
|
-
if (predicate(element)) {
|
|
2483
|
-
tmp0_filterTo.l(element.q1(), element.s1());
|
|
2484
|
-
}
|
|
2485
|
-
}
|
|
2486
|
-
tmp$ret$1 = tmp0_filterTo;
|
|
2487
|
-
return tmp$ret$1;
|
|
2488
|
-
}
|
|
2489
2472
|
function remove(_this__u8e3s4, key) {
|
|
2490
2473
|
return (isInterface(_this__u8e3s4, MutableMap) ? _this__u8e3s4 : THROW_CCE()).g3(key);
|
|
2491
2474
|
}
|
|
@@ -2520,6 +2503,23 @@ function requireKotlinKotlinStdlibJsIr () {
|
|
|
2520
2503
|
}
|
|
2521
2504
|
return result;
|
|
2522
2505
|
}
|
|
2506
|
+
function filter_0(_this__u8e3s4, predicate) {
|
|
2507
|
+
var tmp$ret$1;
|
|
2508
|
+
// Inline function 'kotlin.collections.filterTo' call
|
|
2509
|
+
var tmp0_filterTo = LinkedHashMap_init_$Create$();
|
|
2510
|
+
var tmp$ret$0;
|
|
2511
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
2512
|
+
tmp$ret$0 = _this__u8e3s4.q().g();
|
|
2513
|
+
var tmp0_iterator = tmp$ret$0;
|
|
2514
|
+
while (tmp0_iterator.h()) {
|
|
2515
|
+
var element = tmp0_iterator.i();
|
|
2516
|
+
if (predicate(element)) {
|
|
2517
|
+
tmp0_filterTo.l(element.q1(), element.s1());
|
|
2518
|
+
}
|
|
2519
|
+
}
|
|
2520
|
+
tmp$ret$1 = tmp0_filterTo;
|
|
2521
|
+
return tmp$ret$1;
|
|
2522
|
+
}
|
|
2523
2523
|
function mapValues(_this__u8e3s4, transform) {
|
|
2524
2524
|
var tmp$ret$2;
|
|
2525
2525
|
// Inline function 'kotlin.collections.mapValuesTo' call
|
|
@@ -2559,27 +2559,27 @@ function requireKotlinKotlinStdlibJsIr () {
|
|
|
2559
2559
|
tmp$ret$2 = tmp$ret$1;
|
|
2560
2560
|
return tmp$ret$2;
|
|
2561
2561
|
}
|
|
2562
|
-
function
|
|
2562
|
+
function filterNotTo(_this__u8e3s4, destination, predicate) {
|
|
2563
2563
|
var tmp$ret$0;
|
|
2564
2564
|
// Inline function 'kotlin.collections.iterator' call
|
|
2565
2565
|
tmp$ret$0 = _this__u8e3s4.q().g();
|
|
2566
2566
|
var tmp0_iterator = tmp$ret$0;
|
|
2567
2567
|
while (tmp0_iterator.h()) {
|
|
2568
2568
|
var element = tmp0_iterator.i();
|
|
2569
|
-
if (predicate(element)) {
|
|
2569
|
+
if (!predicate(element)) {
|
|
2570
2570
|
destination.l(element.q1(), element.s1());
|
|
2571
2571
|
}
|
|
2572
2572
|
}
|
|
2573
2573
|
return destination;
|
|
2574
2574
|
}
|
|
2575
|
-
function
|
|
2575
|
+
function filterTo_0(_this__u8e3s4, destination, predicate) {
|
|
2576
2576
|
var tmp$ret$0;
|
|
2577
2577
|
// Inline function 'kotlin.collections.iterator' call
|
|
2578
2578
|
tmp$ret$0 = _this__u8e3s4.q().g();
|
|
2579
2579
|
var tmp0_iterator = tmp$ret$0;
|
|
2580
2580
|
while (tmp0_iterator.h()) {
|
|
2581
2581
|
var element = tmp0_iterator.i();
|
|
2582
|
-
if (
|
|
2582
|
+
if (predicate(element)) {
|
|
2583
2583
|
destination.l(element.q1(), element.s1());
|
|
2584
2584
|
}
|
|
2585
2585
|
}
|
|
@@ -23588,7 +23588,7 @@ function requireClientsdkClientcore () {
|
|
|
23588
23588
|
//endregion
|
|
23589
23589
|
function BuildKonfig() {
|
|
23590
23590
|
BuildKonfig_instance = this;
|
|
23591
|
-
this.s1a_1 = '1.0.
|
|
23591
|
+
this.s1a_1 = '1.0.1';
|
|
23592
23592
|
}
|
|
23593
23593
|
BuildKonfig.$metadata$ = objectMeta('BuildKonfig');
|
|
23594
23594
|
var BuildKonfig_instance;
|
|
@@ -23818,7 +23818,7 @@ function requireClientsdkClientcore () {
|
|
|
23818
23818
|
function StaticConfig() {
|
|
23819
23819
|
StaticConfig_instance = this;
|
|
23820
23820
|
this.c1d_1 = 5000;
|
|
23821
|
-
this.d1d_1 =
|
|
23821
|
+
this.d1d_1 = 10000;
|
|
23822
23822
|
this.e1d_1 = 500;
|
|
23823
23823
|
this.f1d_1 = 1000;
|
|
23824
23824
|
this.g1d_1 = 'call-rejected-by-callee';
|
|
@@ -35600,7 +35600,7 @@ function requireClientsdkClientcore () {
|
|
|
35600
35600
|
$serializer_77.prototype.tq = function () {
|
|
35601
35601
|
var tmp$ret$2;
|
|
35602
35602
|
// Inline function 'kotlin.arrayOf' call
|
|
35603
|
-
var tmp0_arrayOf = [$serializer_getInstance_149(), $
|
|
35603
|
+
var tmp0_arrayOf = [$serializer_getInstance_149(), $serializer_getInstance_156(), $serializer_getInstance_155(), $serializer_getInstance_153(), StringSerializer_getInstance()];
|
|
35604
35604
|
var tmp$ret$1;
|
|
35605
35605
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
35606
35606
|
var tmp$ret$0;
|
|
@@ -35624,9 +35624,9 @@ function requireClientsdkClientcore () {
|
|
|
35624
35624
|
if (tmp9_input.tj()) {
|
|
35625
35625
|
tmp4_local0 = tmp9_input.qj(tmp0_desc, 0, $serializer_getInstance_149(), tmp4_local0);
|
|
35626
35626
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
35627
|
-
tmp5_local1 = tmp9_input.qj(tmp0_desc, 1, $
|
|
35627
|
+
tmp5_local1 = tmp9_input.qj(tmp0_desc, 1, $serializer_getInstance_156(), tmp5_local1);
|
|
35628
35628
|
tmp3_bitMask0 = tmp3_bitMask0 | 2;
|
|
35629
|
-
tmp6_local2 = tmp9_input.qj(tmp0_desc, 2, $
|
|
35629
|
+
tmp6_local2 = tmp9_input.qj(tmp0_desc, 2, $serializer_getInstance_155(), tmp6_local2);
|
|
35630
35630
|
tmp3_bitMask0 = tmp3_bitMask0 | 4;
|
|
35631
35631
|
tmp7_local3 = tmp9_input.qj(tmp0_desc, 3, $serializer_getInstance_153(), tmp7_local3);
|
|
35632
35632
|
tmp3_bitMask0 = tmp3_bitMask0 | 8;
|
|
@@ -35644,11 +35644,11 @@ function requireClientsdkClientcore () {
|
|
|
35644
35644
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
35645
35645
|
break;
|
|
35646
35646
|
case 1:
|
|
35647
|
-
tmp5_local1 = tmp9_input.qj(tmp0_desc, 1, $
|
|
35647
|
+
tmp5_local1 = tmp9_input.qj(tmp0_desc, 1, $serializer_getInstance_156(), tmp5_local1);
|
|
35648
35648
|
tmp3_bitMask0 = tmp3_bitMask0 | 2;
|
|
35649
35649
|
break;
|
|
35650
35650
|
case 2:
|
|
35651
|
-
tmp6_local2 = tmp9_input.qj(tmp0_desc, 2, $
|
|
35651
|
+
tmp6_local2 = tmp9_input.qj(tmp0_desc, 2, $serializer_getInstance_155(), tmp6_local2);
|
|
35652
35652
|
tmp3_bitMask0 = tmp3_bitMask0 | 4;
|
|
35653
35653
|
break;
|
|
35654
35654
|
case 3:
|
|
@@ -35670,8 +35670,8 @@ function requireClientsdkClientcore () {
|
|
|
35670
35670
|
var tmp0_desc = this.x1x_1;
|
|
35671
35671
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
35672
35672
|
tmp1_output.tk(tmp0_desc, 0, $serializer_getInstance_149(), value.z1x_1);
|
|
35673
|
-
tmp1_output.tk(tmp0_desc, 1, $
|
|
35674
|
-
tmp1_output.tk(tmp0_desc, 2, $
|
|
35673
|
+
tmp1_output.tk(tmp0_desc, 1, $serializer_getInstance_156(), value.a1y_1);
|
|
35674
|
+
tmp1_output.tk(tmp0_desc, 2, $serializer_getInstance_155(), value.b1y_1);
|
|
35675
35675
|
tmp1_output.tk(tmp0_desc, 3, $serializer_getInstance_153(), value.c1y_1);
|
|
35676
35676
|
tmp1_output.sk(tmp0_desc, 4, value.d1y_1);
|
|
35677
35677
|
tmp1_output.gj(tmp0_desc);
|
|
@@ -49665,7 +49665,9 @@ function requireClientsdkClientcore () {
|
|
|
49665
49665
|
// Inline function 'kotlin.contracts.contract' call
|
|
49666
49666
|
tmp$ret$1 = tmp1_safe_receiver();
|
|
49667
49667
|
}
|
|
49668
|
-
|
|
49668
|
+
$callback(null, s.s1().v1k());
|
|
49669
|
+
cleanupReducers$default(this$0.j2o_1, null, null, 3, null);
|
|
49670
|
+
tmp = Unit_getInstance();
|
|
49669
49671
|
} else {
|
|
49670
49672
|
tmp = Unit_getInstance();
|
|
49671
49673
|
}
|
|
@@ -50409,7 +50411,6 @@ function requireClientsdkClientcore () {
|
|
|
50409
50411
|
invokeListener$default(this.y2p_1, conversationId, null, VoiceAPIImpl$o$onAudioDTMFUpdate$lambda(leg_id, digits), 4, null);
|
|
50410
50412
|
};
|
|
50411
50413
|
VoiceAPIImpl$1.prototype.m2f = function (conversationId, legId, hangup) {
|
|
50412
|
-
var state = ensureNotNull(this.y2p_1.h2p_1.z2f(getKClass(InviteReducer)));
|
|
50413
50414
|
var tmp0_safe_receiver = legId;
|
|
50414
50415
|
var tmp;
|
|
50415
50416
|
if (tmp0_safe_receiver == null) {
|
|
@@ -50425,58 +50426,16 @@ function requireClientsdkClientcore () {
|
|
|
50425
50426
|
tmp = tmp$ret$1;
|
|
50426
50427
|
}
|
|
50427
50428
|
var call = tmp;
|
|
50428
|
-
var
|
|
50429
|
+
var tmp1_subject = hangup.b1y_1.a2q_1;
|
|
50430
|
+
var tmp0 = tmp1_subject.e4_1;
|
|
50431
|
+
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()};
|
|
50429
50432
|
if (!(call == null)) {
|
|
50430
50433
|
if (call.a2p_1.c2q() === null) {
|
|
50431
50434
|
reason._v = HangupReason_remoteHangup_getInstance();
|
|
50432
50435
|
}
|
|
50433
50436
|
invokeListener$default(this.y2p_1, conversationId, null, VoiceAPIImpl$o$onRTCHangup$lambda(hangup, reason), 4, null);
|
|
50434
|
-
} else if (!(legId == null) ? getLegIdByConversation(this.y2p_1, conversationId) == legId : false) {
|
|
50435
|
-
var invite = state.z2p_1.g2(legId);
|
|
50436
|
-
var tmp1_safe_receiver = invite;
|
|
50437
|
-
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.u2p_1;
|
|
50438
|
-
if ((tmp2_safe_receiver == null ? null : tmp2_safe_receiver.c2q()) == null) {
|
|
50439
|
-
reason._v = HangupReason_remoteReject_getInstance();
|
|
50440
|
-
}
|
|
50441
|
-
var tmp3_safe_receiver = this.y2p_1.k2p_1;
|
|
50442
|
-
if (tmp3_safe_receiver == null)
|
|
50443
|
-
null;
|
|
50444
|
-
else {
|
|
50445
|
-
tmp3_safe_receiver.u2o(legId, hangup.c1y_1, reason._v);
|
|
50446
|
-
}
|
|
50447
|
-
}
|
|
50448
|
-
// Inline function 'kotlin.collections.forEach' call
|
|
50449
|
-
var tmp$ret$5;
|
|
50450
|
-
// Inline function 'kotlin.collections.filter' call
|
|
50451
|
-
var tmp0_filter = state.z2p_1;
|
|
50452
|
-
var tmp$ret$4;
|
|
50453
|
-
// Inline function 'kotlin.collections.filterTo' call
|
|
50454
|
-
var tmp0_filterTo = LinkedHashMap_init_$Create$();
|
|
50455
|
-
var tmp$ret$2;
|
|
50456
|
-
// Inline function 'kotlin.collections.iterator' call
|
|
50457
|
-
tmp$ret$2 = tmp0_filter.q().g();
|
|
50458
|
-
var tmp0_iterator = tmp$ret$2;
|
|
50459
|
-
while (tmp0_iterator.h()) {
|
|
50460
|
-
var element = tmp0_iterator.i();
|
|
50461
|
-
var tmp$ret$3;
|
|
50462
|
-
// Inline function 'com.vonage.clientcore.core.api.<no name provided>.onRTCHangup.<anonymous>' call
|
|
50463
|
-
tmp$ret$3 = !(element.s1().q2p_1 === legId) ? element.s1().w2p_1 : false;
|
|
50464
|
-
if (tmp$ret$3) {
|
|
50465
|
-
tmp0_filterTo.l(element.q1(), element.s1());
|
|
50466
|
-
}
|
|
50467
|
-
}
|
|
50468
|
-
tmp$ret$4 = tmp0_filterTo;
|
|
50469
|
-
tmp$ret$5 = tmp$ret$4;
|
|
50470
|
-
var tmp1_forEach = tmp$ret$5;
|
|
50471
|
-
var tmp$ret$6;
|
|
50472
|
-
// Inline function 'kotlin.collections.iterator' call
|
|
50473
|
-
tmp$ret$6 = tmp1_forEach.q().g();
|
|
50474
|
-
var tmp0_iterator_0 = tmp$ret$6;
|
|
50475
|
-
while (tmp0_iterator_0.h()) {
|
|
50476
|
-
var element_0 = tmp0_iterator_0.i();
|
|
50477
|
-
// Inline function 'com.vonage.clientcore.core.api.<no name provided>.onRTCHangup.<anonymous>' call
|
|
50478
|
-
this.y2p_1.h2p_1.b1d(Action_init_$Create$(new InviteCleanup(element_0.q1())));
|
|
50479
50437
|
}
|
|
50438
|
+
cleanupReducers(this.y2p_1.h2p_1, legId, conversationId);
|
|
50480
50439
|
};
|
|
50481
50440
|
VoiceAPIImpl$1.prototype.o2f = function (conversationId, legId, fromUserId, status) {
|
|
50482
50441
|
if (!(conversationId == null) ? !isFromMe(this.y2p_1, fromUserId) : false) {
|
|
@@ -50490,7 +50449,7 @@ function requireClientsdkClientcore () {
|
|
|
50490
50449
|
function VoiceAPIImpl$lambda$lambda(this$0, $cache) {
|
|
50491
50450
|
return function () {
|
|
50492
50451
|
var state = ensureNotNull(this$0.h2p_1.z2f(getKClass(InviteReducer)));
|
|
50493
|
-
var tmp0_safe_receiver = state.
|
|
50452
|
+
var tmp0_safe_receiver = state.f2q_1;
|
|
50494
50453
|
var tmp;
|
|
50495
50454
|
if (tmp0_safe_receiver == null) {
|
|
50496
50455
|
tmp = null;
|
|
@@ -50502,8 +50461,8 @@ function requireClientsdkClientcore () {
|
|
|
50502
50461
|
// Inline function 'com.vonage.clientcore.core.api.VoiceAPIImpl.<anonymous>.<anonymous>.<anonymous>' call
|
|
50503
50462
|
var tmp$ret$0;
|
|
50504
50463
|
// Inline function 'kotlin.collections.get' call
|
|
50505
|
-
var tmp0_get = state.
|
|
50506
|
-
var tmp1_get = state.
|
|
50464
|
+
var tmp0_get = state.d2q_1;
|
|
50465
|
+
var tmp1_get = state.f2q_1;
|
|
50507
50466
|
tmp$ret$0 = (isInterface(tmp0_get, Map) ? tmp0_get : THROW_CCE()).g2(tmp1_get);
|
|
50508
50467
|
tmp$ret$1 = tmp$ret$0;
|
|
50509
50468
|
tmp$ret$2 = tmp$ret$1;
|
|
@@ -50511,14 +50470,14 @@ function requireClientsdkClientcore () {
|
|
|
50511
50470
|
}
|
|
50512
50471
|
var updatedInvite = tmp;
|
|
50513
50472
|
var tmp_0;
|
|
50514
|
-
if (state.
|
|
50473
|
+
if (state.f2q_1 == null) {
|
|
50515
50474
|
tmp_0 = Unit_getInstance();
|
|
50516
50475
|
} else {
|
|
50517
50476
|
var tmp_1;
|
|
50518
50477
|
if (!(updatedInvite == null)) {
|
|
50519
50478
|
var tmp$ret$3;
|
|
50520
50479
|
// Inline function 'kotlin.collections.get' call
|
|
50521
|
-
var tmp0_get_0 = state.
|
|
50480
|
+
var tmp0_get_0 = state.f2q_1;
|
|
50522
50481
|
tmp$ret$3 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp0_get_0);
|
|
50523
50482
|
tmp_1 = tmp$ret$3 == null;
|
|
50524
50483
|
} else {
|
|
@@ -50528,16 +50487,16 @@ function requireClientsdkClientcore () {
|
|
|
50528
50487
|
var tmp2_set = updatedInvite.q2p_1;
|
|
50529
50488
|
var tmp$ret$4;
|
|
50530
50489
|
// Inline function 'kotlin.also' call
|
|
50531
|
-
var tmp1_also = updatedInvite.
|
|
50490
|
+
var tmp1_also = updatedInvite.k2q(null, null, null, null, null, null, false, false, 0, 511, null);
|
|
50532
50491
|
// Inline function 'kotlin.contracts.contract' call
|
|
50533
50492
|
// Inline function 'com.vonage.clientcore.core.api.VoiceAPIImpl.<anonymous>.<anonymous>.<anonymous>' call
|
|
50534
50493
|
var config = ensureNotNull(this$0.h2p_1.z2f(getKClass(ConfigReducer)));
|
|
50535
|
-
if (config.
|
|
50494
|
+
if (config.q2q_1 ? tmp1_also.v2p_1 : false) {
|
|
50536
50495
|
var tmp0_safe_receiver_0 = this$0.k2p_1;
|
|
50537
50496
|
if (tmp0_safe_receiver_0 == null)
|
|
50538
50497
|
null;
|
|
50539
50498
|
else {
|
|
50540
|
-
tmp0_safe_receiver_0.o2o(updatedInvite.q2p_1, from_1(tmp1_also.p2p_1), tmp1_also.p2p_1.
|
|
50499
|
+
tmp0_safe_receiver_0.o2o(updatedInvite.q2p_1, from_1(tmp1_also.p2p_1), tmp1_also.p2p_1.l2q());
|
|
50541
50500
|
}
|
|
50542
50501
|
}
|
|
50543
50502
|
tmp$ret$4 = tmp1_also;
|
|
@@ -50562,7 +50521,7 @@ function requireClientsdkClientcore () {
|
|
|
50562
50521
|
if (tmp_3) {
|
|
50563
50522
|
var tmp$ret$5;
|
|
50564
50523
|
// Inline function 'kotlin.collections.get' call
|
|
50565
|
-
var tmp4_get = state.
|
|
50524
|
+
var tmp4_get = state.f2q_1;
|
|
50566
50525
|
tmp$ret$5 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp4_get);
|
|
50567
50526
|
var tmp1_safe_receiver = tmp$ret$5;
|
|
50568
50527
|
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.u2p_1;
|
|
@@ -50584,13 +50543,13 @@ function requireClientsdkClientcore () {
|
|
|
50584
50543
|
if (!(updatedInvite == null)) {
|
|
50585
50544
|
var tmp$ret$6;
|
|
50586
50545
|
// Inline function 'kotlin.collections.get' call
|
|
50587
|
-
var tmp5_get = state.
|
|
50546
|
+
var tmp5_get = state.f2q_1;
|
|
50588
50547
|
tmp$ret$6 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp5_get);
|
|
50589
50548
|
var tmp6_safe_receiver = tmp$ret$6;
|
|
50590
50549
|
var tmp_8 = (tmp6_safe_receiver == null ? null : tmp6_safe_receiver.w2p_1) === false;
|
|
50591
50550
|
var tmp$ret$7;
|
|
50592
50551
|
// Inline function 'kotlin.collections.get' call
|
|
50593
|
-
var tmp6_get = state.
|
|
50552
|
+
var tmp6_get = state.f2q_1;
|
|
50594
50553
|
tmp$ret$7 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp6_get);
|
|
50595
50554
|
var tmp4_safe_receiver = tmp$ret$7;
|
|
50596
50555
|
var tmp5_safe_receiver = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.u2p_1;
|
|
@@ -50610,12 +50569,12 @@ function requireClientsdkClientcore () {
|
|
|
50610
50569
|
var tmp_12;
|
|
50611
50570
|
var tmp$ret$8;
|
|
50612
50571
|
// Inline function 'kotlin.collections.get' call
|
|
50613
|
-
var tmp7_get = state.
|
|
50572
|
+
var tmp7_get = state.f2q_1;
|
|
50614
50573
|
tmp$ret$8 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp7_get);
|
|
50615
50574
|
if (!(tmp$ret$8 == null)) {
|
|
50616
50575
|
var tmp$ret$9;
|
|
50617
50576
|
// Inline function 'kotlin.collections.get' call
|
|
50618
|
-
var tmp8_get = state.
|
|
50577
|
+
var tmp8_get = state.f2q_1;
|
|
50619
50578
|
tmp$ret$9 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp8_get);
|
|
50620
50579
|
var tmp_13 = ensureNotNull(tmp$ret$9).u2p_1.s1();
|
|
50621
50580
|
tmp_12 = tmp_13 instanceof Joined;
|
|
@@ -50629,7 +50588,7 @@ function requireClientsdkClientcore () {
|
|
|
50629
50588
|
tmp_11 = null;
|
|
50630
50589
|
} else {
|
|
50631
50590
|
var tmp_14 = updatedInvite.u2p_1.s1();
|
|
50632
|
-
if ((tmp_14 instanceof Left ? tmp_14 : THROW_CCE()).
|
|
50591
|
+
if ((tmp_14 instanceof Left ? tmp_14 : THROW_CCE()).j2q_1 === 'REMOTE_REJECT') {
|
|
50633
50592
|
tmp_11 = VoiceInviteCancelReason_RejectedElsewhere_getInstance();
|
|
50634
50593
|
} else {
|
|
50635
50594
|
if (updatedInvite.x2p_1 === 487) {
|
|
@@ -50667,7 +50626,7 @@ function requireClientsdkClientcore () {
|
|
|
50667
50626
|
if (updatedInvite == null) {
|
|
50668
50627
|
var tmp$ret$12;
|
|
50669
50628
|
// Inline function 'kotlin.collections.get' call
|
|
50670
|
-
var tmp9_get = state.
|
|
50629
|
+
var tmp9_get = state.f2q_1;
|
|
50671
50630
|
tmp$ret$12 = (isInterface($cache, Map) ? $cache : THROW_CCE()).g2(tmp9_get);
|
|
50672
50631
|
tmp_16 = !(tmp$ret$12 == null);
|
|
50673
50632
|
} else {
|
|
@@ -50676,7 +50635,7 @@ function requireClientsdkClientcore () {
|
|
|
50676
50635
|
if (tmp_16) {
|
|
50677
50636
|
var tmp$ret$13;
|
|
50678
50637
|
// Inline function 'kotlin.collections.remove' call
|
|
50679
|
-
var tmp10_remove = state.
|
|
50638
|
+
var tmp10_remove = state.f2q_1;
|
|
50680
50639
|
tmp$ret$13 = (isInterface($cache, MutableMap) ? $cache : THROW_CCE()).g3(tmp10_remove);
|
|
50681
50640
|
tmp_0 = Unit_getInstance();
|
|
50682
50641
|
} else {
|
|
@@ -50694,7 +50653,7 @@ function requireClientsdkClientcore () {
|
|
|
50694
50653
|
// Inline function 'kotlin.let' call
|
|
50695
50654
|
// Inline function 'kotlin.contracts.contract' call
|
|
50696
50655
|
var tmp0_set = tmp8_safe_receiver.q2p_1;
|
|
50697
|
-
var tmp1_set = tmp8_safe_receiver.
|
|
50656
|
+
var tmp1_set = tmp8_safe_receiver.k2q(null, null, null, null, null, null, false, false, 0, 511, null);
|
|
50698
50657
|
$cache.l(tmp0_set, tmp1_set);
|
|
50699
50658
|
tmp$ret$14 = Unit_getInstance();
|
|
50700
50659
|
}
|
|
@@ -50749,7 +50708,7 @@ function requireClientsdkClientcore () {
|
|
|
50749
50708
|
}
|
|
50750
50709
|
if (tmp_1) {
|
|
50751
50710
|
var tmp1_set = updatedCall.z2o_1;
|
|
50752
|
-
var tmp2_set = updatedCall.
|
|
50711
|
+
var tmp2_set = updatedCall.r2q(false, null, null, null, null, null, null, null, 255, null);
|
|
50753
50712
|
$cache.l(tmp1_set, tmp2_set);
|
|
50754
50713
|
tmp_0 = Unit_getInstance();
|
|
50755
50714
|
} else {
|
|
@@ -50771,13 +50730,13 @@ function requireClientsdkClientcore () {
|
|
|
50771
50730
|
var previousCall = ensureNotNull(tmp$ret$5);
|
|
50772
50731
|
// Inline function 'kotlin.collections.set' call
|
|
50773
50732
|
var tmp5_set = updatedCall.z2o_1;
|
|
50774
|
-
var tmp6_set = updatedCall.
|
|
50733
|
+
var tmp6_set = updatedCall.r2q(false, null, null, null, null, null, null, null, 255, null);
|
|
50775
50734
|
$cache.l(tmp5_set, tmp6_set);
|
|
50776
50735
|
if (!equals(updatedCall.a2p_1, previousCall.a2p_1)) {
|
|
50777
50736
|
onCallMemberChange(this$0, updatedCall);
|
|
50778
50737
|
}
|
|
50779
50738
|
var tmp_3;
|
|
50780
|
-
if (!(updatedCall.d2p_1.
|
|
50739
|
+
if (!(updatedCall.d2p_1.s2q_1 == null) ? !updatedCall.d2p_1.equals(previousCall.d2p_1) ? true : !equals(updatedCall.b2p_1, previousCall.b2p_1) : false) {
|
|
50781
50740
|
onCallMediaChange(this$0, updatedCall);
|
|
50782
50741
|
tmp_3 = Unit_getInstance();
|
|
50783
50742
|
}
|
|
@@ -50946,7 +50905,7 @@ function requireClientsdkClientcore () {
|
|
|
50946
50905
|
}
|
|
50947
50906
|
};
|
|
50948
50907
|
VoiceAPIImpl.prototype.z1a = function (callId, callback) {
|
|
50949
|
-
var invite = ensureNotNull(this.h2p_1.z2f(getKClass(InviteReducer))).
|
|
50908
|
+
var invite = ensureNotNull(this.h2p_1.z2f(getKClass(InviteReducer))).d2q_1.g2(callId);
|
|
50950
50909
|
if (invite == null) {
|
|
50951
50910
|
callback(Companion_getInstance_107().t2f(InternalError_NoInviteFound_getInstance()));
|
|
50952
50911
|
return Unit_getInstance();
|
|
@@ -50974,7 +50933,7 @@ function requireClientsdkClientcore () {
|
|
|
50974
50933
|
this.h2p_1.b1d(new Action(tmp_4, ActionMeta_init_$Create$(null, callId, VoiceAPIImpl$rejectCall$lambda(callback), 1, null)));
|
|
50975
50934
|
};
|
|
50976
50935
|
VoiceAPIImpl.prototype.a1b = function (callId, callback) {
|
|
50977
|
-
var invite = ensureNotNull(this.h2p_1.z2f(getKClass(InviteReducer))).
|
|
50936
|
+
var invite = ensureNotNull(this.h2p_1.z2f(getKClass(InviteReducer))).d2q_1.g2(callId);
|
|
50978
50937
|
if (invite == null) {
|
|
50979
50938
|
callback(Companion_getInstance_107().t2f(InternalError_NoInviteFound_getInstance()));
|
|
50980
50939
|
return Unit_getInstance();
|
|
@@ -51085,21 +51044,21 @@ function requireClientsdkClientcore () {
|
|
|
51085
51044
|
};
|
|
51086
51045
|
VoiceAPIImpl.$metadata$ = classMeta('VoiceAPIImpl', [VoiceAPI]);
|
|
51087
51046
|
function SetupOutboundCall(user, context) {
|
|
51088
|
-
this.
|
|
51089
|
-
this.
|
|
51047
|
+
this.v2q_1 = user;
|
|
51048
|
+
this.w2q_1 = context;
|
|
51090
51049
|
}
|
|
51091
51050
|
SetupOutboundCall.prototype.n1k = function () {
|
|
51092
|
-
return this.
|
|
51051
|
+
return this.v2q_1;
|
|
51093
51052
|
};
|
|
51094
51053
|
SetupOutboundCall.prototype.z3 = function () {
|
|
51095
|
-
return this.
|
|
51054
|
+
return this.w2q_1;
|
|
51096
51055
|
};
|
|
51097
51056
|
SetupOutboundCall.prototype.toString = function () {
|
|
51098
|
-
return 'SetupOutboundCall(user=' + this.
|
|
51057
|
+
return 'SetupOutboundCall(user=' + this.v2q_1 + ', context=' + this.w2q_1 + ')';
|
|
51099
51058
|
};
|
|
51100
51059
|
SetupOutboundCall.prototype.hashCode = function () {
|
|
51101
|
-
var result = getStringHashCode(this.
|
|
51102
|
-
result = imul(result, 31) + (this.
|
|
51060
|
+
var result = getStringHashCode(this.v2q_1);
|
|
51061
|
+
result = imul(result, 31) + (this.w2q_1 == null ? 0 : hashCode(this.w2q_1)) | 0;
|
|
51103
51062
|
return result;
|
|
51104
51063
|
};
|
|
51105
51064
|
SetupOutboundCall.prototype.equals = function (other) {
|
|
@@ -51108,24 +51067,24 @@ function requireClientsdkClientcore () {
|
|
|
51108
51067
|
if (!(other instanceof SetupOutboundCall))
|
|
51109
51068
|
return false;
|
|
51110
51069
|
var tmp0_other_with_cast = other instanceof SetupOutboundCall ? other : THROW_CCE();
|
|
51111
|
-
if (!(this.
|
|
51070
|
+
if (!(this.v2q_1 === tmp0_other_with_cast.v2q_1))
|
|
51112
51071
|
return false;
|
|
51113
|
-
if (!equals(this.
|
|
51072
|
+
if (!equals(this.w2q_1, tmp0_other_with_cast.w2q_1))
|
|
51114
51073
|
return false;
|
|
51115
51074
|
return true;
|
|
51116
51075
|
};
|
|
51117
51076
|
SetupOutboundCall.$metadata$ = classMeta('SetupOutboundCall', [CallEvent]);
|
|
51118
51077
|
function CallCleanup(callId) {
|
|
51119
|
-
this.
|
|
51078
|
+
this.x2q_1 = callId;
|
|
51120
51079
|
}
|
|
51121
|
-
CallCleanup.prototype.
|
|
51122
|
-
return this.
|
|
51080
|
+
CallCleanup.prototype.y2q = function () {
|
|
51081
|
+
return this.x2q_1;
|
|
51123
51082
|
};
|
|
51124
51083
|
CallCleanup.prototype.toString = function () {
|
|
51125
|
-
return 'CallCleanup(callId=' + this.
|
|
51084
|
+
return 'CallCleanup(callId=' + this.x2q_1 + ')';
|
|
51126
51085
|
};
|
|
51127
51086
|
CallCleanup.prototype.hashCode = function () {
|
|
51128
|
-
return getStringHashCode(this.
|
|
51087
|
+
return getStringHashCode(this.x2q_1);
|
|
51129
51088
|
};
|
|
51130
51089
|
CallCleanup.prototype.equals = function (other) {
|
|
51131
51090
|
if (this === other)
|
|
@@ -51133,32 +51092,32 @@ function requireClientsdkClientcore () {
|
|
|
51133
51092
|
if (!(other instanceof CallCleanup))
|
|
51134
51093
|
return false;
|
|
51135
51094
|
var tmp0_other_with_cast = other instanceof CallCleanup ? other : THROW_CCE();
|
|
51136
|
-
if (!(this.
|
|
51095
|
+
if (!(this.x2q_1 === tmp0_other_with_cast.x2q_1))
|
|
51137
51096
|
return false;
|
|
51138
51097
|
return true;
|
|
51139
51098
|
};
|
|
51140
51099
|
CallCleanup.$metadata$ = classMeta('CallCleanup', [CallEvent]);
|
|
51141
51100
|
function CallReconnect(callId, from, conversationId) {
|
|
51142
|
-
this.
|
|
51143
|
-
this.
|
|
51144
|
-
this.
|
|
51101
|
+
this.z2q_1 = callId;
|
|
51102
|
+
this.a2r_1 = from;
|
|
51103
|
+
this.b2r_1 = conversationId;
|
|
51145
51104
|
}
|
|
51146
|
-
CallReconnect.prototype.
|
|
51147
|
-
return this.
|
|
51105
|
+
CallReconnect.prototype.y2q = function () {
|
|
51106
|
+
return this.z2q_1;
|
|
51148
51107
|
};
|
|
51149
51108
|
CallReconnect.prototype.e1k = function () {
|
|
51150
|
-
return this.
|
|
51109
|
+
return this.a2r_1;
|
|
51151
51110
|
};
|
|
51152
|
-
CallReconnect.prototype.
|
|
51153
|
-
return this.
|
|
51111
|
+
CallReconnect.prototype.c2r = function () {
|
|
51112
|
+
return this.b2r_1;
|
|
51154
51113
|
};
|
|
51155
51114
|
CallReconnect.prototype.toString = function () {
|
|
51156
|
-
return 'CallReconnect(callId=' + this.
|
|
51115
|
+
return 'CallReconnect(callId=' + this.z2q_1 + ', from=' + this.a2r_1 + ', conversationId=' + this.b2r_1 + ')';
|
|
51157
51116
|
};
|
|
51158
51117
|
CallReconnect.prototype.hashCode = function () {
|
|
51159
|
-
var result = getStringHashCode(this.
|
|
51160
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
51161
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
51118
|
+
var result = getStringHashCode(this.z2q_1);
|
|
51119
|
+
result = imul(result, 31) + getStringHashCode(this.a2r_1) | 0;
|
|
51120
|
+
result = imul(result, 31) + getStringHashCode(this.b2r_1) | 0;
|
|
51162
51121
|
return result;
|
|
51163
51122
|
};
|
|
51164
51123
|
CallReconnect.prototype.equals = function (other) {
|
|
@@ -51167,48 +51126,48 @@ function requireClientsdkClientcore () {
|
|
|
51167
51126
|
if (!(other instanceof CallReconnect))
|
|
51168
51127
|
return false;
|
|
51169
51128
|
var tmp0_other_with_cast = other instanceof CallReconnect ? other : THROW_CCE();
|
|
51170
|
-
if (!(this.
|
|
51129
|
+
if (!(this.z2q_1 === tmp0_other_with_cast.z2q_1))
|
|
51171
51130
|
return false;
|
|
51172
|
-
if (!(this.
|
|
51131
|
+
if (!(this.a2r_1 === tmp0_other_with_cast.a2r_1))
|
|
51173
51132
|
return false;
|
|
51174
|
-
if (!(this.
|
|
51133
|
+
if (!(this.b2r_1 === tmp0_other_with_cast.b2r_1))
|
|
51175
51134
|
return false;
|
|
51176
51135
|
return true;
|
|
51177
51136
|
};
|
|
51178
51137
|
CallReconnect.$metadata$ = classMeta('CallReconnect', [CallEvent]);
|
|
51179
51138
|
function SetupInboundCall(rtcId, conversationId, memberId, from, sdp, context) {
|
|
51180
|
-
this.
|
|
51181
|
-
this.
|
|
51182
|
-
this.
|
|
51183
|
-
this.
|
|
51184
|
-
this.
|
|
51185
|
-
this.
|
|
51186
|
-
}
|
|
51187
|
-
SetupInboundCall.prototype.
|
|
51188
|
-
return this.
|
|
51139
|
+
this.d2r_1 = rtcId;
|
|
51140
|
+
this.e2r_1 = conversationId;
|
|
51141
|
+
this.f2r_1 = memberId;
|
|
51142
|
+
this.g2r_1 = from;
|
|
51143
|
+
this.h2r_1 = sdp;
|
|
51144
|
+
this.i2r_1 = context;
|
|
51145
|
+
}
|
|
51146
|
+
SetupInboundCall.prototype.j2r = function () {
|
|
51147
|
+
return this.d2r_1;
|
|
51189
51148
|
};
|
|
51190
|
-
SetupInboundCall.prototype.
|
|
51191
|
-
return this.
|
|
51149
|
+
SetupInboundCall.prototype.c2r = function () {
|
|
51150
|
+
return this.e2r_1;
|
|
51192
51151
|
};
|
|
51193
|
-
SetupInboundCall.prototype.
|
|
51194
|
-
return this.
|
|
51152
|
+
SetupInboundCall.prototype.k2r = function () {
|
|
51153
|
+
return this.f2r_1;
|
|
51195
51154
|
};
|
|
51196
51155
|
SetupInboundCall.prototype.e1k = function () {
|
|
51197
|
-
return this.
|
|
51156
|
+
return this.g2r_1;
|
|
51198
51157
|
};
|
|
51199
51158
|
SetupInboundCall.prototype.d1t = function () {
|
|
51200
|
-
return this.
|
|
51159
|
+
return this.h2r_1;
|
|
51201
51160
|
};
|
|
51202
51161
|
SetupInboundCall.prototype.toString = function () {
|
|
51203
|
-
return 'SetupInboundCall(rtcId=' + this.
|
|
51162
|
+
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 + ')';
|
|
51204
51163
|
};
|
|
51205
51164
|
SetupInboundCall.prototype.hashCode = function () {
|
|
51206
|
-
var result = getStringHashCode(this.
|
|
51207
|
-
result = imul(result, 31) + getStringHashCode(this.b2r_1) | 0;
|
|
51208
|
-
result = imul(result, 31) + getStringHashCode(this.c2r_1) | 0;
|
|
51209
|
-
result = imul(result, 31) + hashCode(this.d2r_1) | 0;
|
|
51165
|
+
var result = getStringHashCode(this.d2r_1);
|
|
51210
51166
|
result = imul(result, 31) + getStringHashCode(this.e2r_1) | 0;
|
|
51211
|
-
result = imul(result, 31) + (this.f2r_1
|
|
51167
|
+
result = imul(result, 31) + getStringHashCode(this.f2r_1) | 0;
|
|
51168
|
+
result = imul(result, 31) + hashCode(this.g2r_1) | 0;
|
|
51169
|
+
result = imul(result, 31) + getStringHashCode(this.h2r_1) | 0;
|
|
51170
|
+
result = imul(result, 31) + (this.i2r_1 == null ? 0 : hashCode(this.i2r_1)) | 0;
|
|
51212
51171
|
return result;
|
|
51213
51172
|
};
|
|
51214
51173
|
SetupInboundCall.prototype.equals = function (other) {
|
|
@@ -51217,51 +51176,31 @@ function requireClientsdkClientcore () {
|
|
|
51217
51176
|
if (!(other instanceof SetupInboundCall))
|
|
51218
51177
|
return false;
|
|
51219
51178
|
var tmp0_other_with_cast = other instanceof SetupInboundCall ? other : THROW_CCE();
|
|
51220
|
-
if (!(this.
|
|
51179
|
+
if (!(this.d2r_1 === tmp0_other_with_cast.d2r_1))
|
|
51221
51180
|
return false;
|
|
51222
|
-
if (!(this.
|
|
51181
|
+
if (!(this.e2r_1 === tmp0_other_with_cast.e2r_1))
|
|
51223
51182
|
return false;
|
|
51224
|
-
if (!(this.
|
|
51183
|
+
if (!(this.f2r_1 === tmp0_other_with_cast.f2r_1))
|
|
51225
51184
|
return false;
|
|
51226
|
-
if (!equals(this.
|
|
51185
|
+
if (!equals(this.g2r_1, tmp0_other_with_cast.g2r_1))
|
|
51227
51186
|
return false;
|
|
51228
|
-
if (!(this.
|
|
51187
|
+
if (!(this.h2r_1 === tmp0_other_with_cast.h2r_1))
|
|
51229
51188
|
return false;
|
|
51230
|
-
if (!equals(this.
|
|
51189
|
+
if (!equals(this.i2r_1, tmp0_other_with_cast.i2r_1))
|
|
51231
51190
|
return false;
|
|
51232
51191
|
return true;
|
|
51233
51192
|
};
|
|
51234
51193
|
SetupInboundCall.$metadata$ = classMeta('SetupInboundCall', [CallEvent]);
|
|
51235
|
-
function InviteCleanup(callId) {
|
|
51236
|
-
this.i2r_1 = callId;
|
|
51237
|
-
}
|
|
51238
|
-
InviteCleanup.prototype.toString = function () {
|
|
51239
|
-
return 'InviteCleanup(callId=' + this.i2r_1 + ')';
|
|
51240
|
-
};
|
|
51241
|
-
InviteCleanup.prototype.hashCode = function () {
|
|
51242
|
-
return getStringHashCode(this.i2r_1);
|
|
51243
|
-
};
|
|
51244
|
-
InviteCleanup.prototype.equals = function (other) {
|
|
51245
|
-
if (this === other)
|
|
51246
|
-
return true;
|
|
51247
|
-
if (!(other instanceof InviteCleanup))
|
|
51248
|
-
return false;
|
|
51249
|
-
var tmp0_other_with_cast = other instanceof InviteCleanup ? other : THROW_CCE();
|
|
51250
|
-
if (!(this.i2r_1 === tmp0_other_with_cast.i2r_1))
|
|
51251
|
-
return false;
|
|
51252
|
-
return true;
|
|
51253
|
-
};
|
|
51254
|
-
InviteCleanup.$metadata$ = classMeta('InviteCleanup', [CallEvent]);
|
|
51255
51194
|
function CallKnockingRequestFailure(callId, exception) {
|
|
51256
|
-
this.
|
|
51257
|
-
this.
|
|
51195
|
+
this.l2r_1 = callId;
|
|
51196
|
+
this.m2r_1 = exception;
|
|
51258
51197
|
}
|
|
51259
51198
|
CallKnockingRequestFailure.prototype.toString = function () {
|
|
51260
|
-
return 'CallKnockingRequestFailure(callId=' + this.
|
|
51199
|
+
return 'CallKnockingRequestFailure(callId=' + this.l2r_1 + ', exception=' + this.m2r_1 + ')';
|
|
51261
51200
|
};
|
|
51262
51201
|
CallKnockingRequestFailure.prototype.hashCode = function () {
|
|
51263
|
-
var result = getStringHashCode(this.
|
|
51264
|
-
result = imul(result, 31) + hashCode(this.
|
|
51202
|
+
var result = getStringHashCode(this.l2r_1);
|
|
51203
|
+
result = imul(result, 31) + hashCode(this.m2r_1) | 0;
|
|
51265
51204
|
return result;
|
|
51266
51205
|
};
|
|
51267
51206
|
CallKnockingRequestFailure.prototype.equals = function (other) {
|
|
@@ -51270,9 +51209,9 @@ function requireClientsdkClientcore () {
|
|
|
51270
51209
|
if (!(other instanceof CallKnockingRequestFailure))
|
|
51271
51210
|
return false;
|
|
51272
51211
|
var tmp0_other_with_cast = other instanceof CallKnockingRequestFailure ? other : THROW_CCE();
|
|
51273
|
-
if (!(this.
|
|
51212
|
+
if (!(this.l2r_1 === tmp0_other_with_cast.l2r_1))
|
|
51274
51213
|
return false;
|
|
51275
|
-
if (!equals(this.
|
|
51214
|
+
if (!equals(this.m2r_1, tmp0_other_with_cast.m2r_1))
|
|
51276
51215
|
return false;
|
|
51277
51216
|
return true;
|
|
51278
51217
|
};
|
|
@@ -51281,18 +51220,18 @@ function requireClientsdkClientcore () {
|
|
|
51281
51220
|
}
|
|
51282
51221
|
CallEvent.$metadata$ = interfaceMeta('CallEvent', [Actionable]);
|
|
51283
51222
|
function CallConversationUpdate(rtcId, name) {
|
|
51284
|
-
this.
|
|
51285
|
-
this.
|
|
51223
|
+
this.n2r_1 = rtcId;
|
|
51224
|
+
this.o2r_1 = name;
|
|
51286
51225
|
}
|
|
51287
51226
|
CallConversationUpdate.prototype.f4 = function () {
|
|
51288
|
-
return this.
|
|
51227
|
+
return this.o2r_1;
|
|
51289
51228
|
};
|
|
51290
51229
|
CallConversationUpdate.prototype.toString = function () {
|
|
51291
|
-
return 'CallConversationUpdate(rtcId=' + this.
|
|
51230
|
+
return 'CallConversationUpdate(rtcId=' + this.n2r_1 + ', name=' + this.o2r_1 + ')';
|
|
51292
51231
|
};
|
|
51293
51232
|
CallConversationUpdate.prototype.hashCode = function () {
|
|
51294
|
-
var result = getStringHashCode(this.
|
|
51295
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
51233
|
+
var result = getStringHashCode(this.n2r_1);
|
|
51234
|
+
result = imul(result, 31) + getStringHashCode(this.o2r_1) | 0;
|
|
51296
51235
|
return result;
|
|
51297
51236
|
};
|
|
51298
51237
|
CallConversationUpdate.prototype.equals = function (other) {
|
|
@@ -51301,9 +51240,9 @@ function requireClientsdkClientcore () {
|
|
|
51301
51240
|
if (!(other instanceof CallConversationUpdate))
|
|
51302
51241
|
return false;
|
|
51303
51242
|
var tmp0_other_with_cast = other instanceof CallConversationUpdate ? other : THROW_CCE();
|
|
51304
|
-
if (!(this.
|
|
51243
|
+
if (!(this.n2r_1 === tmp0_other_with_cast.n2r_1))
|
|
51305
51244
|
return false;
|
|
51306
|
-
if (!(this.
|
|
51245
|
+
if (!(this.o2r_1 === tmp0_other_with_cast.o2r_1))
|
|
51307
51246
|
return false;
|
|
51308
51247
|
return true;
|
|
51309
51248
|
};
|
|
@@ -51318,30 +51257,30 @@ function requireClientsdkClientcore () {
|
|
|
51318
51257
|
return CallCreate_init_$Init$(legId, from, direction, context, memberJoinInfo, $mask0, $marker, Object.create(CallCreate.prototype));
|
|
51319
51258
|
}
|
|
51320
51259
|
function CallCreate(legId, from, direction, context, memberJoinInfo) {
|
|
51321
|
-
this.
|
|
51322
|
-
this.
|
|
51323
|
-
this.
|
|
51324
|
-
this.
|
|
51325
|
-
this.
|
|
51260
|
+
this.p2r_1 = legId;
|
|
51261
|
+
this.q2r_1 = from;
|
|
51262
|
+
this.r2r_1 = direction;
|
|
51263
|
+
this.s2r_1 = context;
|
|
51264
|
+
this.t2r_1 = memberJoinInfo;
|
|
51326
51265
|
}
|
|
51327
51266
|
CallCreate.prototype.g1k = function () {
|
|
51328
|
-
return this.n2r_1;
|
|
51329
|
-
};
|
|
51330
|
-
CallCreate.prototype.s2r = function () {
|
|
51331
51267
|
return this.p2r_1;
|
|
51332
51268
|
};
|
|
51333
|
-
CallCreate.prototype.
|
|
51269
|
+
CallCreate.prototype.u2r = function () {
|
|
51334
51270
|
return this.r2r_1;
|
|
51335
51271
|
};
|
|
51272
|
+
CallCreate.prototype.v2r = function () {
|
|
51273
|
+
return this.t2r_1;
|
|
51274
|
+
};
|
|
51336
51275
|
CallCreate.prototype.toString = function () {
|
|
51337
|
-
return 'CallCreate(legId=' + this.
|
|
51276
|
+
return 'CallCreate(legId=' + this.p2r_1 + ', from=' + this.q2r_1 + ', direction=' + this.r2r_1 + ', context=' + this.s2r_1 + ', memberJoinInfo=' + this.t2r_1 + ')';
|
|
51338
51277
|
};
|
|
51339
51278
|
CallCreate.prototype.hashCode = function () {
|
|
51340
|
-
var result = getStringHashCode(this.
|
|
51341
|
-
result = imul(result, 31) + hashCode(this.
|
|
51342
|
-
result = imul(result, 31) + this.
|
|
51343
|
-
result = imul(result, 31) + (this.
|
|
51344
|
-
result = imul(result, 31) + (this.
|
|
51279
|
+
var result = getStringHashCode(this.p2r_1);
|
|
51280
|
+
result = imul(result, 31) + hashCode(this.q2r_1) | 0;
|
|
51281
|
+
result = imul(result, 31) + this.r2r_1.hashCode() | 0;
|
|
51282
|
+
result = imul(result, 31) + (this.s2r_1 == null ? 0 : hashCode(this.s2r_1)) | 0;
|
|
51283
|
+
result = imul(result, 31) + (this.t2r_1 == null ? 0 : this.t2r_1.hashCode()) | 0;
|
|
51345
51284
|
return result;
|
|
51346
51285
|
};
|
|
51347
51286
|
CallCreate.prototype.equals = function (other) {
|
|
@@ -51350,27 +51289,27 @@ function requireClientsdkClientcore () {
|
|
|
51350
51289
|
if (!(other instanceof CallCreate))
|
|
51351
51290
|
return false;
|
|
51352
51291
|
var tmp0_other_with_cast = other instanceof CallCreate ? other : THROW_CCE();
|
|
51353
|
-
if (!(this.
|
|
51292
|
+
if (!(this.p2r_1 === tmp0_other_with_cast.p2r_1))
|
|
51354
51293
|
return false;
|
|
51355
|
-
if (!equals(this.
|
|
51294
|
+
if (!equals(this.q2r_1, tmp0_other_with_cast.q2r_1))
|
|
51356
51295
|
return false;
|
|
51357
|
-
if (!this.
|
|
51296
|
+
if (!this.r2r_1.equals(tmp0_other_with_cast.r2r_1))
|
|
51358
51297
|
return false;
|
|
51359
|
-
if (!equals(this.
|
|
51298
|
+
if (!equals(this.s2r_1, tmp0_other_with_cast.s2r_1))
|
|
51360
51299
|
return false;
|
|
51361
|
-
if (!equals(this.
|
|
51300
|
+
if (!equals(this.t2r_1, tmp0_other_with_cast.t2r_1))
|
|
51362
51301
|
return false;
|
|
51363
51302
|
return true;
|
|
51364
51303
|
};
|
|
51365
51304
|
CallCreate.$metadata$ = classMeta('CallCreate', [CallEvent]);
|
|
51366
51305
|
function CallMemberMediaTimeout(callId) {
|
|
51367
|
-
this.
|
|
51306
|
+
this.w2r_1 = callId;
|
|
51368
51307
|
}
|
|
51369
51308
|
CallMemberMediaTimeout.prototype.toString = function () {
|
|
51370
|
-
return 'CallMemberMediaTimeout(callId=' + this.
|
|
51309
|
+
return 'CallMemberMediaTimeout(callId=' + this.w2r_1 + ')';
|
|
51371
51310
|
};
|
|
51372
51311
|
CallMemberMediaTimeout.prototype.hashCode = function () {
|
|
51373
|
-
return getStringHashCode(this.
|
|
51312
|
+
return getStringHashCode(this.w2r_1);
|
|
51374
51313
|
};
|
|
51375
51314
|
CallMemberMediaTimeout.prototype.equals = function (other) {
|
|
51376
51315
|
if (this === other)
|
|
@@ -51378,27 +51317,47 @@ function requireClientsdkClientcore () {
|
|
|
51378
51317
|
if (!(other instanceof CallMemberMediaTimeout))
|
|
51379
51318
|
return false;
|
|
51380
51319
|
var tmp0_other_with_cast = other instanceof CallMemberMediaTimeout ? other : THROW_CCE();
|
|
51381
|
-
if (!(this.
|
|
51320
|
+
if (!(this.w2r_1 === tmp0_other_with_cast.w2r_1))
|
|
51382
51321
|
return false;
|
|
51383
51322
|
return true;
|
|
51384
51323
|
};
|
|
51385
51324
|
CallMemberMediaTimeout.$metadata$ = classMeta('CallMemberMediaTimeout', [CallEvent]);
|
|
51325
|
+
function InviteCleanup(callId) {
|
|
51326
|
+
this.x2r_1 = callId;
|
|
51327
|
+
}
|
|
51328
|
+
InviteCleanup.prototype.toString = function () {
|
|
51329
|
+
return 'InviteCleanup(callId=' + this.x2r_1 + ')';
|
|
51330
|
+
};
|
|
51331
|
+
InviteCleanup.prototype.hashCode = function () {
|
|
51332
|
+
return getStringHashCode(this.x2r_1);
|
|
51333
|
+
};
|
|
51334
|
+
InviteCleanup.prototype.equals = function (other) {
|
|
51335
|
+
if (this === other)
|
|
51336
|
+
return true;
|
|
51337
|
+
if (!(other instanceof InviteCleanup))
|
|
51338
|
+
return false;
|
|
51339
|
+
var tmp0_other_with_cast = other instanceof InviteCleanup ? other : THROW_CCE();
|
|
51340
|
+
if (!(this.x2r_1 === tmp0_other_with_cast.x2r_1))
|
|
51341
|
+
return false;
|
|
51342
|
+
return true;
|
|
51343
|
+
};
|
|
51344
|
+
InviteCleanup.$metadata$ = classMeta('InviteCleanup', [CallEvent]);
|
|
51386
51345
|
function MemberJoinInfo(conversationId, memberId) {
|
|
51387
|
-
this.
|
|
51388
|
-
this.
|
|
51346
|
+
this.y2r_1 = conversationId;
|
|
51347
|
+
this.z2r_1 = memberId;
|
|
51389
51348
|
}
|
|
51390
|
-
MemberJoinInfo.prototype.
|
|
51391
|
-
return this.
|
|
51349
|
+
MemberJoinInfo.prototype.c2r = function () {
|
|
51350
|
+
return this.y2r_1;
|
|
51392
51351
|
};
|
|
51393
|
-
MemberJoinInfo.prototype.
|
|
51394
|
-
return this.
|
|
51352
|
+
MemberJoinInfo.prototype.k2r = function () {
|
|
51353
|
+
return this.z2r_1;
|
|
51395
51354
|
};
|
|
51396
51355
|
MemberJoinInfo.prototype.toString = function () {
|
|
51397
|
-
return 'MemberJoinInfo(conversationId=' + this.
|
|
51356
|
+
return 'MemberJoinInfo(conversationId=' + this.y2r_1 + ', memberId=' + this.z2r_1 + ')';
|
|
51398
51357
|
};
|
|
51399
51358
|
MemberJoinInfo.prototype.hashCode = function () {
|
|
51400
|
-
var result = getStringHashCode(this.
|
|
51401
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
51359
|
+
var result = getStringHashCode(this.y2r_1);
|
|
51360
|
+
result = imul(result, 31) + getStringHashCode(this.z2r_1) | 0;
|
|
51402
51361
|
return result;
|
|
51403
51362
|
};
|
|
51404
51363
|
MemberJoinInfo.prototype.equals = function (other) {
|
|
@@ -51407,9 +51366,9 @@ function requireClientsdkClientcore () {
|
|
|
51407
51366
|
if (!(other instanceof MemberJoinInfo))
|
|
51408
51367
|
return false;
|
|
51409
51368
|
var tmp0_other_with_cast = other instanceof MemberJoinInfo ? other : THROW_CCE();
|
|
51410
|
-
if (!(this.
|
|
51369
|
+
if (!(this.y2r_1 === tmp0_other_with_cast.y2r_1))
|
|
51411
51370
|
return false;
|
|
51412
|
-
if (!(this.
|
|
51371
|
+
if (!(this.z2r_1 === tmp0_other_with_cast.z2r_1))
|
|
51413
51372
|
return false;
|
|
51414
51373
|
return true;
|
|
51415
51374
|
};
|
|
@@ -51430,10 +51389,6 @@ function requireClientsdkClientcore () {
|
|
|
51430
51389
|
VoiceInviteCancelReason_initEntries();
|
|
51431
51390
|
return VoiceInviteCancelReason_RemoteTimeout_instance;
|
|
51432
51391
|
}
|
|
51433
|
-
function HangupReason_remoteReject_getInstance() {
|
|
51434
|
-
HangupReason_initEntries();
|
|
51435
|
-
return HangupReason_remoteReject_instance;
|
|
51436
|
-
}
|
|
51437
51392
|
function HangupReason_remoteHangup_getInstance() {
|
|
51438
51393
|
HangupReason_initEntries();
|
|
51439
51394
|
return HangupReason_remoteHangup_instance;
|
|
@@ -51442,6 +51397,10 @@ function requireClientsdkClientcore () {
|
|
|
51442
51397
|
HangupReason_initEntries();
|
|
51443
51398
|
return HangupReason_localHangup_instance;
|
|
51444
51399
|
}
|
|
51400
|
+
function HangupReason_mediaTimeout_getInstance() {
|
|
51401
|
+
HangupReason_initEntries();
|
|
51402
|
+
return HangupReason_mediaTimeout_instance;
|
|
51403
|
+
}
|
|
51445
51404
|
function LegStatus_ringing_getInstance() {
|
|
51446
51405
|
LegStatus_initEntries();
|
|
51447
51406
|
return LegStatus_ringing_instance;
|
|
@@ -51525,10 +51484,10 @@ function requireClientsdkClientcore () {
|
|
|
51525
51484
|
Companion_instance_109 = this;
|
|
51526
51485
|
var tmp = this;
|
|
51527
51486
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
51528
|
-
tmp.
|
|
51487
|
+
tmp.a2s_1 = lazy(tmp_0, ChannelEndpoint$Companion$$cachedSerializer$delegate$_anonymous__ov330i);
|
|
51529
51488
|
}
|
|
51530
51489
|
Companion_109.prototype.v10 = function () {
|
|
51531
|
-
return this.
|
|
51490
|
+
return this.a2s_1.s1();
|
|
51532
51491
|
};
|
|
51533
51492
|
Companion_109.prototype.nr = function (typeParamsSerializers) {
|
|
51534
51493
|
return this.v10();
|
|
@@ -51599,10 +51558,10 @@ function requireClientsdkClientcore () {
|
|
|
51599
51558
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.PhoneChannelEndpoint', this, 2);
|
|
51600
51559
|
tmp0_serialDesc.eq('number', false);
|
|
51601
51560
|
tmp0_serialDesc.eq('type', true);
|
|
51602
|
-
this.
|
|
51561
|
+
this.b2s_1 = tmp0_serialDesc;
|
|
51603
51562
|
}
|
|
51604
51563
|
$serializer_144.prototype.yf = function () {
|
|
51605
|
-
return this.
|
|
51564
|
+
return this.b2s_1;
|
|
51606
51565
|
};
|
|
51607
51566
|
$serializer_144.prototype.tq = function () {
|
|
51608
51567
|
var tmp$ret$2;
|
|
@@ -51618,7 +51577,7 @@ function requireClientsdkClientcore () {
|
|
|
51618
51577
|
return tmp$ret$2;
|
|
51619
51578
|
};
|
|
51620
51579
|
$serializer_144.prototype.ag = function (decoder) {
|
|
51621
|
-
var tmp0_desc = this.
|
|
51580
|
+
var tmp0_desc = this.b2s_1;
|
|
51622
51581
|
var tmp1_flag = true;
|
|
51623
51582
|
var tmp2_index = 0;
|
|
51624
51583
|
var tmp3_bitMask0 = 0;
|
|
@@ -51652,8 +51611,8 @@ function requireClientsdkClientcore () {
|
|
|
51652
51611
|
tmp6_input.gj(tmp0_desc);
|
|
51653
51612
|
return PhoneChannelEndpoint_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
51654
51613
|
};
|
|
51655
|
-
$serializer_144.prototype.
|
|
51656
|
-
var tmp0_desc = this.
|
|
51614
|
+
$serializer_144.prototype.c2s = function (encoder, value) {
|
|
51615
|
+
var tmp0_desc = this.b2s_1;
|
|
51657
51616
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
51658
51617
|
tmp1_output.sk(tmp0_desc, 0, value.u1j_1);
|
|
51659
51618
|
if (tmp1_output.zk(tmp0_desc, 1) ? true : !value.v1j_1.equals(VoiceChannelType_phone_getInstance())) {
|
|
@@ -51662,7 +51621,7 @@ function requireClientsdkClientcore () {
|
|
|
51662
51621
|
tmp1_output.gj(tmp0_desc);
|
|
51663
51622
|
};
|
|
51664
51623
|
$serializer_144.prototype.zf = function (encoder, value) {
|
|
51665
|
-
return this.
|
|
51624
|
+
return this.c2s(encoder, value instanceof PhoneChannelEndpoint ? value : THROW_CCE());
|
|
51666
51625
|
};
|
|
51667
51626
|
$serializer_144.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
51668
51627
|
var $serializer_instance_144;
|
|
@@ -51673,7 +51632,7 @@ function requireClientsdkClientcore () {
|
|
|
51673
51632
|
}
|
|
51674
51633
|
function PhoneChannelEndpoint_init_$Init$(seen1, number, type, serializationConstructorMarker, $this) {
|
|
51675
51634
|
if (!(1 === (1 & seen1))) {
|
|
51676
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_144().
|
|
51635
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_144().b2s_1);
|
|
51677
51636
|
}
|
|
51678
51637
|
ChannelEndpoint_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
51679
51638
|
$this.u1j_1 = number;
|
|
@@ -51692,10 +51651,10 @@ function requireClientsdkClientcore () {
|
|
|
51692
51651
|
this.u1j_1 = number;
|
|
51693
51652
|
this.v1j_1 = VoiceChannelType_phone_getInstance();
|
|
51694
51653
|
}
|
|
51695
|
-
PhoneChannelEndpoint.prototype.
|
|
51654
|
+
PhoneChannelEndpoint.prototype.d2s = function () {
|
|
51696
51655
|
return this.u1j_1;
|
|
51697
51656
|
};
|
|
51698
|
-
PhoneChannelEndpoint.prototype.
|
|
51657
|
+
PhoneChannelEndpoint.prototype.l2q = function () {
|
|
51699
51658
|
return this.v1j_1;
|
|
51700
51659
|
};
|
|
51701
51660
|
PhoneChannelEndpoint.prototype.toString = function () {
|
|
@@ -51733,10 +51692,10 @@ function requireClientsdkClientcore () {
|
|
|
51733
51692
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.AppChannelEndpoint', this, 2);
|
|
51734
51693
|
tmp0_serialDesc.eq('user', false);
|
|
51735
51694
|
tmp0_serialDesc.eq('type', true);
|
|
51736
|
-
this.
|
|
51695
|
+
this.e2s_1 = tmp0_serialDesc;
|
|
51737
51696
|
}
|
|
51738
51697
|
$serializer_145.prototype.yf = function () {
|
|
51739
|
-
return this.
|
|
51698
|
+
return this.e2s_1;
|
|
51740
51699
|
};
|
|
51741
51700
|
$serializer_145.prototype.tq = function () {
|
|
51742
51701
|
var tmp$ret$2;
|
|
@@ -51752,7 +51711,7 @@ function requireClientsdkClientcore () {
|
|
|
51752
51711
|
return tmp$ret$2;
|
|
51753
51712
|
};
|
|
51754
51713
|
$serializer_145.prototype.ag = function (decoder) {
|
|
51755
|
-
var tmp0_desc = this.
|
|
51714
|
+
var tmp0_desc = this.e2s_1;
|
|
51756
51715
|
var tmp1_flag = true;
|
|
51757
51716
|
var tmp2_index = 0;
|
|
51758
51717
|
var tmp3_bitMask0 = 0;
|
|
@@ -51786,8 +51745,8 @@ function requireClientsdkClientcore () {
|
|
|
51786
51745
|
tmp6_input.gj(tmp0_desc);
|
|
51787
51746
|
return AppChannelEndpoint_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
51788
51747
|
};
|
|
51789
|
-
$serializer_145.prototype.
|
|
51790
|
-
var tmp0_desc = this.
|
|
51748
|
+
$serializer_145.prototype.f2s = function (encoder, value) {
|
|
51749
|
+
var tmp0_desc = this.e2s_1;
|
|
51791
51750
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
51792
51751
|
tmp1_output.sk(tmp0_desc, 0, value.w1j_1);
|
|
51793
51752
|
if (tmp1_output.zk(tmp0_desc, 1) ? true : !value.x1j_1.equals(VoiceChannelType_app_getInstance())) {
|
|
@@ -51796,7 +51755,7 @@ function requireClientsdkClientcore () {
|
|
|
51796
51755
|
tmp1_output.gj(tmp0_desc);
|
|
51797
51756
|
};
|
|
51798
51757
|
$serializer_145.prototype.zf = function (encoder, value) {
|
|
51799
|
-
return this.
|
|
51758
|
+
return this.f2s(encoder, value instanceof AppChannelEndpoint ? value : THROW_CCE());
|
|
51800
51759
|
};
|
|
51801
51760
|
$serializer_145.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
51802
51761
|
var $serializer_instance_145;
|
|
@@ -51807,7 +51766,7 @@ function requireClientsdkClientcore () {
|
|
|
51807
51766
|
}
|
|
51808
51767
|
function AppChannelEndpoint_init_$Init$(seen1, user, type, serializationConstructorMarker, $this) {
|
|
51809
51768
|
if (!(1 === (1 & seen1))) {
|
|
51810
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_145().
|
|
51769
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_145().e2s_1);
|
|
51811
51770
|
}
|
|
51812
51771
|
ChannelEndpoint_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
51813
51772
|
$this.w1j_1 = user;
|
|
@@ -51829,7 +51788,7 @@ function requireClientsdkClientcore () {
|
|
|
51829
51788
|
AppChannelEndpoint.prototype.n1k = function () {
|
|
51830
51789
|
return this.w1j_1;
|
|
51831
51790
|
};
|
|
51832
|
-
AppChannelEndpoint.prototype.
|
|
51791
|
+
AppChannelEndpoint.prototype.l2q = function () {
|
|
51833
51792
|
return this.x1j_1;
|
|
51834
51793
|
};
|
|
51835
51794
|
AppChannelEndpoint.prototype.toString = function () {
|
|
@@ -51865,16 +51824,16 @@ function requireClientsdkClientcore () {
|
|
|
51865
51824
|
function AppChannelEndpointNoUser() {
|
|
51866
51825
|
AppChannelEndpointNoUser_instance = this;
|
|
51867
51826
|
ChannelEndpoint.call(this);
|
|
51868
|
-
this.
|
|
51827
|
+
this.g2s_1 = VoiceChannelType_app_getInstance();
|
|
51869
51828
|
var tmp = this;
|
|
51870
51829
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
51871
|
-
tmp.
|
|
51830
|
+
tmp.h2s_1 = lazy(tmp_0, AppChannelEndpointNoUser$$cachedSerializer$delegate$_anonymous__g6jshx);
|
|
51872
51831
|
}
|
|
51873
|
-
AppChannelEndpointNoUser.prototype.
|
|
51874
|
-
return this.
|
|
51832
|
+
AppChannelEndpointNoUser.prototype.l2q = function () {
|
|
51833
|
+
return this.g2s_1;
|
|
51875
51834
|
};
|
|
51876
51835
|
AppChannelEndpointNoUser.prototype.v10 = function () {
|
|
51877
|
-
return this.
|
|
51836
|
+
return this.h2s_1.s1();
|
|
51878
51837
|
};
|
|
51879
51838
|
AppChannelEndpointNoUser.prototype.nr = function (typeParamsSerializers) {
|
|
51880
51839
|
return this.v10();
|
|
@@ -51906,10 +51865,10 @@ function requireClientsdkClientcore () {
|
|
|
51906
51865
|
tmp0_serialDesc.eq('username', true);
|
|
51907
51866
|
tmp0_serialDesc.eq('password', true);
|
|
51908
51867
|
tmp0_serialDesc.eq('type', true);
|
|
51909
|
-
this.
|
|
51868
|
+
this.i2s_1 = tmp0_serialDesc;
|
|
51910
51869
|
}
|
|
51911
51870
|
$serializer_146.prototype.yf = function () {
|
|
51912
|
-
return this.
|
|
51871
|
+
return this.i2s_1;
|
|
51913
51872
|
};
|
|
51914
51873
|
$serializer_146.prototype.tq = function () {
|
|
51915
51874
|
var tmp$ret$2;
|
|
@@ -51925,7 +51884,7 @@ function requireClientsdkClientcore () {
|
|
|
51925
51884
|
return tmp$ret$2;
|
|
51926
51885
|
};
|
|
51927
51886
|
$serializer_146.prototype.ag = function (decoder) {
|
|
51928
|
-
var tmp0_desc = this.
|
|
51887
|
+
var tmp0_desc = this.i2s_1;
|
|
51929
51888
|
var tmp1_flag = true;
|
|
51930
51889
|
var tmp2_index = 0;
|
|
51931
51890
|
var tmp3_bitMask0 = 0;
|
|
@@ -51973,8 +51932,8 @@ function requireClientsdkClientcore () {
|
|
|
51973
51932
|
tmp8_input.gj(tmp0_desc);
|
|
51974
51933
|
return SipChannelEndpoint_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
|
|
51975
51934
|
};
|
|
51976
|
-
$serializer_146.prototype.
|
|
51977
|
-
var tmp0_desc = this.
|
|
51935
|
+
$serializer_146.prototype.j2s = function (encoder, value) {
|
|
51936
|
+
var tmp0_desc = this.i2s_1;
|
|
51978
51937
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
51979
51938
|
tmp1_output.sk(tmp0_desc, 0, value.o1j_1);
|
|
51980
51939
|
if (tmp1_output.zk(tmp0_desc, 1) ? true : !(value.p1j_1 == null)) {
|
|
@@ -51989,7 +51948,7 @@ function requireClientsdkClientcore () {
|
|
|
51989
51948
|
tmp1_output.gj(tmp0_desc);
|
|
51990
51949
|
};
|
|
51991
51950
|
$serializer_146.prototype.zf = function (encoder, value) {
|
|
51992
|
-
return this.
|
|
51951
|
+
return this.j2s(encoder, value instanceof SipChannelEndpoint ? value : THROW_CCE());
|
|
51993
51952
|
};
|
|
51994
51953
|
$serializer_146.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
51995
51954
|
var $serializer_instance_146;
|
|
@@ -52000,7 +51959,7 @@ function requireClientsdkClientcore () {
|
|
|
52000
51959
|
}
|
|
52001
51960
|
function SipChannelEndpoint_init_$Init$(seen1, uri, username, password, type, serializationConstructorMarker, $this) {
|
|
52002
51961
|
if (!(1 === (1 & seen1))) {
|
|
52003
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_146().
|
|
51962
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_146().i2s_1);
|
|
52004
51963
|
}
|
|
52005
51964
|
ChannelEndpoint_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
52006
51965
|
$this.o1j_1 = uri;
|
|
@@ -52029,13 +51988,13 @@ function requireClientsdkClientcore () {
|
|
|
52029
51988
|
this.q1j_1 = password;
|
|
52030
51989
|
this.r1j_1 = VoiceChannelType_sip_getInstance();
|
|
52031
51990
|
}
|
|
52032
|
-
SipChannelEndpoint.prototype.
|
|
51991
|
+
SipChannelEndpoint.prototype.k2s = function () {
|
|
52033
51992
|
return this.o1j_1;
|
|
52034
51993
|
};
|
|
52035
|
-
SipChannelEndpoint.prototype.
|
|
51994
|
+
SipChannelEndpoint.prototype.l2s = function () {
|
|
52036
51995
|
return this.p1j_1;
|
|
52037
51996
|
};
|
|
52038
|
-
SipChannelEndpoint.prototype.
|
|
51997
|
+
SipChannelEndpoint.prototype.l2q = function () {
|
|
52039
51998
|
return this.r1j_1;
|
|
52040
51999
|
};
|
|
52041
52000
|
SipChannelEndpoint.prototype.toString = function () {
|
|
@@ -52080,10 +52039,10 @@ function requireClientsdkClientcore () {
|
|
|
52080
52039
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.WebSocketChannelEndpoint', this, 2);
|
|
52081
52040
|
tmp0_serialDesc.eq('uri', false);
|
|
52082
52041
|
tmp0_serialDesc.eq('type', true);
|
|
52083
|
-
this.
|
|
52042
|
+
this.m2s_1 = tmp0_serialDesc;
|
|
52084
52043
|
}
|
|
52085
52044
|
$serializer_147.prototype.yf = function () {
|
|
52086
|
-
return this.
|
|
52045
|
+
return this.m2s_1;
|
|
52087
52046
|
};
|
|
52088
52047
|
$serializer_147.prototype.tq = function () {
|
|
52089
52048
|
var tmp$ret$2;
|
|
@@ -52099,7 +52058,7 @@ function requireClientsdkClientcore () {
|
|
|
52099
52058
|
return tmp$ret$2;
|
|
52100
52059
|
};
|
|
52101
52060
|
$serializer_147.prototype.ag = function (decoder) {
|
|
52102
|
-
var tmp0_desc = this.
|
|
52061
|
+
var tmp0_desc = this.m2s_1;
|
|
52103
52062
|
var tmp1_flag = true;
|
|
52104
52063
|
var tmp2_index = 0;
|
|
52105
52064
|
var tmp3_bitMask0 = 0;
|
|
@@ -52133,8 +52092,8 @@ function requireClientsdkClientcore () {
|
|
|
52133
52092
|
tmp6_input.gj(tmp0_desc);
|
|
52134
52093
|
return WebSocketChannelEndpoint_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
52135
52094
|
};
|
|
52136
|
-
$serializer_147.prototype.
|
|
52137
|
-
var tmp0_desc = this.
|
|
52095
|
+
$serializer_147.prototype.n2s = function (encoder, value) {
|
|
52096
|
+
var tmp0_desc = this.m2s_1;
|
|
52138
52097
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52139
52098
|
tmp1_output.sk(tmp0_desc, 0, value.s1j_1);
|
|
52140
52099
|
if (tmp1_output.zk(tmp0_desc, 1) ? true : !value.t1j_1.equals(VoiceChannelType_websocket_getInstance())) {
|
|
@@ -52143,7 +52102,7 @@ function requireClientsdkClientcore () {
|
|
|
52143
52102
|
tmp1_output.gj(tmp0_desc);
|
|
52144
52103
|
};
|
|
52145
52104
|
$serializer_147.prototype.zf = function (encoder, value) {
|
|
52146
|
-
return this.
|
|
52105
|
+
return this.n2s(encoder, value instanceof WebSocketChannelEndpoint ? value : THROW_CCE());
|
|
52147
52106
|
};
|
|
52148
52107
|
$serializer_147.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52149
52108
|
var $serializer_instance_147;
|
|
@@ -52154,7 +52113,7 @@ function requireClientsdkClientcore () {
|
|
|
52154
52113
|
}
|
|
52155
52114
|
function WebSocketChannelEndpoint_init_$Init$(seen1, uri, type, serializationConstructorMarker, $this) {
|
|
52156
52115
|
if (!(1 === (1 & seen1))) {
|
|
52157
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_147().
|
|
52116
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_147().m2s_1);
|
|
52158
52117
|
}
|
|
52159
52118
|
ChannelEndpoint_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
52160
52119
|
$this.s1j_1 = uri;
|
|
@@ -52173,10 +52132,10 @@ function requireClientsdkClientcore () {
|
|
|
52173
52132
|
this.s1j_1 = uri;
|
|
52174
52133
|
this.t1j_1 = VoiceChannelType_websocket_getInstance();
|
|
52175
52134
|
}
|
|
52176
|
-
WebSocketChannelEndpoint.prototype.
|
|
52135
|
+
WebSocketChannelEndpoint.prototype.k2s = function () {
|
|
52177
52136
|
return this.s1j_1;
|
|
52178
52137
|
};
|
|
52179
|
-
WebSocketChannelEndpoint.prototype.
|
|
52138
|
+
WebSocketChannelEndpoint.prototype.l2q = function () {
|
|
52180
52139
|
return this.t1j_1;
|
|
52181
52140
|
};
|
|
52182
52141
|
WebSocketChannelEndpoint.prototype.toString = function () {
|
|
@@ -52211,10 +52170,10 @@ function requireClientsdkClientcore () {
|
|
|
52211
52170
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.DTMFChannel', this, 2);
|
|
52212
52171
|
tmp0_serialDesc.eq('id', true);
|
|
52213
52172
|
tmp0_serialDesc.eq('type', true);
|
|
52214
|
-
this.
|
|
52173
|
+
this.o2s_1 = tmp0_serialDesc;
|
|
52215
52174
|
}
|
|
52216
52175
|
$serializer_148.prototype.yf = function () {
|
|
52217
|
-
return this.
|
|
52176
|
+
return this.o2s_1;
|
|
52218
52177
|
};
|
|
52219
52178
|
$serializer_148.prototype.tq = function () {
|
|
52220
52179
|
var tmp$ret$2;
|
|
@@ -52230,7 +52189,7 @@ function requireClientsdkClientcore () {
|
|
|
52230
52189
|
return tmp$ret$2;
|
|
52231
52190
|
};
|
|
52232
52191
|
$serializer_148.prototype.ag = function (decoder) {
|
|
52233
|
-
var tmp0_desc = this.
|
|
52192
|
+
var tmp0_desc = this.o2s_1;
|
|
52234
52193
|
var tmp1_flag = true;
|
|
52235
52194
|
var tmp2_index = 0;
|
|
52236
52195
|
var tmp3_bitMask0 = 0;
|
|
@@ -52264,8 +52223,8 @@ function requireClientsdkClientcore () {
|
|
|
52264
52223
|
tmp6_input.gj(tmp0_desc);
|
|
52265
52224
|
return DTMFChannel_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
52266
52225
|
};
|
|
52267
|
-
$serializer_148.prototype.
|
|
52268
|
-
var tmp0_desc = this.
|
|
52226
|
+
$serializer_148.prototype.p2s = function (encoder, value) {
|
|
52227
|
+
var tmp0_desc = this.o2s_1;
|
|
52269
52228
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52270
52229
|
if (tmp1_output.zk(tmp0_desc, 0) ? true : !(value.k2j_1 == null)) {
|
|
52271
52230
|
tmp1_output.vk(tmp0_desc, 0, StringSerializer_getInstance(), value.k2j_1);
|
|
@@ -52276,7 +52235,7 @@ function requireClientsdkClientcore () {
|
|
|
52276
52235
|
tmp1_output.gj(tmp0_desc);
|
|
52277
52236
|
};
|
|
52278
52237
|
$serializer_148.prototype.zf = function (encoder, value) {
|
|
52279
|
-
return this.
|
|
52238
|
+
return this.p2s(encoder, value instanceof DTMFChannel ? value : THROW_CCE());
|
|
52280
52239
|
};
|
|
52281
52240
|
$serializer_148.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52282
52241
|
var $serializer_instance_148;
|
|
@@ -52287,7 +52246,7 @@ function requireClientsdkClientcore () {
|
|
|
52287
52246
|
}
|
|
52288
52247
|
function DTMFChannel_init_$Init$(seen1, id, type, serializationConstructorMarker, $this) {
|
|
52289
52248
|
if (!(0 === (0 & seen1))) {
|
|
52290
|
-
throwMissingFieldException(seen1, 0, $serializer_getInstance_148().
|
|
52249
|
+
throwMissingFieldException(seen1, 0, $serializer_getInstance_148().o2s_1);
|
|
52291
52250
|
}
|
|
52292
52251
|
if (0 === (seen1 & 1))
|
|
52293
52252
|
$this.k2j_1 = null;
|
|
@@ -52337,10 +52296,10 @@ function requireClientsdkClientcore () {
|
|
|
52337
52296
|
tmp0_serialDesc.eq('leg_ids', true);
|
|
52338
52297
|
tmp0_serialDesc.eq('from', true);
|
|
52339
52298
|
tmp0_serialDesc.eq('to', true);
|
|
52340
|
-
this.
|
|
52299
|
+
this.q2s_1 = tmp0_serialDesc;
|
|
52341
52300
|
}
|
|
52342
52301
|
$serializer_149.prototype.yf = function () {
|
|
52343
|
-
return this.
|
|
52302
|
+
return this.q2s_1;
|
|
52344
52303
|
};
|
|
52345
52304
|
$serializer_149.prototype.tq = function () {
|
|
52346
52305
|
var tmp$ret$2;
|
|
@@ -52356,7 +52315,7 @@ function requireClientsdkClientcore () {
|
|
|
52356
52315
|
return tmp$ret$2;
|
|
52357
52316
|
};
|
|
52358
52317
|
$serializer_149.prototype.ag = function (decoder) {
|
|
52359
|
-
var tmp0_desc = this.
|
|
52318
|
+
var tmp0_desc = this.q2s_1;
|
|
52360
52319
|
var tmp1_flag = true;
|
|
52361
52320
|
var tmp2_index = 0;
|
|
52362
52321
|
var tmp3_bitMask0 = 0;
|
|
@@ -52418,8 +52377,8 @@ function requireClientsdkClientcore () {
|
|
|
52418
52377
|
tmp10_input.gj(tmp0_desc);
|
|
52419
52378
|
return Channel_init_$Create$_0(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, null);
|
|
52420
52379
|
};
|
|
52421
|
-
$serializer_149.prototype.
|
|
52422
|
-
var tmp0_desc = this.
|
|
52380
|
+
$serializer_149.prototype.r2s = function (encoder, value) {
|
|
52381
|
+
var tmp0_desc = this.q2s_1;
|
|
52423
52382
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52424
52383
|
if (tmp1_output.zk(tmp0_desc, 0) ? true : !(value.e2j_1 == null)) {
|
|
52425
52384
|
tmp1_output.vk(tmp0_desc, 0, StringSerializer_getInstance(), value.e2j_1);
|
|
@@ -52440,7 +52399,7 @@ function requireClientsdkClientcore () {
|
|
|
52440
52399
|
tmp1_output.gj(tmp0_desc);
|
|
52441
52400
|
};
|
|
52442
52401
|
$serializer_149.prototype.zf = function (encoder, value) {
|
|
52443
|
-
return this.
|
|
52402
|
+
return this.r2s(encoder, value instanceof Channel_0 ? value : THROW_CCE());
|
|
52444
52403
|
};
|
|
52445
52404
|
$serializer_149.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52446
52405
|
var $serializer_instance_149;
|
|
@@ -52451,7 +52410,7 @@ function requireClientsdkClientcore () {
|
|
|
52451
52410
|
}
|
|
52452
52411
|
function Channel_init_$Init$_0(seen1, id, knocking_id, type, leg_ids, from, to, serializationConstructorMarker, $this) {
|
|
52453
52412
|
if (!(4 === (4 & seen1))) {
|
|
52454
|
-
throwMissingFieldException(seen1, 4, $serializer_getInstance_149().
|
|
52413
|
+
throwMissingFieldException(seen1, 4, $serializer_getInstance_149().q2s_1);
|
|
52455
52414
|
}
|
|
52456
52415
|
if (0 === (seen1 & 1))
|
|
52457
52416
|
$this.e2j_1 = null;
|
|
@@ -52582,10 +52541,10 @@ function requireClientsdkClientcore () {
|
|
|
52582
52541
|
tmp0_serialDesc.eq('conversation_id', false);
|
|
52583
52542
|
tmp0_serialDesc.eq('name', false);
|
|
52584
52543
|
tmp0_serialDesc.eq('display_name', true);
|
|
52585
|
-
this.
|
|
52544
|
+
this.u2s_1 = tmp0_serialDesc;
|
|
52586
52545
|
}
|
|
52587
52546
|
$serializer_150.prototype.yf = function () {
|
|
52588
|
-
return this.
|
|
52547
|
+
return this.u2s_1;
|
|
52589
52548
|
};
|
|
52590
52549
|
$serializer_150.prototype.tq = function () {
|
|
52591
52550
|
var tmp$ret$2;
|
|
@@ -52601,7 +52560,7 @@ function requireClientsdkClientcore () {
|
|
|
52601
52560
|
return tmp$ret$2;
|
|
52602
52561
|
};
|
|
52603
52562
|
$serializer_150.prototype.ag = function (decoder) {
|
|
52604
|
-
var tmp0_desc = this.
|
|
52563
|
+
var tmp0_desc = this.u2s_1;
|
|
52605
52564
|
var tmp1_flag = true;
|
|
52606
52565
|
var tmp2_index = 0;
|
|
52607
52566
|
var tmp3_bitMask0 = 0;
|
|
@@ -52642,18 +52601,18 @@ function requireClientsdkClientcore () {
|
|
|
52642
52601
|
tmp7_input.gj(tmp0_desc);
|
|
52643
52602
|
return ConversationInfo_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
52644
52603
|
};
|
|
52645
|
-
$serializer_150.prototype.
|
|
52646
|
-
var tmp0_desc = this.
|
|
52604
|
+
$serializer_150.prototype.v2s = function (encoder, value) {
|
|
52605
|
+
var tmp0_desc = this.u2s_1;
|
|
52647
52606
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52648
|
-
tmp1_output.sk(tmp0_desc, 0, value.
|
|
52649
|
-
tmp1_output.sk(tmp0_desc, 1, value.
|
|
52650
|
-
if (tmp1_output.zk(tmp0_desc, 2) ? true : !(value.
|
|
52651
|
-
tmp1_output.vk(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
52607
|
+
tmp1_output.sk(tmp0_desc, 0, value.w2s_1);
|
|
52608
|
+
tmp1_output.sk(tmp0_desc, 1, value.x2s_1);
|
|
52609
|
+
if (tmp1_output.zk(tmp0_desc, 2) ? true : !(value.y2s_1 == null)) {
|
|
52610
|
+
tmp1_output.vk(tmp0_desc, 2, StringSerializer_getInstance(), value.y2s_1);
|
|
52652
52611
|
}
|
|
52653
52612
|
tmp1_output.gj(tmp0_desc);
|
|
52654
52613
|
};
|
|
52655
52614
|
$serializer_150.prototype.zf = function (encoder, value) {
|
|
52656
|
-
return this.
|
|
52615
|
+
return this.v2s(encoder, value instanceof ConversationInfo ? value : THROW_CCE());
|
|
52657
52616
|
};
|
|
52658
52617
|
$serializer_150.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52659
52618
|
var $serializer_instance_150;
|
|
@@ -52664,14 +52623,14 @@ function requireClientsdkClientcore () {
|
|
|
52664
52623
|
}
|
|
52665
52624
|
function ConversationInfo_init_$Init$(seen1, conversation_id, name, display_name, serializationConstructorMarker, $this) {
|
|
52666
52625
|
if (!(3 === (3 & seen1))) {
|
|
52667
|
-
throwMissingFieldException(seen1, 3, $serializer_getInstance_150().
|
|
52626
|
+
throwMissingFieldException(seen1, 3, $serializer_getInstance_150().u2s_1);
|
|
52668
52627
|
}
|
|
52669
|
-
$this.
|
|
52670
|
-
$this.
|
|
52628
|
+
$this.w2s_1 = conversation_id;
|
|
52629
|
+
$this.x2s_1 = name;
|
|
52671
52630
|
if (0 === (seen1 & 4))
|
|
52672
|
-
$this.
|
|
52631
|
+
$this.y2s_1 = null;
|
|
52673
52632
|
else
|
|
52674
|
-
$this.
|
|
52633
|
+
$this.y2s_1 = display_name;
|
|
52675
52634
|
return $this;
|
|
52676
52635
|
}
|
|
52677
52636
|
function ConversationInfo_init_$Create$(seen1, conversation_id, name, display_name, serializationConstructorMarker) {
|
|
@@ -52680,12 +52639,12 @@ function requireClientsdkClientcore () {
|
|
|
52680
52639
|
function ConversationInfo() {
|
|
52681
52640
|
}
|
|
52682
52641
|
ConversationInfo.prototype.toString = function () {
|
|
52683
|
-
return 'ConversationInfo(conversation_id=' + this.
|
|
52642
|
+
return 'ConversationInfo(conversation_id=' + this.w2s_1 + ', name=' + this.x2s_1 + ', display_name=' + this.y2s_1 + ')';
|
|
52684
52643
|
};
|
|
52685
52644
|
ConversationInfo.prototype.hashCode = function () {
|
|
52686
|
-
var result = getStringHashCode(this.
|
|
52687
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
52688
|
-
result = imul(result, 31) + (this.
|
|
52645
|
+
var result = getStringHashCode(this.w2s_1);
|
|
52646
|
+
result = imul(result, 31) + getStringHashCode(this.x2s_1) | 0;
|
|
52647
|
+
result = imul(result, 31) + (this.y2s_1 == null ? 0 : getStringHashCode(this.y2s_1)) | 0;
|
|
52689
52648
|
return result;
|
|
52690
52649
|
};
|
|
52691
52650
|
ConversationInfo.prototype.equals = function (other) {
|
|
@@ -52694,11 +52653,11 @@ function requireClientsdkClientcore () {
|
|
|
52694
52653
|
if (!(other instanceof ConversationInfo))
|
|
52695
52654
|
return false;
|
|
52696
52655
|
var tmp0_other_with_cast = other instanceof ConversationInfo ? other : THROW_CCE();
|
|
52697
|
-
if (!(this.
|
|
52656
|
+
if (!(this.w2s_1 === tmp0_other_with_cast.w2s_1))
|
|
52698
52657
|
return false;
|
|
52699
|
-
if (!(this.
|
|
52658
|
+
if (!(this.x2s_1 === tmp0_other_with_cast.x2s_1))
|
|
52700
52659
|
return false;
|
|
52701
|
-
if (!(this.
|
|
52660
|
+
if (!(this.y2s_1 == tmp0_other_with_cast.y2s_1))
|
|
52702
52661
|
return false;
|
|
52703
52662
|
return true;
|
|
52704
52663
|
};
|
|
@@ -52706,10 +52665,10 @@ function requireClientsdkClientcore () {
|
|
|
52706
52665
|
function None_0() {
|
|
52707
52666
|
None_instance_0 = this;
|
|
52708
52667
|
LegState.call(this);
|
|
52709
|
-
this.
|
|
52668
|
+
this.z2s_1 = null;
|
|
52710
52669
|
}
|
|
52711
52670
|
None_0.prototype.v1k = function () {
|
|
52712
|
-
return this.
|
|
52671
|
+
return this.z2s_1;
|
|
52713
52672
|
};
|
|
52714
52673
|
None_0.$metadata$ = objectMeta('None', undefined, undefined, undefined, undefined, LegState.prototype);
|
|
52715
52674
|
var None_instance_0;
|
|
@@ -52720,16 +52679,16 @@ function requireClientsdkClientcore () {
|
|
|
52720
52679
|
}
|
|
52721
52680
|
function Prewarm(id) {
|
|
52722
52681
|
LegState.call(this);
|
|
52723
|
-
this.
|
|
52682
|
+
this.a2t_1 = id;
|
|
52724
52683
|
}
|
|
52725
52684
|
Prewarm.prototype.v1k = function () {
|
|
52726
|
-
return this.
|
|
52685
|
+
return this.a2t_1;
|
|
52727
52686
|
};
|
|
52728
52687
|
Prewarm.prototype.toString = function () {
|
|
52729
|
-
return 'Prewarm(id=' + this.
|
|
52688
|
+
return 'Prewarm(id=' + this.a2t_1 + ')';
|
|
52730
52689
|
};
|
|
52731
52690
|
Prewarm.prototype.hashCode = function () {
|
|
52732
|
-
return getStringHashCode(this.
|
|
52691
|
+
return getStringHashCode(this.a2t_1);
|
|
52733
52692
|
};
|
|
52734
52693
|
Prewarm.prototype.equals = function (other) {
|
|
52735
52694
|
if (this === other)
|
|
@@ -52737,23 +52696,23 @@ function requireClientsdkClientcore () {
|
|
|
52737
52696
|
if (!(other instanceof Prewarm))
|
|
52738
52697
|
return false;
|
|
52739
52698
|
var tmp0_other_with_cast = other instanceof Prewarm ? other : THROW_CCE();
|
|
52740
|
-
if (!(this.
|
|
52699
|
+
if (!(this.a2t_1 === tmp0_other_with_cast.a2t_1))
|
|
52741
52700
|
return false;
|
|
52742
52701
|
return true;
|
|
52743
52702
|
};
|
|
52744
52703
|
Prewarm.$metadata$ = classMeta('Prewarm', undefined, undefined, undefined, undefined, LegState.prototype);
|
|
52745
52704
|
function Started(id) {
|
|
52746
52705
|
LegState.call(this);
|
|
52747
|
-
this.
|
|
52706
|
+
this.b2t_1 = id;
|
|
52748
52707
|
}
|
|
52749
52708
|
Started.prototype.v1k = function () {
|
|
52750
|
-
return this.
|
|
52709
|
+
return this.b2t_1;
|
|
52751
52710
|
};
|
|
52752
52711
|
Started.prototype.toString = function () {
|
|
52753
|
-
return 'Started(id=' + this.
|
|
52712
|
+
return 'Started(id=' + this.b2t_1 + ')';
|
|
52754
52713
|
};
|
|
52755
52714
|
Started.prototype.hashCode = function () {
|
|
52756
|
-
return getStringHashCode(this.
|
|
52715
|
+
return getStringHashCode(this.b2t_1);
|
|
52757
52716
|
};
|
|
52758
52717
|
Started.prototype.equals = function (other) {
|
|
52759
52718
|
if (this === other)
|
|
@@ -52761,25 +52720,25 @@ function requireClientsdkClientcore () {
|
|
|
52761
52720
|
if (!(other instanceof Started))
|
|
52762
52721
|
return false;
|
|
52763
52722
|
var tmp0_other_with_cast = other instanceof Started ? other : THROW_CCE();
|
|
52764
|
-
if (!(this.
|
|
52723
|
+
if (!(this.b2t_1 === tmp0_other_with_cast.b2t_1))
|
|
52765
52724
|
return false;
|
|
52766
52725
|
return true;
|
|
52767
52726
|
};
|
|
52768
52727
|
Started.$metadata$ = classMeta('Started', undefined, undefined, undefined, undefined, LegState.prototype);
|
|
52769
52728
|
function Completed(id, hangupReason) {
|
|
52770
52729
|
LegState.call(this);
|
|
52771
|
-
this.
|
|
52772
|
-
this.
|
|
52730
|
+
this.c2t_1 = id;
|
|
52731
|
+
this.d2t_1 = hangupReason;
|
|
52773
52732
|
}
|
|
52774
52733
|
Completed.prototype.v1k = function () {
|
|
52775
|
-
return this.
|
|
52734
|
+
return this.c2t_1;
|
|
52776
52735
|
};
|
|
52777
52736
|
Completed.prototype.toString = function () {
|
|
52778
|
-
return 'Completed(id=' + this.
|
|
52737
|
+
return 'Completed(id=' + this.c2t_1 + ', hangupReason=' + this.d2t_1 + ')';
|
|
52779
52738
|
};
|
|
52780
52739
|
Completed.prototype.hashCode = function () {
|
|
52781
|
-
var result = getStringHashCode(this.
|
|
52782
|
-
result = imul(result, 31) + this.
|
|
52740
|
+
var result = getStringHashCode(this.c2t_1);
|
|
52741
|
+
result = imul(result, 31) + this.d2t_1.hashCode() | 0;
|
|
52783
52742
|
return result;
|
|
52784
52743
|
};
|
|
52785
52744
|
Completed.prototype.equals = function (other) {
|
|
@@ -52788,9 +52747,9 @@ function requireClientsdkClientcore () {
|
|
|
52788
52747
|
if (!(other instanceof Completed))
|
|
52789
52748
|
return false;
|
|
52790
52749
|
var tmp0_other_with_cast = other instanceof Completed ? other : THROW_CCE();
|
|
52791
|
-
if (!(this.
|
|
52750
|
+
if (!(this.c2t_1 === tmp0_other_with_cast.c2t_1))
|
|
52792
52751
|
return false;
|
|
52793
|
-
if (!this.
|
|
52752
|
+
if (!this.d2t_1.equals(tmp0_other_with_cast.d2t_1))
|
|
52794
52753
|
return false;
|
|
52795
52754
|
return true;
|
|
52796
52755
|
};
|
|
@@ -52800,12 +52759,12 @@ function requireClientsdkClientcore () {
|
|
|
52800
52759
|
LegState.$metadata$ = classMeta('LegState');
|
|
52801
52760
|
function Offer(sdp) {
|
|
52802
52761
|
MediaDescription.call(this);
|
|
52803
|
-
this.
|
|
52762
|
+
this.e2t_1 = sdp;
|
|
52804
52763
|
}
|
|
52805
52764
|
Offer.$metadata$ = classMeta('Offer', undefined, undefined, undefined, undefined, MediaDescription.prototype);
|
|
52806
52765
|
function Answer(sdp) {
|
|
52807
52766
|
MediaDescription.call(this);
|
|
52808
|
-
this.
|
|
52767
|
+
this.f2t_1 = sdp;
|
|
52809
52768
|
}
|
|
52810
52769
|
Answer.$metadata$ = classMeta('Answer', undefined, undefined, undefined, undefined, MediaDescription.prototype);
|
|
52811
52770
|
function MediaDescription() {
|
|
@@ -52825,29 +52784,29 @@ function requireClientsdkClientcore () {
|
|
|
52825
52784
|
return MediaTransport_init_$Init$(localDescription, remoteDescription, connected, $mask0, $marker, Object.create(MediaTransport.prototype));
|
|
52826
52785
|
}
|
|
52827
52786
|
function MediaTransport(localDescription, remoteDescription, connected) {
|
|
52828
|
-
this.
|
|
52829
|
-
this.
|
|
52830
|
-
this.
|
|
52787
|
+
this.s2q_1 = localDescription;
|
|
52788
|
+
this.t2q_1 = remoteDescription;
|
|
52789
|
+
this.u2q_1 = connected;
|
|
52831
52790
|
}
|
|
52832
|
-
MediaTransport.prototype.
|
|
52791
|
+
MediaTransport.prototype.g2t = function (localDescription, remoteDescription, connected) {
|
|
52833
52792
|
return new MediaTransport(localDescription, remoteDescription, connected);
|
|
52834
52793
|
};
|
|
52835
|
-
MediaTransport.prototype.
|
|
52794
|
+
MediaTransport.prototype.h2t = function (localDescription, remoteDescription, connected, $mask0, $handler) {
|
|
52836
52795
|
if (!(($mask0 & 1) === 0))
|
|
52837
|
-
localDescription = this.
|
|
52796
|
+
localDescription = this.s2q_1;
|
|
52838
52797
|
if (!(($mask0 & 2) === 0))
|
|
52839
|
-
remoteDescription = this.
|
|
52798
|
+
remoteDescription = this.t2q_1;
|
|
52840
52799
|
if (!(($mask0 & 4) === 0))
|
|
52841
|
-
connected = this.
|
|
52842
|
-
return this.
|
|
52800
|
+
connected = this.u2q_1;
|
|
52801
|
+
return this.g2t(localDescription, remoteDescription, connected);
|
|
52843
52802
|
};
|
|
52844
52803
|
MediaTransport.prototype.toString = function () {
|
|
52845
|
-
return 'MediaTransport(localDescription=' + this.
|
|
52804
|
+
return 'MediaTransport(localDescription=' + this.s2q_1 + ', remoteDescription=' + this.t2q_1 + ', connected=' + this.u2q_1 + ')';
|
|
52846
52805
|
};
|
|
52847
52806
|
MediaTransport.prototype.hashCode = function () {
|
|
52848
|
-
var result = this.
|
|
52849
|
-
result = imul(result, 31) + (this.
|
|
52850
|
-
result = imul(result, 31) + (this.
|
|
52807
|
+
var result = this.s2q_1 == null ? 0 : hashCode(this.s2q_1);
|
|
52808
|
+
result = imul(result, 31) + (this.t2q_1 == null ? 0 : hashCode(this.t2q_1)) | 0;
|
|
52809
|
+
result = imul(result, 31) + (this.u2q_1 | 0) | 0;
|
|
52851
52810
|
return result;
|
|
52852
52811
|
};
|
|
52853
52812
|
MediaTransport.prototype.equals = function (other) {
|
|
@@ -52856,11 +52815,11 @@ function requireClientsdkClientcore () {
|
|
|
52856
52815
|
if (!(other instanceof MediaTransport))
|
|
52857
52816
|
return false;
|
|
52858
52817
|
var tmp0_other_with_cast = other instanceof MediaTransport ? other : THROW_CCE();
|
|
52859
|
-
if (!equals(this.
|
|
52818
|
+
if (!equals(this.s2q_1, tmp0_other_with_cast.s2q_1))
|
|
52860
52819
|
return false;
|
|
52861
|
-
if (!equals(this.
|
|
52820
|
+
if (!equals(this.t2q_1, tmp0_other_with_cast.t2q_1))
|
|
52862
52821
|
return false;
|
|
52863
|
-
if (!(this.
|
|
52822
|
+
if (!(this.u2q_1 === tmp0_other_with_cast.u2q_1))
|
|
52864
52823
|
return false;
|
|
52865
52824
|
return true;
|
|
52866
52825
|
};
|
|
@@ -52871,10 +52830,10 @@ function requireClientsdkClientcore () {
|
|
|
52871
52830
|
tmp0_serialDesc.eq('enabled', false);
|
|
52872
52831
|
tmp0_serialDesc.eq('earmuffed', false);
|
|
52873
52832
|
tmp0_serialDesc.eq('muted', false);
|
|
52874
|
-
this.
|
|
52833
|
+
this.i2t_1 = tmp0_serialDesc;
|
|
52875
52834
|
}
|
|
52876
52835
|
$serializer_151.prototype.yf = function () {
|
|
52877
|
-
return this.
|
|
52836
|
+
return this.i2t_1;
|
|
52878
52837
|
};
|
|
52879
52838
|
$serializer_151.prototype.tq = function () {
|
|
52880
52839
|
var tmp$ret$2;
|
|
@@ -52890,7 +52849,7 @@ function requireClientsdkClientcore () {
|
|
|
52890
52849
|
return tmp$ret$2;
|
|
52891
52850
|
};
|
|
52892
52851
|
$serializer_151.prototype.ag = function (decoder) {
|
|
52893
|
-
var tmp0_desc = this.
|
|
52852
|
+
var tmp0_desc = this.i2t_1;
|
|
52894
52853
|
var tmp1_flag = true;
|
|
52895
52854
|
var tmp2_index = 0;
|
|
52896
52855
|
var tmp3_bitMask0 = 0;
|
|
@@ -52931,16 +52890,16 @@ function requireClientsdkClientcore () {
|
|
|
52931
52890
|
tmp7_input.gj(tmp0_desc);
|
|
52932
52891
|
return UserAudio_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
52933
52892
|
};
|
|
52934
|
-
$serializer_151.prototype.
|
|
52935
|
-
var tmp0_desc = this.
|
|
52893
|
+
$serializer_151.prototype.j2t = function (encoder, value) {
|
|
52894
|
+
var tmp0_desc = this.i2t_1;
|
|
52936
52895
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
52937
|
-
tmp1_output.kk(tmp0_desc, 0, value.
|
|
52938
|
-
tmp1_output.kk(tmp0_desc, 1, value.
|
|
52939
|
-
tmp1_output.kk(tmp0_desc, 2, value.
|
|
52896
|
+
tmp1_output.kk(tmp0_desc, 0, value.k2t_1);
|
|
52897
|
+
tmp1_output.kk(tmp0_desc, 1, value.l2t_1);
|
|
52898
|
+
tmp1_output.kk(tmp0_desc, 2, value.m2t_1);
|
|
52940
52899
|
tmp1_output.gj(tmp0_desc);
|
|
52941
52900
|
};
|
|
52942
52901
|
$serializer_151.prototype.zf = function (encoder, value) {
|
|
52943
|
-
return this.
|
|
52902
|
+
return this.j2t(encoder, value instanceof UserAudio ? value : THROW_CCE());
|
|
52944
52903
|
};
|
|
52945
52904
|
$serializer_151.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
52946
52905
|
var $serializer_instance_151;
|
|
@@ -52951,11 +52910,11 @@ function requireClientsdkClientcore () {
|
|
|
52951
52910
|
}
|
|
52952
52911
|
function UserAudio_init_$Init$(seen1, enabled, earmuffed, muted, serializationConstructorMarker, $this) {
|
|
52953
52912
|
if (!(7 === (7 & seen1))) {
|
|
52954
|
-
throwMissingFieldException(seen1, 7, $serializer_getInstance_151().
|
|
52913
|
+
throwMissingFieldException(seen1, 7, $serializer_getInstance_151().i2t_1);
|
|
52955
52914
|
}
|
|
52956
|
-
$this.
|
|
52957
|
-
$this.
|
|
52958
|
-
$this.
|
|
52915
|
+
$this.k2t_1 = enabled;
|
|
52916
|
+
$this.l2t_1 = earmuffed;
|
|
52917
|
+
$this.m2t_1 = muted;
|
|
52959
52918
|
return $this;
|
|
52960
52919
|
}
|
|
52961
52920
|
function UserAudio_init_$Create$(seen1, enabled, earmuffed, muted, serializationConstructorMarker) {
|
|
@@ -52964,12 +52923,12 @@ function requireClientsdkClientcore () {
|
|
|
52964
52923
|
function UserAudio() {
|
|
52965
52924
|
}
|
|
52966
52925
|
UserAudio.prototype.toString = function () {
|
|
52967
|
-
return 'UserAudio(enabled=' + this.
|
|
52926
|
+
return 'UserAudio(enabled=' + this.k2t_1 + ', earmuffed=' + this.l2t_1 + ', muted=' + this.m2t_1 + ')';
|
|
52968
52927
|
};
|
|
52969
52928
|
UserAudio.prototype.hashCode = function () {
|
|
52970
|
-
var result = this.
|
|
52971
|
-
result = imul(result, 31) + (this.
|
|
52972
|
-
result = imul(result, 31) + (this.
|
|
52929
|
+
var result = this.k2t_1 | 0;
|
|
52930
|
+
result = imul(result, 31) + (this.l2t_1 | 0) | 0;
|
|
52931
|
+
result = imul(result, 31) + (this.m2t_1 | 0) | 0;
|
|
52973
52932
|
return result;
|
|
52974
52933
|
};
|
|
52975
52934
|
UserAudio.prototype.equals = function (other) {
|
|
@@ -52978,11 +52937,11 @@ function requireClientsdkClientcore () {
|
|
|
52978
52937
|
if (!(other instanceof UserAudio))
|
|
52979
52938
|
return false;
|
|
52980
52939
|
var tmp0_other_with_cast = other instanceof UserAudio ? other : THROW_CCE();
|
|
52981
|
-
if (!(this.
|
|
52940
|
+
if (!(this.k2t_1 === tmp0_other_with_cast.k2t_1))
|
|
52982
52941
|
return false;
|
|
52983
|
-
if (!(this.
|
|
52942
|
+
if (!(this.l2t_1 === tmp0_other_with_cast.l2t_1))
|
|
52984
52943
|
return false;
|
|
52985
|
-
if (!(this.
|
|
52944
|
+
if (!(this.m2t_1 === tmp0_other_with_cast.m2t_1))
|
|
52986
52945
|
return false;
|
|
52987
52946
|
return true;
|
|
52988
52947
|
};
|
|
@@ -52991,10 +52950,10 @@ function requireClientsdkClientcore () {
|
|
|
52991
52950
|
$serializer_instance_152 = this;
|
|
52992
52951
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.InvitedUserMedia', this, 1);
|
|
52993
52952
|
tmp0_serialDesc.eq('audio_settings', false);
|
|
52994
|
-
this.
|
|
52953
|
+
this.n2t_1 = tmp0_serialDesc;
|
|
52995
52954
|
}
|
|
52996
52955
|
$serializer_152.prototype.yf = function () {
|
|
52997
|
-
return this.
|
|
52956
|
+
return this.n2t_1;
|
|
52998
52957
|
};
|
|
52999
52958
|
$serializer_152.prototype.tq = function () {
|
|
53000
52959
|
var tmp$ret$2;
|
|
@@ -53010,7 +52969,7 @@ function requireClientsdkClientcore () {
|
|
|
53010
52969
|
return tmp$ret$2;
|
|
53011
52970
|
};
|
|
53012
52971
|
$serializer_152.prototype.ag = function (decoder) {
|
|
53013
|
-
var tmp0_desc = this.
|
|
52972
|
+
var tmp0_desc = this.n2t_1;
|
|
53014
52973
|
var tmp1_flag = true;
|
|
53015
52974
|
var tmp2_index = 0;
|
|
53016
52975
|
var tmp3_bitMask0 = 0;
|
|
@@ -53037,14 +52996,14 @@ function requireClientsdkClientcore () {
|
|
|
53037
52996
|
tmp5_input.gj(tmp0_desc);
|
|
53038
52997
|
return InvitedUserMedia_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
53039
52998
|
};
|
|
53040
|
-
$serializer_152.prototype.
|
|
53041
|
-
var tmp0_desc = this.
|
|
52999
|
+
$serializer_152.prototype.o2t = function (encoder, value) {
|
|
53000
|
+
var tmp0_desc = this.n2t_1;
|
|
53042
53001
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
53043
|
-
tmp1_output.vk(tmp0_desc, 0, $serializer_getInstance_151(), value.
|
|
53002
|
+
tmp1_output.vk(tmp0_desc, 0, $serializer_getInstance_151(), value.p2t_1);
|
|
53044
53003
|
tmp1_output.gj(tmp0_desc);
|
|
53045
53004
|
};
|
|
53046
53005
|
$serializer_152.prototype.zf = function (encoder, value) {
|
|
53047
|
-
return this.
|
|
53006
|
+
return this.o2t(encoder, value instanceof InvitedUserMedia ? value : THROW_CCE());
|
|
53048
53007
|
};
|
|
53049
53008
|
$serializer_152.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53050
53009
|
var $serializer_instance_152;
|
|
@@ -53055,9 +53014,9 @@ function requireClientsdkClientcore () {
|
|
|
53055
53014
|
}
|
|
53056
53015
|
function InvitedUserMedia_init_$Init$(seen1, audio_settings, serializationConstructorMarker, $this) {
|
|
53057
53016
|
if (!(1 === (1 & seen1))) {
|
|
53058
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_152().
|
|
53017
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_152().n2t_1);
|
|
53059
53018
|
}
|
|
53060
|
-
$this.
|
|
53019
|
+
$this.p2t_1 = audio_settings;
|
|
53061
53020
|
return $this;
|
|
53062
53021
|
}
|
|
53063
53022
|
function InvitedUserMedia_init_$Create$(seen1, audio_settings, serializationConstructorMarker) {
|
|
@@ -53066,10 +53025,10 @@ function requireClientsdkClientcore () {
|
|
|
53066
53025
|
function InvitedUserMedia() {
|
|
53067
53026
|
}
|
|
53068
53027
|
InvitedUserMedia.prototype.toString = function () {
|
|
53069
|
-
return 'InvitedUserMedia(audio_settings=' + this.
|
|
53028
|
+
return 'InvitedUserMedia(audio_settings=' + this.p2t_1 + ')';
|
|
53070
53029
|
};
|
|
53071
53030
|
InvitedUserMedia.prototype.hashCode = function () {
|
|
53072
|
-
return this.
|
|
53031
|
+
return this.p2t_1 == null ? 0 : this.p2t_1.hashCode();
|
|
53073
53032
|
};
|
|
53074
53033
|
InvitedUserMedia.prototype.equals = function (other) {
|
|
53075
53034
|
if (this === other)
|
|
@@ -53077,7 +53036,7 @@ function requireClientsdkClientcore () {
|
|
|
53077
53036
|
if (!(other instanceof InvitedUserMedia))
|
|
53078
53037
|
return false;
|
|
53079
53038
|
var tmp0_other_with_cast = other instanceof InvitedUserMedia ? other : THROW_CCE();
|
|
53080
|
-
if (!equals(this.
|
|
53039
|
+
if (!equals(this.p2t_1, tmp0_other_with_cast.p2t_1))
|
|
53081
53040
|
return false;
|
|
53082
53041
|
return true;
|
|
53083
53042
|
};
|
|
@@ -53094,10 +53053,10 @@ function requireClientsdkClientcore () {
|
|
|
53094
53053
|
tmp0_serialDesc.eq('flaw_total', false);
|
|
53095
53054
|
tmp0_serialDesc.eq('packet_cnt', false);
|
|
53096
53055
|
tmp0_serialDesc.eq('packet_loss_perc', false);
|
|
53097
|
-
this.
|
|
53056
|
+
this.q2t_1 = tmp0_serialDesc;
|
|
53098
53057
|
}
|
|
53099
53058
|
$serializer_153.prototype.yf = function () {
|
|
53100
|
-
return this.
|
|
53059
|
+
return this.q2t_1;
|
|
53101
53060
|
};
|
|
53102
53061
|
$serializer_153.prototype.tq = function () {
|
|
53103
53062
|
var tmp$ret$2;
|
|
@@ -53113,7 +53072,7 @@ function requireClientsdkClientcore () {
|
|
|
53113
53072
|
return tmp$ret$2;
|
|
53114
53073
|
};
|
|
53115
53074
|
$serializer_153.prototype.ag = function (decoder) {
|
|
53116
|
-
var tmp0_desc = this.
|
|
53075
|
+
var tmp0_desc = this.q2t_1;
|
|
53117
53076
|
var tmp1_flag = true;
|
|
53118
53077
|
var tmp2_index = 0;
|
|
53119
53078
|
var tmp3_bitMask0 = 0;
|
|
@@ -53196,22 +53155,22 @@ function requireClientsdkClientcore () {
|
|
|
53196
53155
|
tmp13_input.gj(tmp0_desc);
|
|
53197
53156
|
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);
|
|
53198
53157
|
};
|
|
53199
|
-
$serializer_153.prototype.
|
|
53200
|
-
var tmp0_desc = this.
|
|
53158
|
+
$serializer_153.prototype.r2t = function (encoder, value) {
|
|
53159
|
+
var tmp0_desc = this.q2t_1;
|
|
53201
53160
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
53202
|
-
tmp1_output.pk(tmp0_desc, 0, value.
|
|
53203
|
-
tmp1_output.pk(tmp0_desc, 1, value.
|
|
53204
|
-
tmp1_output.pk(tmp0_desc, 2, value.
|
|
53205
|
-
tmp1_output.pk(tmp0_desc, 3, value.
|
|
53206
|
-
tmp1_output.pk(tmp0_desc, 4, value.
|
|
53207
|
-
tmp1_output.pk(tmp0_desc, 5, value.
|
|
53208
|
-
tmp1_output.nk(tmp0_desc, 6, value.
|
|
53209
|
-
tmp1_output.nk(tmp0_desc, 7, value.
|
|
53210
|
-
tmp1_output.pk(tmp0_desc, 8, value.
|
|
53161
|
+
tmp1_output.pk(tmp0_desc, 0, value.s2t_1);
|
|
53162
|
+
tmp1_output.pk(tmp0_desc, 1, value.t2t_1);
|
|
53163
|
+
tmp1_output.pk(tmp0_desc, 2, value.u2t_1);
|
|
53164
|
+
tmp1_output.pk(tmp0_desc, 3, value.v2t_1);
|
|
53165
|
+
tmp1_output.pk(tmp0_desc, 4, value.w2t_1);
|
|
53166
|
+
tmp1_output.pk(tmp0_desc, 5, value.x2t_1);
|
|
53167
|
+
tmp1_output.nk(tmp0_desc, 6, value.y2t_1);
|
|
53168
|
+
tmp1_output.nk(tmp0_desc, 7, value.z2t_1);
|
|
53169
|
+
tmp1_output.pk(tmp0_desc, 8, value.a2u_1);
|
|
53211
53170
|
tmp1_output.gj(tmp0_desc);
|
|
53212
53171
|
};
|
|
53213
53172
|
$serializer_153.prototype.zf = function (encoder, value) {
|
|
53214
|
-
return this.
|
|
53173
|
+
return this.r2t(encoder, value instanceof RTCQuality ? value : THROW_CCE());
|
|
53215
53174
|
};
|
|
53216
53175
|
$serializer_153.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53217
53176
|
var $serializer_instance_153;
|
|
@@ -53222,17 +53181,17 @@ function requireClientsdkClientcore () {
|
|
|
53222
53181
|
}
|
|
53223
53182
|
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) {
|
|
53224
53183
|
if (!(511 === (511 & seen1))) {
|
|
53225
|
-
throwMissingFieldException(seen1, 511, $serializer_getInstance_153().
|
|
53226
|
-
}
|
|
53227
|
-
$this.
|
|
53228
|
-
$this.
|
|
53229
|
-
$this.
|
|
53230
|
-
$this.
|
|
53231
|
-
$this.
|
|
53232
|
-
$this.
|
|
53233
|
-
$this.
|
|
53234
|
-
$this.
|
|
53235
|
-
$this.
|
|
53184
|
+
throwMissingFieldException(seen1, 511, $serializer_getInstance_153().q2t_1);
|
|
53185
|
+
}
|
|
53186
|
+
$this.s2t_1 = mos_score;
|
|
53187
|
+
$this.t2t_1 = quality_percentage;
|
|
53188
|
+
$this.u2t_1 = jitter_min_var;
|
|
53189
|
+
$this.v2t_1 = jitter_max_var;
|
|
53190
|
+
$this.w2t_1 = jitter_loss_rate;
|
|
53191
|
+
$this.x2t_1 = jitter_burst_rate;
|
|
53192
|
+
$this.y2t_1 = flaw_total;
|
|
53193
|
+
$this.z2t_1 = packet_cnt;
|
|
53194
|
+
$this.a2u_1 = packet_loss_perc;
|
|
53236
53195
|
return $this;
|
|
53237
53196
|
}
|
|
53238
53197
|
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) {
|
|
@@ -53241,18 +53200,18 @@ function requireClientsdkClientcore () {
|
|
|
53241
53200
|
function RTCQuality() {
|
|
53242
53201
|
}
|
|
53243
53202
|
RTCQuality.prototype.toString = function () {
|
|
53244
|
-
return 'RTCQuality(mos_score=' + this.
|
|
53203
|
+
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 + ')';
|
|
53245
53204
|
};
|
|
53246
53205
|
RTCQuality.prototype.hashCode = function () {
|
|
53247
|
-
var result = getNumberHashCode(this.
|
|
53248
|
-
result = imul(result, 31) + getNumberHashCode(this.q2t_1) | 0;
|
|
53249
|
-
result = imul(result, 31) + getNumberHashCode(this.r2t_1) | 0;
|
|
53250
|
-
result = imul(result, 31) + getNumberHashCode(this.s2t_1) | 0;
|
|
53206
|
+
var result = getNumberHashCode(this.s2t_1);
|
|
53251
53207
|
result = imul(result, 31) + getNumberHashCode(this.t2t_1) | 0;
|
|
53252
53208
|
result = imul(result, 31) + getNumberHashCode(this.u2t_1) | 0;
|
|
53253
|
-
result = imul(result, 31) + this.v2t_1 | 0;
|
|
53254
|
-
result = imul(result, 31) + this.w2t_1 | 0;
|
|
53209
|
+
result = imul(result, 31) + getNumberHashCode(this.v2t_1) | 0;
|
|
53210
|
+
result = imul(result, 31) + getNumberHashCode(this.w2t_1) | 0;
|
|
53255
53211
|
result = imul(result, 31) + getNumberHashCode(this.x2t_1) | 0;
|
|
53212
|
+
result = imul(result, 31) + this.y2t_1 | 0;
|
|
53213
|
+
result = imul(result, 31) + this.z2t_1 | 0;
|
|
53214
|
+
result = imul(result, 31) + getNumberHashCode(this.a2u_1) | 0;
|
|
53256
53215
|
return result;
|
|
53257
53216
|
};
|
|
53258
53217
|
RTCQuality.prototype.equals = function (other) {
|
|
@@ -53261,39 +53220,134 @@ function requireClientsdkClientcore () {
|
|
|
53261
53220
|
if (!(other instanceof RTCQuality))
|
|
53262
53221
|
return false;
|
|
53263
53222
|
var tmp0_other_with_cast = other instanceof RTCQuality ? other : THROW_CCE();
|
|
53264
|
-
if (!equals(this.p2t_1, tmp0_other_with_cast.p2t_1))
|
|
53265
|
-
return false;
|
|
53266
|
-
if (!equals(this.q2t_1, tmp0_other_with_cast.q2t_1))
|
|
53267
|
-
return false;
|
|
53268
|
-
if (!equals(this.r2t_1, tmp0_other_with_cast.r2t_1))
|
|
53269
|
-
return false;
|
|
53270
53223
|
if (!equals(this.s2t_1, tmp0_other_with_cast.s2t_1))
|
|
53271
53224
|
return false;
|
|
53272
53225
|
if (!equals(this.t2t_1, tmp0_other_with_cast.t2t_1))
|
|
53273
53226
|
return false;
|
|
53274
53227
|
if (!equals(this.u2t_1, tmp0_other_with_cast.u2t_1))
|
|
53275
53228
|
return false;
|
|
53276
|
-
if (!(this.v2t_1
|
|
53229
|
+
if (!equals(this.v2t_1, tmp0_other_with_cast.v2t_1))
|
|
53277
53230
|
return false;
|
|
53278
|
-
if (!(this.w2t_1
|
|
53231
|
+
if (!equals(this.w2t_1, tmp0_other_with_cast.w2t_1))
|
|
53279
53232
|
return false;
|
|
53280
53233
|
if (!equals(this.x2t_1, tmp0_other_with_cast.x2t_1))
|
|
53281
53234
|
return false;
|
|
53235
|
+
if (!(this.y2t_1 === tmp0_other_with_cast.y2t_1))
|
|
53236
|
+
return false;
|
|
53237
|
+
if (!(this.z2t_1 === tmp0_other_with_cast.z2t_1))
|
|
53238
|
+
return false;
|
|
53239
|
+
if (!equals(this.a2u_1, tmp0_other_with_cast.a2u_1))
|
|
53240
|
+
return false;
|
|
53282
53241
|
return true;
|
|
53283
53242
|
};
|
|
53284
53243
|
RTCQuality.$metadata$ = classMeta('RTCQuality', undefined, undefined, {0: $serializer_getInstance_153});
|
|
53244
|
+
function CallCompleteReason$Companion$$cachedSerializer$delegate$_anonymous__gwqa6d() {
|
|
53245
|
+
return $serializer_getInstance_154();
|
|
53246
|
+
}
|
|
53247
|
+
var CallCompleteReason_LocalHangup_instance;
|
|
53248
|
+
var CallCompleteReason_LocalCancel_instance;
|
|
53249
|
+
var CallCompleteReason_RemoteHangup_instance;
|
|
53250
|
+
var CallCompleteReason_MaxLength_instance;
|
|
53251
|
+
var CallCompleteReason_RingTimeout_instance;
|
|
53252
|
+
var CallCompleteReason_Failed_instance;
|
|
53253
|
+
var CallCompleteReason_Unknown_instance;
|
|
53254
|
+
function Companion_115() {
|
|
53255
|
+
Companion_instance_115 = this;
|
|
53256
|
+
var tmp = this;
|
|
53257
|
+
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
53258
|
+
tmp.b2u_1 = lazy(tmp_0, CallCompleteReason$Companion$$cachedSerializer$delegate$_anonymous__gwqa6d);
|
|
53259
|
+
}
|
|
53260
|
+
Companion_115.prototype.v10 = function () {
|
|
53261
|
+
return this.b2u_1.s1();
|
|
53262
|
+
};
|
|
53263
|
+
Companion_115.prototype.nr = function (typeParamsSerializers) {
|
|
53264
|
+
return this.v10();
|
|
53265
|
+
};
|
|
53266
|
+
Companion_115.$metadata$ = objectMeta('Companion', [SerializerFactory]);
|
|
53267
|
+
var Companion_instance_115;
|
|
53268
|
+
function Companion_getInstance_116() {
|
|
53269
|
+
CallCompleteReason_initEntries();
|
|
53270
|
+
if (Companion_instance_115 == null)
|
|
53271
|
+
new Companion_115();
|
|
53272
|
+
return Companion_instance_115;
|
|
53273
|
+
}
|
|
53285
53274
|
function $serializer_154() {
|
|
53286
53275
|
$serializer_instance_154 = this;
|
|
53276
|
+
var tmp0_serialDesc = new EnumDescriptor('com.vonage.clientcore.core.conversation.CallCompleteReason', 7);
|
|
53277
|
+
tmp0_serialDesc.eq('LocalHangup', false);
|
|
53278
|
+
tmp0_serialDesc.eq('LocalCancel', false);
|
|
53279
|
+
tmp0_serialDesc.eq('RemoteHangup', false);
|
|
53280
|
+
tmp0_serialDesc.eq('MaxLength', false);
|
|
53281
|
+
tmp0_serialDesc.eq('RingTimeout', false);
|
|
53282
|
+
tmp0_serialDesc.eq('Failed', false);
|
|
53283
|
+
tmp0_serialDesc.eq('Unknown', false);
|
|
53284
|
+
this.c2u_1 = tmp0_serialDesc;
|
|
53285
|
+
}
|
|
53286
|
+
$serializer_154.prototype.yf = function () {
|
|
53287
|
+
return this.c2u_1;
|
|
53288
|
+
};
|
|
53289
|
+
$serializer_154.prototype.tq = function () {
|
|
53290
|
+
var tmp$ret$2;
|
|
53291
|
+
// Inline function 'kotlin.arrayOf' call
|
|
53292
|
+
var tmp$ret$1;
|
|
53293
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
53294
|
+
var tmp$ret$0;
|
|
53295
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
53296
|
+
tmp$ret$0 = [];
|
|
53297
|
+
tmp$ret$1 = tmp$ret$0;
|
|
53298
|
+
tmp$ret$2 = tmp$ret$1;
|
|
53299
|
+
return tmp$ret$2;
|
|
53300
|
+
};
|
|
53301
|
+
$serializer_154.prototype.ag = function (decoder) {
|
|
53302
|
+
return values_4()[decoder.bj(this.c2u_1)];
|
|
53303
|
+
};
|
|
53304
|
+
$serializer_154.prototype.d2u = function (encoder, value) {
|
|
53305
|
+
encoder.ik(this.c2u_1, value.e4_1);
|
|
53306
|
+
};
|
|
53307
|
+
$serializer_154.prototype.zf = function (encoder, value) {
|
|
53308
|
+
return this.d2u(encoder, value instanceof CallCompleteReason ? value : THROW_CCE());
|
|
53309
|
+
};
|
|
53310
|
+
$serializer_154.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53311
|
+
var $serializer_instance_154;
|
|
53312
|
+
function $serializer_getInstance_154() {
|
|
53313
|
+
CallCompleteReason_initEntries();
|
|
53314
|
+
if ($serializer_instance_154 == null)
|
|
53315
|
+
new $serializer_154();
|
|
53316
|
+
return $serializer_instance_154;
|
|
53317
|
+
}
|
|
53318
|
+
function values_4() {
|
|
53319
|
+
return [CallCompleteReason_LocalHangup_getInstance(), CallCompleteReason_LocalCancel_getInstance(), CallCompleteReason_RemoteHangup_getInstance(), CallCompleteReason_MaxLength_getInstance(), CallCompleteReason_RingTimeout_getInstance(), CallCompleteReason_Failed_getInstance(), CallCompleteReason_Unknown_getInstance()];
|
|
53320
|
+
}
|
|
53321
|
+
var CallCompleteReason_entriesInitialized;
|
|
53322
|
+
function CallCompleteReason_initEntries() {
|
|
53323
|
+
if (CallCompleteReason_entriesInitialized)
|
|
53324
|
+
return Unit_getInstance();
|
|
53325
|
+
CallCompleteReason_entriesInitialized = true;
|
|
53326
|
+
CallCompleteReason_LocalHangup_instance = new CallCompleteReason('LocalHangup', 0);
|
|
53327
|
+
CallCompleteReason_LocalCancel_instance = new CallCompleteReason('LocalCancel', 1);
|
|
53328
|
+
CallCompleteReason_RemoteHangup_instance = new CallCompleteReason('RemoteHangup', 2);
|
|
53329
|
+
CallCompleteReason_MaxLength_instance = new CallCompleteReason('MaxLength', 3);
|
|
53330
|
+
CallCompleteReason_RingTimeout_instance = new CallCompleteReason('RingTimeout', 4);
|
|
53331
|
+
CallCompleteReason_Failed_instance = new CallCompleteReason('Failed', 5);
|
|
53332
|
+
CallCompleteReason_Unknown_instance = new CallCompleteReason('Unknown', 6);
|
|
53333
|
+
Companion_getInstance_116();
|
|
53334
|
+
}
|
|
53335
|
+
function CallCompleteReason(name, ordinal) {
|
|
53336
|
+
Enum.call(this, name, ordinal);
|
|
53337
|
+
}
|
|
53338
|
+
CallCompleteReason.$metadata$ = classMeta('CallCompleteReason', undefined, undefined, {0: $serializer_getInstance_154}, undefined, Enum.prototype);
|
|
53339
|
+
function $serializer_155() {
|
|
53340
|
+
$serializer_instance_155 = this;
|
|
53287
53341
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.RTCHangupReason', this, 3);
|
|
53288
53342
|
tmp0_serialDesc.eq('text', false);
|
|
53289
53343
|
tmp0_serialDesc.eq('code', false);
|
|
53290
53344
|
tmp0_serialDesc.eq('sip_code', false);
|
|
53291
|
-
this.
|
|
53345
|
+
this.e2u_1 = tmp0_serialDesc;
|
|
53292
53346
|
}
|
|
53293
|
-
$
|
|
53294
|
-
return this.
|
|
53347
|
+
$serializer_155.prototype.yf = function () {
|
|
53348
|
+
return this.e2u_1;
|
|
53295
53349
|
};
|
|
53296
|
-
$
|
|
53350
|
+
$serializer_155.prototype.tq = function () {
|
|
53297
53351
|
var tmp$ret$2;
|
|
53298
53352
|
// Inline function 'kotlin.arrayOf' call
|
|
53299
53353
|
var tmp0_arrayOf = [StringSerializer_getInstance(), CallCompleteReasonSerialiser_getInstance(), IntSerializer_getInstance()];
|
|
@@ -53306,8 +53360,8 @@ function requireClientsdkClientcore () {
|
|
|
53306
53360
|
tmp$ret$2 = tmp$ret$1;
|
|
53307
53361
|
return tmp$ret$2;
|
|
53308
53362
|
};
|
|
53309
|
-
$
|
|
53310
|
-
var tmp0_desc = this.
|
|
53363
|
+
$serializer_155.prototype.ag = function (decoder) {
|
|
53364
|
+
var tmp0_desc = this.e2u_1;
|
|
53311
53365
|
var tmp1_flag = true;
|
|
53312
53366
|
var tmp2_index = 0;
|
|
53313
53367
|
var tmp3_bitMask0 = 0;
|
|
@@ -53348,31 +53402,31 @@ function requireClientsdkClientcore () {
|
|
|
53348
53402
|
tmp7_input.gj(tmp0_desc);
|
|
53349
53403
|
return RTCHangupReason_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
53350
53404
|
};
|
|
53351
|
-
$
|
|
53352
|
-
var tmp0_desc = this.
|
|
53405
|
+
$serializer_155.prototype.f2u = function (encoder, value) {
|
|
53406
|
+
var tmp0_desc = this.e2u_1;
|
|
53353
53407
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
53354
|
-
tmp1_output.sk(tmp0_desc, 0, value.
|
|
53355
|
-
tmp1_output.tk(tmp0_desc, 1, CallCompleteReasonSerialiser_getInstance(), value.
|
|
53356
|
-
tmp1_output.nk(tmp0_desc, 2, value.
|
|
53408
|
+
tmp1_output.sk(tmp0_desc, 0, value.z2p_1);
|
|
53409
|
+
tmp1_output.tk(tmp0_desc, 1, CallCompleteReasonSerialiser_getInstance(), value.a2q_1);
|
|
53410
|
+
tmp1_output.nk(tmp0_desc, 2, value.b2q_1);
|
|
53357
53411
|
tmp1_output.gj(tmp0_desc);
|
|
53358
53412
|
};
|
|
53359
|
-
$
|
|
53360
|
-
return this.
|
|
53413
|
+
$serializer_155.prototype.zf = function (encoder, value) {
|
|
53414
|
+
return this.f2u(encoder, value instanceof RTCHangupReason ? value : THROW_CCE());
|
|
53361
53415
|
};
|
|
53362
|
-
$
|
|
53363
|
-
var $
|
|
53364
|
-
function $
|
|
53365
|
-
if ($
|
|
53366
|
-
new $
|
|
53367
|
-
return $
|
|
53416
|
+
$serializer_155.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53417
|
+
var $serializer_instance_155;
|
|
53418
|
+
function $serializer_getInstance_155() {
|
|
53419
|
+
if ($serializer_instance_155 == null)
|
|
53420
|
+
new $serializer_155();
|
|
53421
|
+
return $serializer_instance_155;
|
|
53368
53422
|
}
|
|
53369
53423
|
function RTCHangupReason_init_$Init$(seen1, text, code, sip_code, serializationConstructorMarker, $this) {
|
|
53370
53424
|
if (!(7 === (7 & seen1))) {
|
|
53371
|
-
throwMissingFieldException(seen1, 7, $
|
|
53425
|
+
throwMissingFieldException(seen1, 7, $serializer_getInstance_155().e2u_1);
|
|
53372
53426
|
}
|
|
53373
|
-
$this.
|
|
53374
|
-
$this.
|
|
53375
|
-
$this.
|
|
53427
|
+
$this.z2p_1 = text;
|
|
53428
|
+
$this.a2q_1 = code;
|
|
53429
|
+
$this.b2q_1 = sip_code;
|
|
53376
53430
|
return $this;
|
|
53377
53431
|
}
|
|
53378
53432
|
function RTCHangupReason_init_$Create$(seen1, text, code, sip_code, serializationConstructorMarker) {
|
|
@@ -53381,12 +53435,12 @@ function requireClientsdkClientcore () {
|
|
|
53381
53435
|
function RTCHangupReason() {
|
|
53382
53436
|
}
|
|
53383
53437
|
RTCHangupReason.prototype.toString = function () {
|
|
53384
|
-
return 'RTCHangupReason(text=' + this.
|
|
53438
|
+
return 'RTCHangupReason(text=' + this.z2p_1 + ', code=' + this.a2q_1 + ', sip_code=' + this.b2q_1 + ')';
|
|
53385
53439
|
};
|
|
53386
53440
|
RTCHangupReason.prototype.hashCode = function () {
|
|
53387
|
-
var result = getStringHashCode(this.
|
|
53388
|
-
result = imul(result, 31) + this.
|
|
53389
|
-
result = imul(result, 31) + this.
|
|
53441
|
+
var result = getStringHashCode(this.z2p_1);
|
|
53442
|
+
result = imul(result, 31) + this.a2q_1.hashCode() | 0;
|
|
53443
|
+
result = imul(result, 31) + this.b2q_1 | 0;
|
|
53390
53444
|
return result;
|
|
53391
53445
|
};
|
|
53392
53446
|
RTCHangupReason.prototype.equals = function (other) {
|
|
@@ -53395,26 +53449,70 @@ function requireClientsdkClientcore () {
|
|
|
53395
53449
|
if (!(other instanceof RTCHangupReason))
|
|
53396
53450
|
return false;
|
|
53397
53451
|
var tmp0_other_with_cast = other instanceof RTCHangupReason ? other : THROW_CCE();
|
|
53398
|
-
if (!(this.
|
|
53452
|
+
if (!(this.z2p_1 === tmp0_other_with_cast.z2p_1))
|
|
53399
53453
|
return false;
|
|
53400
|
-
if (!this.
|
|
53454
|
+
if (!this.a2q_1.equals(tmp0_other_with_cast.a2q_1))
|
|
53401
53455
|
return false;
|
|
53402
|
-
if (!(this.
|
|
53456
|
+
if (!(this.b2q_1 === tmp0_other_with_cast.b2q_1))
|
|
53403
53457
|
return false;
|
|
53404
53458
|
return true;
|
|
53405
53459
|
};
|
|
53406
|
-
RTCHangupReason.$metadata$ = classMeta('RTCHangupReason', undefined, undefined, {0: $
|
|
53407
|
-
function
|
|
53408
|
-
|
|
53460
|
+
RTCHangupReason.$metadata$ = classMeta('RTCHangupReason', undefined, undefined, {0: $serializer_getInstance_155});
|
|
53461
|
+
function CallCompleteReasonSerialiser() {
|
|
53462
|
+
CallCompleteReasonSerialiser_instance = this;
|
|
53463
|
+
this.g2u_1 = PrimitiveSerialDescriptor('RTCHangupReason.code', STRING_getInstance());
|
|
53464
|
+
}
|
|
53465
|
+
CallCompleteReasonSerialiser.prototype.yf = function () {
|
|
53466
|
+
return this.g2u_1;
|
|
53467
|
+
};
|
|
53468
|
+
CallCompleteReasonSerialiser.prototype.ag = function (decoder) {
|
|
53469
|
+
var tmp0_subject = decoder.aj();
|
|
53470
|
+
switch (tmp0_subject) {
|
|
53471
|
+
case 'LOCAL_HANGUP':
|
|
53472
|
+
return CallCompleteReason_LocalHangup_getInstance();
|
|
53473
|
+
case 'REMOTE_HANGUP':
|
|
53474
|
+
return CallCompleteReason_RemoteHangup_getInstance();
|
|
53475
|
+
case 'LOCAL_CANCEL':
|
|
53476
|
+
return CallCompleteReason_LocalCancel_getInstance();
|
|
53477
|
+
case 'LENGTH_TIMER':
|
|
53478
|
+
return CallCompleteReason_MaxLength_getInstance();
|
|
53479
|
+
case 'RING_TIMER':
|
|
53480
|
+
return CallCompleteReason_RingTimeout_getInstance();
|
|
53481
|
+
case 'REMOTE_NO_ANSWER':
|
|
53482
|
+
case 'REMOTE_REJECTED':
|
|
53483
|
+
case 'REMOTE_BUSY':
|
|
53484
|
+
case 'REMOTE_CANCEL':
|
|
53485
|
+
case 'REMOTE_NOT_FOUND':
|
|
53486
|
+
case 'REMOTE_FAILURE':
|
|
53487
|
+
return CallCompleteReason_RemoteHangup_getInstance();
|
|
53488
|
+
default:
|
|
53489
|
+
return CallCompleteReason_Unknown_getInstance();
|
|
53490
|
+
}
|
|
53491
|
+
};
|
|
53492
|
+
CallCompleteReasonSerialiser.prototype.d2u = function (encoder, value) {
|
|
53493
|
+
encoder.hk(value.d4_1);
|
|
53494
|
+
};
|
|
53495
|
+
CallCompleteReasonSerialiser.prototype.zf = function (encoder, value) {
|
|
53496
|
+
return this.d2u(encoder, value instanceof CallCompleteReason ? value : THROW_CCE());
|
|
53497
|
+
};
|
|
53498
|
+
CallCompleteReasonSerialiser.$metadata$ = objectMeta('CallCompleteReasonSerialiser', [KSerializer]);
|
|
53499
|
+
var CallCompleteReasonSerialiser_instance;
|
|
53500
|
+
function CallCompleteReasonSerialiser_getInstance() {
|
|
53501
|
+
if (CallCompleteReasonSerialiser_instance == null)
|
|
53502
|
+
new CallCompleteReasonSerialiser();
|
|
53503
|
+
return CallCompleteReasonSerialiser_instance;
|
|
53504
|
+
}
|
|
53505
|
+
function $serializer_156() {
|
|
53506
|
+
$serializer_instance_156 = this;
|
|
53409
53507
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.vonage.clientcore.core.conversation.RTCBandwidth', this, 2);
|
|
53410
53508
|
tmp0_serialDesc.eq('bytes_in', false);
|
|
53411
53509
|
tmp0_serialDesc.eq('bytes_out', false);
|
|
53412
|
-
this.
|
|
53510
|
+
this.h2u_1 = tmp0_serialDesc;
|
|
53413
53511
|
}
|
|
53414
|
-
$
|
|
53415
|
-
return this.
|
|
53512
|
+
$serializer_156.prototype.yf = function () {
|
|
53513
|
+
return this.h2u_1;
|
|
53416
53514
|
};
|
|
53417
|
-
$
|
|
53515
|
+
$serializer_156.prototype.tq = function () {
|
|
53418
53516
|
var tmp$ret$2;
|
|
53419
53517
|
// Inline function 'kotlin.arrayOf' call
|
|
53420
53518
|
var tmp0_arrayOf = [IntSerializer_getInstance(), IntSerializer_getInstance()];
|
|
@@ -53427,8 +53525,8 @@ function requireClientsdkClientcore () {
|
|
|
53427
53525
|
tmp$ret$2 = tmp$ret$1;
|
|
53428
53526
|
return tmp$ret$2;
|
|
53429
53527
|
};
|
|
53430
|
-
$
|
|
53431
|
-
var tmp0_desc = this.
|
|
53528
|
+
$serializer_156.prototype.ag = function (decoder) {
|
|
53529
|
+
var tmp0_desc = this.h2u_1;
|
|
53432
53530
|
var tmp1_flag = true;
|
|
53433
53531
|
var tmp2_index = 0;
|
|
53434
53532
|
var tmp3_bitMask0 = 0;
|
|
@@ -53462,29 +53560,29 @@ function requireClientsdkClientcore () {
|
|
|
53462
53560
|
tmp6_input.gj(tmp0_desc);
|
|
53463
53561
|
return RTCBandwidth_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
53464
53562
|
};
|
|
53465
|
-
$
|
|
53466
|
-
var tmp0_desc = this.
|
|
53563
|
+
$serializer_156.prototype.i2u = function (encoder, value) {
|
|
53564
|
+
var tmp0_desc = this.h2u_1;
|
|
53467
53565
|
var tmp1_output = encoder.fj(tmp0_desc);
|
|
53468
|
-
tmp1_output.nk(tmp0_desc, 0, value.
|
|
53469
|
-
tmp1_output.nk(tmp0_desc, 1, value.
|
|
53566
|
+
tmp1_output.nk(tmp0_desc, 0, value.j2u_1);
|
|
53567
|
+
tmp1_output.nk(tmp0_desc, 1, value.k2u_1);
|
|
53470
53568
|
tmp1_output.gj(tmp0_desc);
|
|
53471
53569
|
};
|
|
53472
|
-
$
|
|
53473
|
-
return this.
|
|
53570
|
+
$serializer_156.prototype.zf = function (encoder, value) {
|
|
53571
|
+
return this.i2u(encoder, value instanceof RTCBandwidth ? value : THROW_CCE());
|
|
53474
53572
|
};
|
|
53475
|
-
$
|
|
53476
|
-
var $
|
|
53477
|
-
function $
|
|
53478
|
-
if ($
|
|
53479
|
-
new $
|
|
53480
|
-
return $
|
|
53573
|
+
$serializer_156.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53574
|
+
var $serializer_instance_156;
|
|
53575
|
+
function $serializer_getInstance_156() {
|
|
53576
|
+
if ($serializer_instance_156 == null)
|
|
53577
|
+
new $serializer_156();
|
|
53578
|
+
return $serializer_instance_156;
|
|
53481
53579
|
}
|
|
53482
53580
|
function RTCBandwidth_init_$Init$(seen1, bytes_in, bytes_out, serializationConstructorMarker, $this) {
|
|
53483
53581
|
if (!(3 === (3 & seen1))) {
|
|
53484
|
-
throwMissingFieldException(seen1, 3, $
|
|
53582
|
+
throwMissingFieldException(seen1, 3, $serializer_getInstance_156().h2u_1);
|
|
53485
53583
|
}
|
|
53486
|
-
$this.
|
|
53487
|
-
$this.
|
|
53584
|
+
$this.j2u_1 = bytes_in;
|
|
53585
|
+
$this.k2u_1 = bytes_out;
|
|
53488
53586
|
return $this;
|
|
53489
53587
|
}
|
|
53490
53588
|
function RTCBandwidth_init_$Create$(seen1, bytes_in, bytes_out, serializationConstructorMarker) {
|
|
@@ -53493,11 +53591,11 @@ function requireClientsdkClientcore () {
|
|
|
53493
53591
|
function RTCBandwidth() {
|
|
53494
53592
|
}
|
|
53495
53593
|
RTCBandwidth.prototype.toString = function () {
|
|
53496
|
-
return 'RTCBandwidth(bytes_in=' + this.
|
|
53594
|
+
return 'RTCBandwidth(bytes_in=' + this.j2u_1 + ', bytes_out=' + this.k2u_1 + ')';
|
|
53497
53595
|
};
|
|
53498
53596
|
RTCBandwidth.prototype.hashCode = function () {
|
|
53499
|
-
var result = this.
|
|
53500
|
-
result = imul(result, 31) + this.
|
|
53597
|
+
var result = this.j2u_1;
|
|
53598
|
+
result = imul(result, 31) + this.k2u_1 | 0;
|
|
53501
53599
|
return result;
|
|
53502
53600
|
};
|
|
53503
53601
|
RTCBandwidth.prototype.equals = function (other) {
|
|
@@ -53506,152 +53604,13 @@ function requireClientsdkClientcore () {
|
|
|
53506
53604
|
if (!(other instanceof RTCBandwidth))
|
|
53507
53605
|
return false;
|
|
53508
53606
|
var tmp0_other_with_cast = other instanceof RTCBandwidth ? other : THROW_CCE();
|
|
53509
|
-
if (!(this.
|
|
53607
|
+
if (!(this.j2u_1 === tmp0_other_with_cast.j2u_1))
|
|
53510
53608
|
return false;
|
|
53511
|
-
if (!(this.
|
|
53609
|
+
if (!(this.k2u_1 === tmp0_other_with_cast.k2u_1))
|
|
53512
53610
|
return false;
|
|
53513
53611
|
return true;
|
|
53514
53612
|
};
|
|
53515
|
-
RTCBandwidth.$metadata$ = classMeta('RTCBandwidth', undefined, undefined, {0: $
|
|
53516
|
-
function CallCompleteReason$Companion$$cachedSerializer$delegate$_anonymous__gwqa6d() {
|
|
53517
|
-
return $serializer_getInstance_156();
|
|
53518
|
-
}
|
|
53519
|
-
var CallCompleteReason_LocalHangup_instance;
|
|
53520
|
-
var CallCompleteReason_LocalCancel_instance;
|
|
53521
|
-
var CallCompleteReason_RemoteHangup_instance;
|
|
53522
|
-
var CallCompleteReason_MaxLength_instance;
|
|
53523
|
-
var CallCompleteReason_RingTimeout_instance;
|
|
53524
|
-
var CallCompleteReason_Failed_instance;
|
|
53525
|
-
var CallCompleteReason_Unknown_instance;
|
|
53526
|
-
function Companion_115() {
|
|
53527
|
-
Companion_instance_115 = this;
|
|
53528
|
-
var tmp = this;
|
|
53529
|
-
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
53530
|
-
tmp.h2u_1 = lazy(tmp_0, CallCompleteReason$Companion$$cachedSerializer$delegate$_anonymous__gwqa6d);
|
|
53531
|
-
}
|
|
53532
|
-
Companion_115.prototype.v10 = function () {
|
|
53533
|
-
return this.h2u_1.s1();
|
|
53534
|
-
};
|
|
53535
|
-
Companion_115.prototype.nr = function (typeParamsSerializers) {
|
|
53536
|
-
return this.v10();
|
|
53537
|
-
};
|
|
53538
|
-
Companion_115.$metadata$ = objectMeta('Companion', [SerializerFactory]);
|
|
53539
|
-
var Companion_instance_115;
|
|
53540
|
-
function Companion_getInstance_116() {
|
|
53541
|
-
CallCompleteReason_initEntries();
|
|
53542
|
-
if (Companion_instance_115 == null)
|
|
53543
|
-
new Companion_115();
|
|
53544
|
-
return Companion_instance_115;
|
|
53545
|
-
}
|
|
53546
|
-
function $serializer_156() {
|
|
53547
|
-
$serializer_instance_156 = this;
|
|
53548
|
-
var tmp0_serialDesc = new EnumDescriptor('com.vonage.clientcore.core.conversation.CallCompleteReason', 7);
|
|
53549
|
-
tmp0_serialDesc.eq('LocalHangup', false);
|
|
53550
|
-
tmp0_serialDesc.eq('LocalCancel', false);
|
|
53551
|
-
tmp0_serialDesc.eq('RemoteHangup', false);
|
|
53552
|
-
tmp0_serialDesc.eq('MaxLength', false);
|
|
53553
|
-
tmp0_serialDesc.eq('RingTimeout', false);
|
|
53554
|
-
tmp0_serialDesc.eq('Failed', false);
|
|
53555
|
-
tmp0_serialDesc.eq('Unknown', false);
|
|
53556
|
-
this.i2u_1 = tmp0_serialDesc;
|
|
53557
|
-
}
|
|
53558
|
-
$serializer_156.prototype.yf = function () {
|
|
53559
|
-
return this.i2u_1;
|
|
53560
|
-
};
|
|
53561
|
-
$serializer_156.prototype.tq = function () {
|
|
53562
|
-
var tmp$ret$2;
|
|
53563
|
-
// Inline function 'kotlin.arrayOf' call
|
|
53564
|
-
var tmp$ret$1;
|
|
53565
|
-
// Inline function 'kotlin.js.unsafeCast' call
|
|
53566
|
-
var tmp$ret$0;
|
|
53567
|
-
// Inline function 'kotlin.js.asDynamic' call
|
|
53568
|
-
tmp$ret$0 = [];
|
|
53569
|
-
tmp$ret$1 = tmp$ret$0;
|
|
53570
|
-
tmp$ret$2 = tmp$ret$1;
|
|
53571
|
-
return tmp$ret$2;
|
|
53572
|
-
};
|
|
53573
|
-
$serializer_156.prototype.ag = function (decoder) {
|
|
53574
|
-
return values_4()[decoder.bj(this.i2u_1)];
|
|
53575
|
-
};
|
|
53576
|
-
$serializer_156.prototype.j2u = function (encoder, value) {
|
|
53577
|
-
encoder.ik(this.i2u_1, value.e4_1);
|
|
53578
|
-
};
|
|
53579
|
-
$serializer_156.prototype.zf = function (encoder, value) {
|
|
53580
|
-
return this.j2u(encoder, value instanceof CallCompleteReason ? value : THROW_CCE());
|
|
53581
|
-
};
|
|
53582
|
-
$serializer_156.$metadata$ = objectMeta('$serializer', [GeneratedSerializer]);
|
|
53583
|
-
var $serializer_instance_156;
|
|
53584
|
-
function $serializer_getInstance_156() {
|
|
53585
|
-
CallCompleteReason_initEntries();
|
|
53586
|
-
if ($serializer_instance_156 == null)
|
|
53587
|
-
new $serializer_156();
|
|
53588
|
-
return $serializer_instance_156;
|
|
53589
|
-
}
|
|
53590
|
-
function values_4() {
|
|
53591
|
-
return [CallCompleteReason_LocalHangup_getInstance(), CallCompleteReason_LocalCancel_getInstance(), CallCompleteReason_RemoteHangup_getInstance(), CallCompleteReason_MaxLength_getInstance(), CallCompleteReason_RingTimeout_getInstance(), CallCompleteReason_Failed_getInstance(), CallCompleteReason_Unknown_getInstance()];
|
|
53592
|
-
}
|
|
53593
|
-
var CallCompleteReason_entriesInitialized;
|
|
53594
|
-
function CallCompleteReason_initEntries() {
|
|
53595
|
-
if (CallCompleteReason_entriesInitialized)
|
|
53596
|
-
return Unit_getInstance();
|
|
53597
|
-
CallCompleteReason_entriesInitialized = true;
|
|
53598
|
-
CallCompleteReason_LocalHangup_instance = new CallCompleteReason('LocalHangup', 0);
|
|
53599
|
-
CallCompleteReason_LocalCancel_instance = new CallCompleteReason('LocalCancel', 1);
|
|
53600
|
-
CallCompleteReason_RemoteHangup_instance = new CallCompleteReason('RemoteHangup', 2);
|
|
53601
|
-
CallCompleteReason_MaxLength_instance = new CallCompleteReason('MaxLength', 3);
|
|
53602
|
-
CallCompleteReason_RingTimeout_instance = new CallCompleteReason('RingTimeout', 4);
|
|
53603
|
-
CallCompleteReason_Failed_instance = new CallCompleteReason('Failed', 5);
|
|
53604
|
-
CallCompleteReason_Unknown_instance = new CallCompleteReason('Unknown', 6);
|
|
53605
|
-
Companion_getInstance_116();
|
|
53606
|
-
}
|
|
53607
|
-
function CallCompleteReason(name, ordinal) {
|
|
53608
|
-
Enum.call(this, name, ordinal);
|
|
53609
|
-
}
|
|
53610
|
-
CallCompleteReason.$metadata$ = classMeta('CallCompleteReason', undefined, undefined, {0: $serializer_getInstance_156}, undefined, Enum.prototype);
|
|
53611
|
-
function CallCompleteReasonSerialiser() {
|
|
53612
|
-
CallCompleteReasonSerialiser_instance = this;
|
|
53613
|
-
this.k2u_1 = PrimitiveSerialDescriptor('RTCHangupReason.code', STRING_getInstance());
|
|
53614
|
-
}
|
|
53615
|
-
CallCompleteReasonSerialiser.prototype.yf = function () {
|
|
53616
|
-
return this.k2u_1;
|
|
53617
|
-
};
|
|
53618
|
-
CallCompleteReasonSerialiser.prototype.ag = function (decoder) {
|
|
53619
|
-
var tmp0_subject = decoder.aj();
|
|
53620
|
-
switch (tmp0_subject) {
|
|
53621
|
-
case 'LOCAL_HANGUP':
|
|
53622
|
-
return CallCompleteReason_LocalHangup_getInstance();
|
|
53623
|
-
case 'REMOTE_HANGUP':
|
|
53624
|
-
return CallCompleteReason_RemoteHangup_getInstance();
|
|
53625
|
-
case 'LOCAL_CANCEL':
|
|
53626
|
-
return CallCompleteReason_LocalCancel_getInstance();
|
|
53627
|
-
case 'LENGTH_TIMER':
|
|
53628
|
-
return CallCompleteReason_MaxLength_getInstance();
|
|
53629
|
-
case 'RING_TIMER':
|
|
53630
|
-
return CallCompleteReason_RingTimeout_getInstance();
|
|
53631
|
-
case 'REMOTE_NO_ANSWER':
|
|
53632
|
-
case 'REMOTE_REJECTED':
|
|
53633
|
-
case 'REMOTE_BUSY':
|
|
53634
|
-
case 'REMOTE_CANCEL':
|
|
53635
|
-
case 'REMOTE_NOT_FOUND':
|
|
53636
|
-
case 'REMOTE_FAILURE':
|
|
53637
|
-
return CallCompleteReason_RemoteHangup_getInstance();
|
|
53638
|
-
default:
|
|
53639
|
-
return CallCompleteReason_Unknown_getInstance();
|
|
53640
|
-
}
|
|
53641
|
-
};
|
|
53642
|
-
CallCompleteReasonSerialiser.prototype.j2u = function (encoder, value) {
|
|
53643
|
-
encoder.hk(value.d4_1);
|
|
53644
|
-
};
|
|
53645
|
-
CallCompleteReasonSerialiser.prototype.zf = function (encoder, value) {
|
|
53646
|
-
return this.j2u(encoder, value instanceof CallCompleteReason ? value : THROW_CCE());
|
|
53647
|
-
};
|
|
53648
|
-
CallCompleteReasonSerialiser.$metadata$ = objectMeta('CallCompleteReasonSerialiser', [KSerializer]);
|
|
53649
|
-
var CallCompleteReasonSerialiser_instance;
|
|
53650
|
-
function CallCompleteReasonSerialiser_getInstance() {
|
|
53651
|
-
if (CallCompleteReasonSerialiser_instance == null)
|
|
53652
|
-
new CallCompleteReasonSerialiser();
|
|
53653
|
-
return CallCompleteReasonSerialiser_instance;
|
|
53654
|
-
}
|
|
53613
|
+
RTCBandwidth.$metadata$ = classMeta('RTCBandwidth', undefined, undefined, {0: $serializer_getInstance_156});
|
|
53655
53614
|
function CallCompleteReason_LocalHangup_getInstance() {
|
|
53656
53615
|
CallCompleteReason_initEntries();
|
|
53657
53616
|
return CallCompleteReason_LocalHangup_instance;
|
|
@@ -55783,7 +55742,7 @@ function requireClientsdkClientcore () {
|
|
|
55783
55742
|
tmp_0 = $next(action);
|
|
55784
55743
|
} else {
|
|
55785
55744
|
var tmp1_safe_receiver = $store.z2f(getKClass(ConfigReducer));
|
|
55786
|
-
var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.
|
|
55745
|
+
var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.o2q_1;
|
|
55787
55746
|
var host = tmp2_elvis_lhs == null ? '' : tmp2_elvis_lhs;
|
|
55788
55747
|
var tmp3_safe_receiver = $store.z2f(getKClass(SessionReducer));
|
|
55789
55748
|
var auth = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.d2g_1;
|
|
@@ -55796,7 +55755,7 @@ function requireClientsdkClientcore () {
|
|
|
55796
55755
|
tmp_2 = mapOf([to('Authorization', 'bearer ' + auth), to('Content-Type', 'application/json')]);
|
|
55797
55756
|
} else {
|
|
55798
55757
|
var tmp4_safe_receiver = $store.z2f(getKClass(ConfigReducer));
|
|
55799
|
-
var tmp5_elvis_lhs = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.
|
|
55758
|
+
var tmp5_elvis_lhs = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.p2q_1;
|
|
55800
55759
|
host = tmp5_elvis_lhs == null ? '' : tmp5_elvis_lhs;
|
|
55801
55760
|
tmp_2 = mapOf_0(to('Content-Type', 'application/json'));
|
|
55802
55761
|
}
|
|
@@ -56134,16 +56093,16 @@ function requireClientsdkClientcore () {
|
|
|
56134
56093
|
var legId = leg.a1t_1;
|
|
56135
56094
|
var remoteSdp = leg.b1t_1;
|
|
56136
56095
|
$callback(legId);
|
|
56137
|
-
var tmp_0 = new AppChannelEndpoint($action.o1d_1.
|
|
56096
|
+
var tmp_0 = new AppChannelEndpoint($action.o1d_1.v2q_1);
|
|
56138
56097
|
var tmp_1 = CallDirection_outbound_getInstance();
|
|
56139
|
-
$store.b1d(Action_init_$Create$(CallCreate_init_$Create$(legId, tmp_0, tmp_1, $action.o1d_1.
|
|
56098
|
+
$store.b1d(Action_init_$Create$(CallCreate_init_$Create$(legId, tmp_0, tmp_1, $action.o1d_1.w2q_1, null, 16, null)));
|
|
56140
56099
|
$store.b1d(Action_init_$Create$(new MediaOffer(legId, $offer)));
|
|
56141
56100
|
$media.j2v(legId, remoteSdp);
|
|
56142
56101
|
StaticConfig_getInstance();
|
|
56143
56102
|
$media.n2v(1000, legId);
|
|
56144
56103
|
var tmp_2 = new CallMemberMediaTimeout(legId);
|
|
56145
56104
|
StaticConfig_getInstance();
|
|
56146
|
-
$store.b1d(Action_init_$Create$(new TimeoutAction(tmp_2,
|
|
56105
|
+
$store.b1d(Action_init_$Create$(new TimeoutAction(tmp_2, 10000)));
|
|
56147
56106
|
var tmp_3;
|
|
56148
56107
|
if (!($action.p1d_1.n1d_1 == null)) {
|
|
56149
56108
|
$store.b1d(Action_init_$Create$(new CallbackAction(ensureNotNull($action.p1d_1.n1d_1), legId)));
|
|
@@ -56200,11 +56159,11 @@ function requireClientsdkClientcore () {
|
|
|
56200
56159
|
}
|
|
56201
56160
|
tmp = tmp_0;
|
|
56202
56161
|
} else {
|
|
56203
|
-
$store.b1d(Action_init_$Create$(new CallCreate($action.o1d_1.
|
|
56204
|
-
$store.b1d(Action_init_$Create$(new MediaAnswer($action.o1d_1.
|
|
56162
|
+
$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))));
|
|
56163
|
+
$store.b1d(Action_init_$Create$(new MediaAnswer($action.o1d_1.d2r_1, $offer)));
|
|
56205
56164
|
var tmp_1;
|
|
56206
56165
|
if (!($action.p1d_1.n1d_1 == null)) {
|
|
56207
|
-
$store.b1d(Action_init_$Create$(new CallbackAction(ensureNotNull($action.p1d_1.n1d_1), $action.o1d_1.
|
|
56166
|
+
$store.b1d(Action_init_$Create$(new CallbackAction(ensureNotNull($action.p1d_1.n1d_1), $action.o1d_1.d2r_1)));
|
|
56208
56167
|
tmp_1 = Unit_getInstance();
|
|
56209
56168
|
}
|
|
56210
56169
|
tmp = tmp_1;
|
|
@@ -56225,10 +56184,10 @@ function requireClientsdkClientcore () {
|
|
|
56225
56184
|
$store.b1d(Action_init_$Create$(new CallbackAction(ensureNotNull($action.p1d_1.n1d_1), error)));
|
|
56226
56185
|
tmp = Unit_getInstance();
|
|
56227
56186
|
} else {
|
|
56228
|
-
var tmp_1 = new RTCAnswerRequest($action.o1d_1.
|
|
56187
|
+
var tmp_1 = new RTCAnswerRequest($action.o1d_1.e2r_1, $action.o1d_1.f2r_1, $action.o1d_1.d2r_1, answer);
|
|
56229
56188
|
$store.b1d(new Action(tmp_1, ActionMeta_init_$Create$(null, null, mediaActionMiddleware$lambda$lambda$lambda$lambda_0($action, $store, $logger, $offer), 3, null)));
|
|
56230
56189
|
StaticConfig_getInstance();
|
|
56231
|
-
$media.n2v(1000, $action.o1d_1.
|
|
56190
|
+
$media.n2v(1000, $action.o1d_1.d2r_1);
|
|
56232
56191
|
tmp = Unit_getInstance();
|
|
56233
56192
|
}
|
|
56234
56193
|
return Unit_getInstance();
|
|
@@ -56258,11 +56217,11 @@ function requireClientsdkClientcore () {
|
|
|
56258
56217
|
}
|
|
56259
56218
|
tmp = tmp_1;
|
|
56260
56219
|
} else {
|
|
56261
|
-
callback($action.o1d_1.
|
|
56262
|
-
var tmp_3 = new RTCReconnectRequest($action.o1d_1.
|
|
56263
|
-
$store.b1d(new Action(tmp_3, ActionMeta_init_$Create$(null, $action.o1d_1.
|
|
56220
|
+
callback($action.o1d_1.z2q_1);
|
|
56221
|
+
var tmp_3 = new RTCReconnectRequest($action.o1d_1.b2r_1, $action.o1d_1.a2r_1, offer, $action.o1d_1.z2q_1);
|
|
56222
|
+
$store.b1d(new Action(tmp_3, ActionMeta_init_$Create$(null, $action.o1d_1.z2q_1, null, 5, null)));
|
|
56264
56223
|
StaticConfig_getInstance();
|
|
56265
|
-
$media.n2v(1000, $action.o1d_1.
|
|
56224
|
+
$media.n2v(1000, $action.o1d_1.z2q_1);
|
|
56266
56225
|
tmp = Unit_getInstance();
|
|
56267
56226
|
}
|
|
56268
56227
|
return Unit_getInstance();
|
|
@@ -56281,8 +56240,8 @@ function requireClientsdkClientcore () {
|
|
|
56281
56240
|
$media.h2v(mediaActionMiddleware$lambda$lambda$lambda_0(action, $store, $logger, $media));
|
|
56282
56241
|
} else {
|
|
56283
56242
|
if (tmp0_subject instanceof SetupInboundCall) {
|
|
56284
|
-
var offer = action.o1d_1.
|
|
56285
|
-
$media.i2v(mediaActionMiddleware$lambda$lambda$lambda_1($store, action, $media, $logger, offer), offer, action.o1d_1.
|
|
56243
|
+
var offer = action.o1d_1.h2r_1;
|
|
56244
|
+
$media.i2v(mediaActionMiddleware$lambda$lambda$lambda_1($store, action, $media, $logger, offer), offer, action.o1d_1.d2r_1);
|
|
56286
56245
|
} else {
|
|
56287
56246
|
if (tmp0_subject instanceof CallReconnect) {
|
|
56288
56247
|
$media.h2v(mediaActionMiddleware$lambda$lambda$lambda_2(action, $store, $logger, $media));
|
|
@@ -56302,7 +56261,7 @@ function requireClientsdkClientcore () {
|
|
|
56302
56261
|
$media.j2v(action.o1d_1.j24_1.v24_1, action.o1d_1.j24_1.w24_1);
|
|
56303
56262
|
} else {
|
|
56304
56263
|
if (tmp0_subject instanceof CallCleanup) {
|
|
56305
|
-
$media.k2v(action.o1d_1.
|
|
56264
|
+
$media.k2v(action.o1d_1.x2q_1);
|
|
56306
56265
|
} else {
|
|
56307
56266
|
if (tmp0_subject instanceof MediaDisable) {
|
|
56308
56267
|
$media.k2v(action.o1d_1.e29_1);
|
|
@@ -56557,9 +56516,9 @@ function requireClientsdkClientcore () {
|
|
|
56557
56516
|
var tmp_0;
|
|
56558
56517
|
if (a instanceof SocketConnect) {
|
|
56559
56518
|
var tmp0_safe_receiver = state;
|
|
56560
|
-
var host = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
56519
|
+
var host = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.m2q_1;
|
|
56561
56520
|
var tmp1_safe_receiver = state;
|
|
56562
|
-
var path = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.
|
|
56521
|
+
var path = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.n2q_1;
|
|
56563
56522
|
var token = a.q2a_1;
|
|
56564
56523
|
var sessionId = a.r2a_1;
|
|
56565
56524
|
var query = 'session_version=0.0.2&token=' + token;
|
|
@@ -57126,6 +57085,164 @@ function requireClientsdkClientcore () {
|
|
|
57126
57085
|
function WSEndPoints() {
|
|
57127
57086
|
}
|
|
57128
57087
|
WSEndPoints.$metadata$ = classMeta('WSEndPoints');
|
|
57088
|
+
function cleanupReducers(_this__u8e3s4, filteredLegId, filteredConversationId) {
|
|
57089
|
+
var tmp0_safe_receiver = _this__u8e3s4.z2f(getKClass(InviteReducer));
|
|
57090
|
+
if (tmp0_safe_receiver == null)
|
|
57091
|
+
null;
|
|
57092
|
+
else {
|
|
57093
|
+
var tmp$ret$7;
|
|
57094
|
+
// Inline function 'kotlin.run' call
|
|
57095
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57096
|
+
var tmp$ret$5;
|
|
57097
|
+
// Inline function 'kotlin.collections.filter' call
|
|
57098
|
+
var tmp0_filter = tmp0_safe_receiver.d2q_1;
|
|
57099
|
+
var tmp$ret$4;
|
|
57100
|
+
// Inline function 'kotlin.collections.filterTo' call
|
|
57101
|
+
var tmp0_filterTo = LinkedHashMap_init_$Create$();
|
|
57102
|
+
var tmp$ret$0;
|
|
57103
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
57104
|
+
tmp$ret$0 = tmp0_filter.q().g();
|
|
57105
|
+
var tmp0_iterator = tmp$ret$0;
|
|
57106
|
+
while (tmp0_iterator.h()) {
|
|
57107
|
+
var element = tmp0_iterator.i();
|
|
57108
|
+
var tmp$ret$3;
|
|
57109
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57110
|
+
var tmp0_safe_receiver_0 = filteredLegId;
|
|
57111
|
+
var tmp;
|
|
57112
|
+
if (tmp0_safe_receiver_0 == null) {
|
|
57113
|
+
tmp = null;
|
|
57114
|
+
} else {
|
|
57115
|
+
var tmp$ret$2;
|
|
57116
|
+
// Inline function 'kotlin.let' call
|
|
57117
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57118
|
+
var tmp$ret$1;
|
|
57119
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>.<anonymous>' call
|
|
57120
|
+
tmp$ret$1 = !(element.s1().q2p_1 === tmp0_safe_receiver_0);
|
|
57121
|
+
tmp$ret$2 = tmp$ret$1;
|
|
57122
|
+
tmp = tmp$ret$2;
|
|
57123
|
+
}
|
|
57124
|
+
var tmp1_elvis_lhs = tmp;
|
|
57125
|
+
tmp$ret$3 = tmp1_elvis_lhs == null ? true : tmp1_elvis_lhs;
|
|
57126
|
+
if (tmp$ret$3) {
|
|
57127
|
+
tmp0_filterTo.l(element.q1(), element.s1());
|
|
57128
|
+
}
|
|
57129
|
+
}
|
|
57130
|
+
tmp$ret$4 = tmp0_filterTo;
|
|
57131
|
+
tmp$ret$5 = tmp$ret$4;
|
|
57132
|
+
var tmp1_forEach = tmp$ret$5;
|
|
57133
|
+
var tmp$ret$6;
|
|
57134
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
57135
|
+
tmp$ret$6 = tmp1_forEach.q().g();
|
|
57136
|
+
var tmp0_iterator_0 = tmp$ret$6;
|
|
57137
|
+
while (tmp0_iterator_0.h()) {
|
|
57138
|
+
var element_0 = tmp0_iterator_0.i();
|
|
57139
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57140
|
+
if (element_0.s1().w2p_1) {
|
|
57141
|
+
_this__u8e3s4.b1d(Action_init_$Create$(new InviteCleanup(element_0.q1())));
|
|
57142
|
+
}
|
|
57143
|
+
}
|
|
57144
|
+
tmp$ret$7 = Unit_getInstance();
|
|
57145
|
+
}
|
|
57146
|
+
var tmp1_safe_receiver = _this__u8e3s4.z2f(getKClass(CallReducer));
|
|
57147
|
+
if (tmp1_safe_receiver == null)
|
|
57148
|
+
null;
|
|
57149
|
+
else {
|
|
57150
|
+
var tmp$ret$19;
|
|
57151
|
+
// Inline function 'kotlin.run' call
|
|
57152
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57153
|
+
var tmp$ret$17;
|
|
57154
|
+
// Inline function 'kotlin.collections.filter' call
|
|
57155
|
+
var tmp0_filter_0 = tmp1_safe_receiver.m2p_1;
|
|
57156
|
+
var tmp$ret$16;
|
|
57157
|
+
// Inline function 'kotlin.collections.filterTo' call
|
|
57158
|
+
var tmp0_filterTo_0 = LinkedHashMap_init_$Create$();
|
|
57159
|
+
var tmp$ret$8;
|
|
57160
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
57161
|
+
tmp$ret$8 = tmp0_filter_0.q().g();
|
|
57162
|
+
var tmp0_iterator_1 = tmp$ret$8;
|
|
57163
|
+
while (tmp0_iterator_1.h()) {
|
|
57164
|
+
var element_1 = tmp0_iterator_1.i();
|
|
57165
|
+
var tmp$ret$15;
|
|
57166
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57167
|
+
var tmp$ret$9;
|
|
57168
|
+
// Inline function 'kotlin.collections.component1' call
|
|
57169
|
+
tmp$ret$9 = element_1.q1();
|
|
57170
|
+
var conversationId = tmp$ret$9;
|
|
57171
|
+
var tmp$ret$10;
|
|
57172
|
+
// Inline function 'kotlin.collections.component2' call
|
|
57173
|
+
tmp$ret$10 = element_1.s1();
|
|
57174
|
+
var callId = tmp$ret$10;
|
|
57175
|
+
var tmp_0;
|
|
57176
|
+
var tmp0_safe_receiver_1 = filteredLegId;
|
|
57177
|
+
var tmp_1;
|
|
57178
|
+
if (tmp0_safe_receiver_1 == null) {
|
|
57179
|
+
tmp_1 = null;
|
|
57180
|
+
} else {
|
|
57181
|
+
var tmp$ret$12;
|
|
57182
|
+
// Inline function 'kotlin.let' call
|
|
57183
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57184
|
+
var tmp$ret$11;
|
|
57185
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>.<anonymous>' call
|
|
57186
|
+
tmp$ret$11 = !(callId === tmp0_safe_receiver_1);
|
|
57187
|
+
tmp$ret$12 = tmp$ret$11;
|
|
57188
|
+
tmp_1 = tmp$ret$12;
|
|
57189
|
+
}
|
|
57190
|
+
var tmp1_elvis_lhs_0 = tmp_1;
|
|
57191
|
+
if (tmp1_elvis_lhs_0 == null ? true : tmp1_elvis_lhs_0) {
|
|
57192
|
+
var tmp2_safe_receiver = filteredConversationId;
|
|
57193
|
+
var tmp_2;
|
|
57194
|
+
if (tmp2_safe_receiver == null) {
|
|
57195
|
+
tmp_2 = null;
|
|
57196
|
+
} else {
|
|
57197
|
+
var tmp$ret$14;
|
|
57198
|
+
// Inline function 'kotlin.let' call
|
|
57199
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57200
|
+
var tmp$ret$13;
|
|
57201
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>.<anonymous>' call
|
|
57202
|
+
tmp$ret$13 = !(tmp2_safe_receiver === conversationId);
|
|
57203
|
+
tmp$ret$14 = tmp$ret$13;
|
|
57204
|
+
tmp_2 = tmp$ret$14;
|
|
57205
|
+
}
|
|
57206
|
+
var tmp3_elvis_lhs = tmp_2;
|
|
57207
|
+
tmp_0 = tmp3_elvis_lhs == null ? true : tmp3_elvis_lhs;
|
|
57208
|
+
} else {
|
|
57209
|
+
tmp_0 = false;
|
|
57210
|
+
}
|
|
57211
|
+
tmp$ret$15 = tmp_0;
|
|
57212
|
+
if (tmp$ret$15) {
|
|
57213
|
+
tmp0_filterTo_0.l(element_1.q1(), element_1.s1());
|
|
57214
|
+
}
|
|
57215
|
+
}
|
|
57216
|
+
tmp$ret$16 = tmp0_filterTo_0;
|
|
57217
|
+
tmp$ret$17 = tmp$ret$16;
|
|
57218
|
+
var tmp1_forEach_0 = tmp$ret$17.i2();
|
|
57219
|
+
var tmp0_iterator_2 = tmp1_forEach_0.g();
|
|
57220
|
+
while (tmp0_iterator_2.h()) {
|
|
57221
|
+
var element_2 = tmp0_iterator_2.i();
|
|
57222
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57223
|
+
var tmp$ret$18;
|
|
57224
|
+
// Inline function 'kotlin.let' call
|
|
57225
|
+
var tmp0_safe_receiver_2 = tmp1_safe_receiver.l2p_1.g2(element_2);
|
|
57226
|
+
var tmp1_safe_receiver_0 = tmp0_safe_receiver_2 == null ? null : tmp0_safe_receiver_2.b2p_1;
|
|
57227
|
+
var tmp0_let = tmp1_safe_receiver_0 == null ? null : tmp1_safe_receiver_0.s1();
|
|
57228
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57229
|
+
var tmp_3;
|
|
57230
|
+
if (tmp0_let instanceof Completed) {
|
|
57231
|
+
_this__u8e3s4.b1d(Action_init_$Create$(new CallCleanup(element_2)));
|
|
57232
|
+
tmp_3 = Unit_getInstance();
|
|
57233
|
+
}
|
|
57234
|
+
tmp$ret$18 = tmp_3;
|
|
57235
|
+
}
|
|
57236
|
+
tmp$ret$19 = Unit_getInstance();
|
|
57237
|
+
}
|
|
57238
|
+
}
|
|
57239
|
+
function cleanupReducers$default(_this__u8e3s4, filteredLegId, filteredConversationId, $mask0, $handler) {
|
|
57240
|
+
if (!(($mask0 & 1) === 0))
|
|
57241
|
+
filteredLegId = null;
|
|
57242
|
+
if (!(($mask0 & 2) === 0))
|
|
57243
|
+
filteredConversationId = null;
|
|
57244
|
+
return cleanupReducers(_this__u8e3s4, filteredLegId, filteredConversationId);
|
|
57245
|
+
}
|
|
57129
57246
|
function SetConfig(wsHost, wsPath, httpHost, enableWsInvites) {
|
|
57130
57247
|
this.f2y_1 = wsHost;
|
|
57131
57248
|
this.g2y_1 = wsPath;
|
|
@@ -57230,36 +57347,36 @@ function requireClientsdkClientcore () {
|
|
|
57230
57347
|
return ConfigState_init_$Init$(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites, $mask0, $marker, Object.create(ConfigState.prototype));
|
|
57231
57348
|
}
|
|
57232
57349
|
function ConfigState(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites) {
|
|
57233
|
-
this.
|
|
57234
|
-
this.
|
|
57235
|
-
this.
|
|
57236
|
-
this.
|
|
57237
|
-
this.
|
|
57350
|
+
this.m2q_1 = wsHost;
|
|
57351
|
+
this.n2q_1 = wsPath;
|
|
57352
|
+
this.o2q_1 = httpHost;
|
|
57353
|
+
this.p2q_1 = rtcStatsHost;
|
|
57354
|
+
this.q2q_1 = enableWsInvites;
|
|
57238
57355
|
}
|
|
57239
57356
|
ConfigState.prototype.z2y = function (_set____db54di) {
|
|
57240
|
-
this.
|
|
57357
|
+
this.m2q_1 = _set____db54di;
|
|
57241
57358
|
};
|
|
57242
57359
|
ConfigState.prototype.a2z = function (_set____db54di) {
|
|
57243
|
-
this.
|
|
57360
|
+
this.n2q_1 = _set____db54di;
|
|
57244
57361
|
};
|
|
57245
57362
|
ConfigState.prototype.b2z = function (_set____db54di) {
|
|
57246
|
-
this.
|
|
57363
|
+
this.o2q_1 = _set____db54di;
|
|
57247
57364
|
};
|
|
57248
57365
|
ConfigState.prototype.c2z = function (_set____db54di) {
|
|
57249
|
-
this.
|
|
57366
|
+
this.q2q_1 = _set____db54di;
|
|
57250
57367
|
};
|
|
57251
57368
|
ConfigState.prototype.m2y = function () {
|
|
57252
|
-
return this.
|
|
57369
|
+
return this.q2q_1;
|
|
57253
57370
|
};
|
|
57254
57371
|
ConfigState.prototype.v2y = function (action) {
|
|
57255
57372
|
var tmp$ret$0;
|
|
57256
57373
|
// Inline function 'kotlin.apply' call
|
|
57257
57374
|
// Inline function 'kotlin.contracts.contract' call
|
|
57258
57375
|
// Inline function 'com.vonage.clientcore.core.reducers.ConfigState.update.<anonymous>' call
|
|
57259
|
-
this.
|
|
57260
|
-
this.
|
|
57261
|
-
this.
|
|
57262
|
-
this.
|
|
57376
|
+
this.o2q_1 = action.h2y_1;
|
|
57377
|
+
this.m2q_1 = action.f2y_1;
|
|
57378
|
+
this.n2q_1 = action.g2y_1;
|
|
57379
|
+
this.q2q_1 = action.i2y_1;
|
|
57263
57380
|
tmp$ret$0 = this;
|
|
57264
57381
|
return tmp$ret$0;
|
|
57265
57382
|
};
|
|
@@ -57268,26 +57385,26 @@ function requireClientsdkClientcore () {
|
|
|
57268
57385
|
};
|
|
57269
57386
|
ConfigState.prototype.t2y = function (wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites, $mask0, $handler) {
|
|
57270
57387
|
if (!(($mask0 & 1) === 0))
|
|
57271
|
-
wsHost = this.
|
|
57388
|
+
wsHost = this.m2q_1;
|
|
57272
57389
|
if (!(($mask0 & 2) === 0))
|
|
57273
|
-
wsPath = this.
|
|
57390
|
+
wsPath = this.n2q_1;
|
|
57274
57391
|
if (!(($mask0 & 4) === 0))
|
|
57275
|
-
httpHost = this.
|
|
57392
|
+
httpHost = this.o2q_1;
|
|
57276
57393
|
if (!(($mask0 & 8) === 0))
|
|
57277
|
-
rtcStatsHost = this.
|
|
57394
|
+
rtcStatsHost = this.p2q_1;
|
|
57278
57395
|
if (!(($mask0 & 16) === 0))
|
|
57279
|
-
enableWsInvites = this.
|
|
57396
|
+
enableWsInvites = this.q2q_1;
|
|
57280
57397
|
return this.d2z(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites);
|
|
57281
57398
|
};
|
|
57282
57399
|
ConfigState.prototype.toString = function () {
|
|
57283
|
-
return 'ConfigState(wsHost=' + this.
|
|
57400
|
+
return 'ConfigState(wsHost=' + this.m2q_1 + ', wsPath=' + this.n2q_1 + ', httpHost=' + this.o2q_1 + ', rtcStatsHost=' + this.p2q_1 + ', enableWsInvites=' + this.q2q_1 + ')';
|
|
57284
57401
|
};
|
|
57285
57402
|
ConfigState.prototype.hashCode = function () {
|
|
57286
|
-
var result = this.
|
|
57287
|
-
result = imul(result, 31) + (this.
|
|
57288
|
-
result = imul(result, 31) + (this.
|
|
57289
|
-
result = imul(result, 31) + (this.
|
|
57290
|
-
result = imul(result, 31) + (this.
|
|
57403
|
+
var result = this.m2q_1 == null ? 0 : getStringHashCode(this.m2q_1);
|
|
57404
|
+
result = imul(result, 31) + (this.n2q_1 == null ? 0 : getStringHashCode(this.n2q_1)) | 0;
|
|
57405
|
+
result = imul(result, 31) + (this.o2q_1 == null ? 0 : getStringHashCode(this.o2q_1)) | 0;
|
|
57406
|
+
result = imul(result, 31) + (this.p2q_1 == null ? 0 : getStringHashCode(this.p2q_1)) | 0;
|
|
57407
|
+
result = imul(result, 31) + (this.q2q_1 | 0) | 0;
|
|
57291
57408
|
return result;
|
|
57292
57409
|
};
|
|
57293
57410
|
ConfigState.prototype.equals = function (other) {
|
|
@@ -57296,15 +57413,15 @@ function requireClientsdkClientcore () {
|
|
|
57296
57413
|
if (!(other instanceof ConfigState))
|
|
57297
57414
|
return false;
|
|
57298
57415
|
var tmp0_other_with_cast = other instanceof ConfigState ? other : THROW_CCE();
|
|
57299
|
-
if (!(this.
|
|
57416
|
+
if (!(this.m2q_1 == tmp0_other_with_cast.m2q_1))
|
|
57300
57417
|
return false;
|
|
57301
|
-
if (!(this.
|
|
57418
|
+
if (!(this.n2q_1 == tmp0_other_with_cast.n2q_1))
|
|
57302
57419
|
return false;
|
|
57303
|
-
if (!(this.
|
|
57420
|
+
if (!(this.o2q_1 == tmp0_other_with_cast.o2q_1))
|
|
57304
57421
|
return false;
|
|
57305
|
-
if (!(this.
|
|
57422
|
+
if (!(this.p2q_1 == tmp0_other_with_cast.p2q_1))
|
|
57306
57423
|
return false;
|
|
57307
|
-
if (!(this.
|
|
57424
|
+
if (!(this.q2q_1 === tmp0_other_with_cast.q2q_1))
|
|
57308
57425
|
return false;
|
|
57309
57426
|
return true;
|
|
57310
57427
|
};
|
|
@@ -58089,7 +58206,7 @@ function requireClientsdkClientcore () {
|
|
|
58089
58206
|
Call.prototype.e31 = function (isReconnect, from, customData, id, memberState, legState, mediaState, localMedia) {
|
|
58090
58207
|
return new Call(isReconnect, from, customData, id, memberState, legState, mediaState, localMedia);
|
|
58091
58208
|
};
|
|
58092
|
-
Call.prototype.
|
|
58209
|
+
Call.prototype.r2q = function (isReconnect, from, customData, id, memberState, legState, mediaState, localMedia, $mask0, $handler) {
|
|
58093
58210
|
if (!(($mask0 & 1) === 0))
|
|
58094
58211
|
isReconnect = this.w2o_1;
|
|
58095
58212
|
if (!(($mask0 & 2) === 0))
|
|
@@ -58253,22 +58370,22 @@ function requireClientsdkClientcore () {
|
|
|
58253
58370
|
var tmp3_subject = action.o1d_1;
|
|
58254
58371
|
var tmp_1;
|
|
58255
58372
|
if (tmp3_subject instanceof CallMemberMediaTimeout) {
|
|
58256
|
-
tmp_1 = state.d32(action.o1d_1, action.o1d_1.
|
|
58373
|
+
tmp_1 = state.d32(action.o1d_1, action.o1d_1.w2r_1);
|
|
58257
58374
|
} else {
|
|
58258
58375
|
if (tmp3_subject instanceof CallKnockingRequestFailure) {
|
|
58259
|
-
tmp_1 = state.c32(action.o1d_1, action.o1d_1.
|
|
58376
|
+
tmp_1 = state.c32(action.o1d_1, action.o1d_1.l2r_1);
|
|
58260
58377
|
} else {
|
|
58261
58378
|
if (tmp3_subject instanceof CallCreate) {
|
|
58262
|
-
tmp_1 = state.b32(action.o1d_1, action.o1d_1.
|
|
58379
|
+
tmp_1 = state.b32(action.o1d_1, action.o1d_1.p2r_1);
|
|
58263
58380
|
} else {
|
|
58264
58381
|
if (tmp3_subject instanceof CallReconnect) {
|
|
58265
|
-
tmp_1 = state.a32(action.o1d_1, action.o1d_1.
|
|
58382
|
+
tmp_1 = state.a32(action.o1d_1, action.o1d_1.z2q_1);
|
|
58266
58383
|
} else {
|
|
58267
58384
|
if (tmp3_subject instanceof CallCleanup) {
|
|
58268
|
-
tmp_1 = state.z31(action.o1d_1, action.o1d_1.
|
|
58385
|
+
tmp_1 = state.z31(action.o1d_1, action.o1d_1.x2q_1);
|
|
58269
58386
|
} else {
|
|
58270
58387
|
if (tmp3_subject instanceof CallConversationUpdate) {
|
|
58271
|
-
tmp_1 = state.y31(action.o1d_1, action.o1d_1.
|
|
58388
|
+
tmp_1 = state.y31(action.o1d_1, action.o1d_1.n2r_1);
|
|
58272
58389
|
} else {
|
|
58273
58390
|
tmp_1 = null;
|
|
58274
58391
|
}
|
|
@@ -58511,22 +58628,22 @@ function requireClientsdkClientcore () {
|
|
|
58511
58628
|
return function ($this$new) {
|
|
58512
58629
|
var tmp$ret$1;
|
|
58513
58630
|
// Inline function 'kotlin.also' call
|
|
58514
|
-
var tmp0_customData = $action.
|
|
58515
|
-
var tmp1_id = $action.
|
|
58516
|
-
var tmp2_from = $action.
|
|
58631
|
+
var tmp0_customData = $action.s2r_1;
|
|
58632
|
+
var tmp1_id = $action.p2r_1;
|
|
58633
|
+
var tmp2_from = $action.q2r_1;
|
|
58517
58634
|
var tmp0_also = Call_init_$Create$(false, tmp2_from, tmp0_customData, tmp1_id, null, null, null, null, 241, null);
|
|
58518
58635
|
// Inline function 'kotlin.contracts.contract' call
|
|
58519
58636
|
// Inline function 'com.vonage.clientcore.core.reducers.call.CallState.update.<anonymous>.<anonymous>' call
|
|
58520
58637
|
var tmp = tmp0_also;
|
|
58521
|
-
var tmp0_subject = $action.
|
|
58638
|
+
var tmp0_subject = $action.r2r_1;
|
|
58522
58639
|
var tmp0 = tmp0_subject.e4_1;
|
|
58523
58640
|
var tmp_0;
|
|
58524
58641
|
switch (tmp0) {
|
|
58525
58642
|
case 1:
|
|
58526
|
-
tmp_0 = toResolved(tmp0_also.b2p_1, new Started($action.
|
|
58643
|
+
tmp_0 = toResolved(tmp0_also.b2p_1, new Started($action.p2r_1));
|
|
58527
58644
|
break;
|
|
58528
58645
|
case 0:
|
|
58529
|
-
tmp_0 = toResolved(tmp0_also.b2p_1, new Prewarm($action.
|
|
58646
|
+
tmp_0 = toResolved(tmp0_also.b2p_1, new Prewarm($action.p2r_1));
|
|
58530
58647
|
break;
|
|
58531
58648
|
default:
|
|
58532
58649
|
noWhenBranchMatchedException();
|
|
@@ -58534,7 +58651,7 @@ function requireClientsdkClientcore () {
|
|
|
58534
58651
|
}
|
|
58535
58652
|
tmp.b2p_1 = tmp_0;
|
|
58536
58653
|
tmp0_also.c2p_1 = toPending(tmp0_also.c2p_1, Active_getInstance(), $id);
|
|
58537
|
-
var tmp1_safe_receiver = $action.
|
|
58654
|
+
var tmp1_safe_receiver = $action.t2r_1;
|
|
58538
58655
|
if (tmp1_safe_receiver == null)
|
|
58539
58656
|
null;
|
|
58540
58657
|
else {
|
|
@@ -58543,9 +58660,9 @@ function requireClientsdkClientcore () {
|
|
|
58543
58660
|
// Inline function 'kotlin.contracts.contract' call
|
|
58544
58661
|
var tmp_1 = tmp0_also;
|
|
58545
58662
|
var tmp_2 = tmp0_also.a2p_1;
|
|
58546
|
-
tmp_1.a2p_1 = toResolved(tmp_2, Joined_init_$Create$(tmp1_safe_receiver.
|
|
58663
|
+
tmp_1.a2p_1 = toResolved(tmp_2, Joined_init_$Create$(tmp1_safe_receiver.y2r_1, tmp1_safe_receiver.z2r_1, null, 4, null));
|
|
58547
58664
|
var tmp0_set = $this$new.m2p_1;
|
|
58548
|
-
var tmp1_set = tmp1_safe_receiver.
|
|
58665
|
+
var tmp1_set = tmp1_safe_receiver.y2r_1;
|
|
58549
58666
|
tmp0_set.l(tmp1_set, $id);
|
|
58550
58667
|
tmp$ret$0 = Unit_getInstance();
|
|
58551
58668
|
}
|
|
@@ -58555,10 +58672,20 @@ function requireClientsdkClientcore () {
|
|
|
58555
58672
|
}
|
|
58556
58673
|
function CallState$update$lambda_1($action, $id) {
|
|
58557
58674
|
return function ($this$new) {
|
|
58558
|
-
var
|
|
58559
|
-
|
|
58675
|
+
var tmp$ret$0;
|
|
58676
|
+
// Inline function 'kotlin.also' call
|
|
58677
|
+
var tmp0_from = new AppChannelEndpoint($action.a2r_1);
|
|
58678
|
+
var tmp = Joined_init_$Create$($action.b2r_1, $action.a2r_1, null, 4, null);
|
|
58560
58679
|
var tmp1_memberState = Resolved_init_$Create$(tmp, null, 2, null);
|
|
58561
|
-
|
|
58680
|
+
var tmp0_also = Call_init_$Create$(true, tmp0_from, null, $id, tmp1_memberState, null, null, null, 224, null);
|
|
58681
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
58682
|
+
// Inline function 'com.vonage.clientcore.core.reducers.call.CallState.update.<anonymous>.<anonymous>' call
|
|
58683
|
+
// Inline function 'kotlin.collections.set' call
|
|
58684
|
+
var tmp0_set = $this$new.m2p_1;
|
|
58685
|
+
var tmp1_set = $action.b2r_1;
|
|
58686
|
+
tmp0_set.l(tmp1_set, $id);
|
|
58687
|
+
tmp$ret$0 = tmp0_also;
|
|
58688
|
+
return tmp$ret$0;
|
|
58562
58689
|
};
|
|
58563
58690
|
}
|
|
58564
58691
|
function CallState$update$lambda_2($action) {
|
|
@@ -58567,7 +58694,7 @@ function requireClientsdkClientcore () {
|
|
|
58567
58694
|
var tmp_0 = $this$modify.a2p_1.s1();
|
|
58568
58695
|
if (isInterface(tmp_0, CoreMemberStateWithCid)) {
|
|
58569
58696
|
var tmp_1 = $this$modify.a2p_1.s1();
|
|
58570
|
-
(isInterface(tmp_1, CoreMemberStateWithCid) ? tmp_1 : THROW_CCE()).i32($action.
|
|
58697
|
+
(isInterface(tmp_1, CoreMemberStateWithCid) ? tmp_1 : THROW_CCE()).i32($action.o2r_1);
|
|
58571
58698
|
tmp = Unit_getInstance();
|
|
58572
58699
|
}
|
|
58573
58700
|
return Unit_getInstance();
|
|
@@ -58610,7 +58737,7 @@ function requireClientsdkClientcore () {
|
|
|
58610
58737
|
if (equals(tmp0_subject, Active_getInstance())) {
|
|
58611
58738
|
tmp = Unit_getInstance();
|
|
58612
58739
|
} else {
|
|
58613
|
-
$this$modify.c2p_1 = toFailed($this$modify.c2p_1, $event.
|
|
58740
|
+
$this$modify.c2p_1 = toFailed($this$modify.c2p_1, $event.m2r_1);
|
|
58614
58741
|
tmp = Unit_getInstance();
|
|
58615
58742
|
}
|
|
58616
58743
|
return Unit_getInstance();
|
|
@@ -58690,7 +58817,7 @@ function requireClientsdkClientcore () {
|
|
|
58690
58817
|
var tmp = $this$modify;
|
|
58691
58818
|
var tmp_0 = $this$modify.d2p_1;
|
|
58692
58819
|
var tmp_1 = new Offer($offer.g29_1);
|
|
58693
|
-
tmp.d2p_1 = tmp_0.
|
|
58820
|
+
tmp.d2p_1 = tmp_0.h2t(tmp_1, null, false, 6, null);
|
|
58694
58821
|
return Unit_getInstance();
|
|
58695
58822
|
};
|
|
58696
58823
|
}
|
|
@@ -58699,14 +58826,14 @@ function requireClientsdkClientcore () {
|
|
|
58699
58826
|
var tmp = $this$modify;
|
|
58700
58827
|
var tmp_0 = $this$modify.d2p_1;
|
|
58701
58828
|
var tmp_1 = new Answer($offer.i29_1);
|
|
58702
|
-
tmp.d2p_1 = tmp_0.
|
|
58829
|
+
tmp.d2p_1 = tmp_0.h2t(tmp_1, null, false, 6, null);
|
|
58703
58830
|
return Unit_getInstance();
|
|
58704
58831
|
};
|
|
58705
58832
|
}
|
|
58706
58833
|
function CallState$update$lambda_19($this$modify) {
|
|
58707
58834
|
var tmp = $this$modify;
|
|
58708
58835
|
var tmp_0 = $this$modify.d2p_1;
|
|
58709
|
-
tmp.d2p_1 = tmp_0.
|
|
58836
|
+
tmp.d2p_1 = tmp_0.h2t(null, null, false, 3, null);
|
|
58710
58837
|
return Unit_getInstance();
|
|
58711
58838
|
}
|
|
58712
58839
|
function CallState$update$lambda_20($action) {
|
|
@@ -58714,7 +58841,7 @@ function requireClientsdkClientcore () {
|
|
|
58714
58841
|
var tmp = $this$modify;
|
|
58715
58842
|
var tmp_0 = $this$modify.d2p_1;
|
|
58716
58843
|
var tmp_1 = new Answer($action.j24_1.w24_1);
|
|
58717
|
-
tmp.d2p_1 = tmp_0.
|
|
58844
|
+
tmp.d2p_1 = tmp_0.h2t(null, tmp_1, false, 5, null);
|
|
58718
58845
|
return Unit_getInstance();
|
|
58719
58846
|
};
|
|
58720
58847
|
}
|
|
@@ -59061,28 +59188,28 @@ function requireClientsdkClientcore () {
|
|
|
59061
59188
|
};
|
|
59062
59189
|
Joined.$metadata$ = classMeta('Joined', [CoreMemberStateWithCid]);
|
|
59063
59190
|
function Left(cid, mid, conversationName, reasonCode) {
|
|
59064
|
-
this.
|
|
59065
|
-
this.
|
|
59066
|
-
this.
|
|
59067
|
-
this.
|
|
59191
|
+
this.g2q_1 = cid;
|
|
59192
|
+
this.h2q_1 = mid;
|
|
59193
|
+
this.i2q_1 = conversationName;
|
|
59194
|
+
this.j2q_1 = reasonCode;
|
|
59068
59195
|
}
|
|
59069
59196
|
Left.prototype.w1f = function () {
|
|
59070
|
-
return this.
|
|
59197
|
+
return this.g2q_1;
|
|
59071
59198
|
};
|
|
59072
59199
|
Left.prototype.i32 = function (_set____db54di) {
|
|
59073
|
-
this.
|
|
59200
|
+
this.i2q_1 = _set____db54di;
|
|
59074
59201
|
};
|
|
59075
59202
|
Left.prototype.s2x = function () {
|
|
59076
|
-
return this.
|
|
59203
|
+
return this.i2q_1;
|
|
59077
59204
|
};
|
|
59078
59205
|
Left.prototype.toString = function () {
|
|
59079
|
-
return 'Left(cid=' + this.
|
|
59206
|
+
return 'Left(cid=' + this.g2q_1 + ', mid=' + this.h2q_1 + ', conversationName=' + this.i2q_1 + ', reasonCode=' + this.j2q_1 + ')';
|
|
59080
59207
|
};
|
|
59081
59208
|
Left.prototype.hashCode = function () {
|
|
59082
|
-
var result = getStringHashCode(this.
|
|
59083
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
59084
|
-
result = imul(result, 31) + (this.
|
|
59085
|
-
result = imul(result, 31) + (this.
|
|
59209
|
+
var result = getStringHashCode(this.g2q_1);
|
|
59210
|
+
result = imul(result, 31) + getStringHashCode(this.h2q_1) | 0;
|
|
59211
|
+
result = imul(result, 31) + (this.i2q_1 == null ? 0 : getStringHashCode(this.i2q_1)) | 0;
|
|
59212
|
+
result = imul(result, 31) + (this.j2q_1 == null ? 0 : getStringHashCode(this.j2q_1)) | 0;
|
|
59086
59213
|
return result;
|
|
59087
59214
|
};
|
|
59088
59215
|
Left.prototype.equals = function (other) {
|
|
@@ -59091,13 +59218,13 @@ function requireClientsdkClientcore () {
|
|
|
59091
59218
|
if (!(other instanceof Left))
|
|
59092
59219
|
return false;
|
|
59093
59220
|
var tmp0_other_with_cast = other instanceof Left ? other : THROW_CCE();
|
|
59094
|
-
if (!(this.
|
|
59221
|
+
if (!(this.g2q_1 === tmp0_other_with_cast.g2q_1))
|
|
59095
59222
|
return false;
|
|
59096
|
-
if (!(this.
|
|
59223
|
+
if (!(this.h2q_1 === tmp0_other_with_cast.h2q_1))
|
|
59097
59224
|
return false;
|
|
59098
|
-
if (!(this.
|
|
59225
|
+
if (!(this.i2q_1 == tmp0_other_with_cast.i2q_1))
|
|
59099
59226
|
return false;
|
|
59100
|
-
if (!(this.
|
|
59227
|
+
if (!(this.j2q_1 == tmp0_other_with_cast.j2q_1))
|
|
59101
59228
|
return false;
|
|
59102
59229
|
return true;
|
|
59103
59230
|
};
|
|
@@ -59137,7 +59264,7 @@ function requireClientsdkClientcore () {
|
|
|
59137
59264
|
Invite.prototype.e1k = function () {
|
|
59138
59265
|
return this.p2p_1;
|
|
59139
59266
|
};
|
|
59140
|
-
Invite.prototype.
|
|
59267
|
+
Invite.prototype.j2r = function () {
|
|
59141
59268
|
return this.q2p_1;
|
|
59142
59269
|
};
|
|
59143
59270
|
Invite.prototype.p32 = function () {
|
|
@@ -59149,7 +59276,7 @@ function requireClientsdkClientcore () {
|
|
|
59149
59276
|
Invite.prototype.r32 = function (from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code) {
|
|
59150
59277
|
return new Invite(from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code);
|
|
59151
59278
|
};
|
|
59152
|
-
Invite.prototype.
|
|
59279
|
+
Invite.prototype.k2q = function (from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code, $mask0, $handler) {
|
|
59153
59280
|
if (!(($mask0 & 1) === 0))
|
|
59154
59281
|
from = this.p2p_1;
|
|
59155
59282
|
if (!(($mask0 & 2) === 0))
|
|
@@ -59311,7 +59438,7 @@ function requireClientsdkClientcore () {
|
|
|
59311
59438
|
if (tmp0_subject instanceof InviteCleanup) {
|
|
59312
59439
|
var tmp$ret$5;
|
|
59313
59440
|
// Inline function 'kotlin.let' call
|
|
59314
|
-
var tmp0_let = state.y32(action.o1d_1, action.o1d_1.
|
|
59441
|
+
var tmp0_let = state.y32(action.o1d_1, action.o1d_1.x2r_1);
|
|
59315
59442
|
// Inline function 'kotlin.contracts.contract' call
|
|
59316
59443
|
var tmp$ret$4;
|
|
59317
59444
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteReducer.reduce.<anonymous>' call
|
|
@@ -59371,16 +59498,16 @@ function requireClientsdkClientcore () {
|
|
|
59371
59498
|
return function ($this$new) {
|
|
59372
59499
|
var tmp;
|
|
59373
59500
|
var tmp_0;
|
|
59374
|
-
var tmp0_safe_receiver = $event.h1y_1.u1y_1.
|
|
59375
|
-
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
59376
|
-
tmp_0 = $event.h1y_1.t1y_1.t2j_1 === $this$new.
|
|
59501
|
+
var tmp0_safe_receiver = $event.h1y_1.u1y_1.p2t_1;
|
|
59502
|
+
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.k2t_1) === true) {
|
|
59503
|
+
tmp_0 = $event.h1y_1.t1y_1.t2j_1 === $this$new.e2q_1;
|
|
59377
59504
|
} else {
|
|
59378
59505
|
tmp_0 = false;
|
|
59379
59506
|
}
|
|
59380
59507
|
if (tmp_0) {
|
|
59381
59508
|
var remoteDescription = new Offer(ensureNotNull($event.h1y_1.x1y_1));
|
|
59382
59509
|
var tmp_1 = ensureNotNull($event.h1y_1.v1y_1.i2j_1);
|
|
59383
|
-
tmp = Invite_init_$Create$(tmp_1, $event.h1y_1.v1y_1.e2j_1, $event.h1y_1.s1y_1, $event.h1y_1.r1y_1.
|
|
59510
|
+
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);
|
|
59384
59511
|
} else {
|
|
59385
59512
|
tmp = null;
|
|
59386
59513
|
}
|
|
@@ -59390,14 +59517,14 @@ function requireClientsdkClientcore () {
|
|
|
59390
59517
|
function InviteState$update$lambda_0($event) {
|
|
59391
59518
|
return function ($this$new) {
|
|
59392
59519
|
var tmp;
|
|
59393
|
-
var tmp0_safe_receiver = $event.q23_1.u1y_1.
|
|
59394
|
-
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
59520
|
+
var tmp0_safe_receiver = $event.q23_1.u1y_1.p2t_1;
|
|
59521
|
+
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.k2t_1) === true) {
|
|
59395
59522
|
var remoteDescription = new Offer(ensureNotNull($event.q23_1.x1y_1));
|
|
59396
59523
|
var tmp_0 = ensureNotNull($event.q23_1.v1y_1.i2j_1);
|
|
59397
|
-
var tmp1_safe_receiver = $this$new.
|
|
59524
|
+
var tmp1_safe_receiver = $this$new.d2q_1.g2($event.q23_1.v1y_1.e2j_1);
|
|
59398
59525
|
var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.v2p_1;
|
|
59399
59526
|
var tmp_1 = tmp2_elvis_lhs == null ? false : tmp2_elvis_lhs;
|
|
59400
|
-
tmp = Invite_init_$Create$(tmp_0, $event.q23_1.v1y_1.e2j_1, $event.q23_1.s1y_1, $event.u23_1, remoteDescription.
|
|
59527
|
+
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);
|
|
59401
59528
|
} else {
|
|
59402
59529
|
tmp = null;
|
|
59403
59530
|
}
|
|
@@ -59407,7 +59534,7 @@ function requireClientsdkClientcore () {
|
|
|
59407
59534
|
function InviteState$update$lambda_1($event, this$0) {
|
|
59408
59535
|
return function ($this$modify) {
|
|
59409
59536
|
var tmp;
|
|
59410
|
-
if ($event.b1z_1.k1z_1.s2j_1 === this$0.
|
|
59537
|
+
if ($event.b1z_1.k1z_1.s2j_1 === this$0.e2q_1) {
|
|
59411
59538
|
var tmp_0 = $this$modify;
|
|
59412
59539
|
var tmp_1 = $this$modify.u2p_1;
|
|
59413
59540
|
tmp_0.u2p_1 = toResolved(tmp_1, Joined_init_$Create$($event.d1z_1, $event.e1z_1, null, 4, null));
|
|
@@ -59427,7 +59554,7 @@ function requireClientsdkClientcore () {
|
|
|
59427
59554
|
function InviteState$update$lambda_3($event, this$0) {
|
|
59428
59555
|
return function ($this$modify) {
|
|
59429
59556
|
var tmp;
|
|
59430
|
-
if ($event.p1z_1.z1z_1.m2j_1 === this$0.
|
|
59557
|
+
if ($event.p1z_1.z1z_1.m2j_1 === this$0.e2q_1 ? equals($this$modify.u2p_1.s1(), None_getInstance_2()) : false) {
|
|
59431
59558
|
var tmp_0 = $this$modify;
|
|
59432
59559
|
var tmp_1 = $this$modify.u2p_1;
|
|
59433
59560
|
var tmp0_safe_receiver = $event.p1z_1.b20_1;
|
|
@@ -59440,7 +59567,7 @@ function requireClientsdkClientcore () {
|
|
|
59440
59567
|
function InviteState$update$lambda_4($event) {
|
|
59441
59568
|
return function ($this$modify) {
|
|
59442
59569
|
$this$modify.w2p_1 = true;
|
|
59443
|
-
$this$modify.x2p_1 = $event.x22_1.b1y_1.
|
|
59570
|
+
$this$modify.x2p_1 = $event.x22_1.b1y_1.b2q_1;
|
|
59444
59571
|
return Unit_getInstance();
|
|
59445
59572
|
};
|
|
59446
59573
|
}
|
|
@@ -59453,32 +59580,32 @@ function requireClientsdkClientcore () {
|
|
|
59453
59580
|
};
|
|
59454
59581
|
}
|
|
59455
59582
|
function InviteState(invites, currentUserId) {
|
|
59456
|
-
this.
|
|
59457
|
-
this.
|
|
59458
|
-
this.
|
|
59583
|
+
this.d2q_1 = invites;
|
|
59584
|
+
this.e2q_1 = currentUserId;
|
|
59585
|
+
this.f2q_1 = null;
|
|
59459
59586
|
}
|
|
59460
59587
|
InviteState.prototype.a33 = function () {
|
|
59461
|
-
return this.
|
|
59588
|
+
return this.d2q_1;
|
|
59462
59589
|
};
|
|
59463
59590
|
InviteState.prototype.l32 = function (_set____db54di) {
|
|
59464
|
-
this.
|
|
59591
|
+
this.e2q_1 = _set____db54di;
|
|
59465
59592
|
};
|
|
59466
59593
|
InviteState.prototype.v2z = function () {
|
|
59467
|
-
return this.
|
|
59594
|
+
return this.d2q_1;
|
|
59468
59595
|
};
|
|
59469
59596
|
InviteState.prototype.m2z = function (_set____db54di) {
|
|
59470
|
-
this.
|
|
59597
|
+
this.f2q_1 = _set____db54di;
|
|
59471
59598
|
};
|
|
59472
59599
|
InviteState.prototype.n32 = function () {
|
|
59473
|
-
return this.
|
|
59600
|
+
return this.f2q_1;
|
|
59474
59601
|
};
|
|
59475
59602
|
InviteState.prototype.m30 = function (event) {
|
|
59476
59603
|
var tmp$ret$0;
|
|
59477
59604
|
// Inline function 'kotlin.apply' call
|
|
59478
59605
|
// Inline function 'kotlin.contracts.contract' call
|
|
59479
59606
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteState.update.<anonymous>' call
|
|
59480
|
-
this.
|
|
59481
|
-
this.
|
|
59607
|
+
this.e2q_1 = event.x23_1.e25_1;
|
|
59608
|
+
this.f2q_1 = null;
|
|
59482
59609
|
tmp$ret$0 = this;
|
|
59483
59610
|
return tmp$ret$0;
|
|
59484
59611
|
};
|
|
@@ -59511,7 +59638,7 @@ function requireClientsdkClientcore () {
|
|
|
59511
59638
|
// Inline function 'kotlin.apply' call
|
|
59512
59639
|
// Inline function 'kotlin.contracts.contract' call
|
|
59513
59640
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteState.update.<anonymous>' call
|
|
59514
|
-
this.
|
|
59641
|
+
this.d2q_1.g3(id);
|
|
59515
59642
|
tmp$ret$0 = this;
|
|
59516
59643
|
return tmp$ret$0;
|
|
59517
59644
|
};
|
|
@@ -59520,17 +59647,17 @@ function requireClientsdkClientcore () {
|
|
|
59520
59647
|
};
|
|
59521
59648
|
InviteState.prototype.w32 = function (invites, currentUserId, $mask0, $handler) {
|
|
59522
59649
|
if (!(($mask0 & 1) === 0))
|
|
59523
|
-
invites = this.
|
|
59650
|
+
invites = this.d2q_1;
|
|
59524
59651
|
if (!(($mask0 & 2) === 0))
|
|
59525
|
-
currentUserId = this.
|
|
59652
|
+
currentUserId = this.e2q_1;
|
|
59526
59653
|
return this.b33(invites, currentUserId);
|
|
59527
59654
|
};
|
|
59528
59655
|
InviteState.prototype.toString = function () {
|
|
59529
|
-
return 'InviteState(invites=' + this.
|
|
59656
|
+
return 'InviteState(invites=' + this.d2q_1 + ', currentUserId=' + this.e2q_1 + ')';
|
|
59530
59657
|
};
|
|
59531
59658
|
InviteState.prototype.hashCode = function () {
|
|
59532
|
-
var result = hashCode(this.
|
|
59533
|
-
result = imul(result, 31) + (this.
|
|
59659
|
+
var result = hashCode(this.d2q_1);
|
|
59660
|
+
result = imul(result, 31) + (this.e2q_1 == null ? 0 : getStringHashCode(this.e2q_1)) | 0;
|
|
59534
59661
|
return result;
|
|
59535
59662
|
};
|
|
59536
59663
|
InviteState.prototype.equals = function (other) {
|
|
@@ -59539,9 +59666,9 @@ function requireClientsdkClientcore () {
|
|
|
59539
59666
|
if (!(other instanceof InviteState))
|
|
59540
59667
|
return false;
|
|
59541
59668
|
var tmp0_other_with_cast = other instanceof InviteState ? other : THROW_CCE();
|
|
59542
|
-
if (!equals(this.
|
|
59669
|
+
if (!equals(this.d2q_1, tmp0_other_with_cast.d2q_1))
|
|
59543
59670
|
return false;
|
|
59544
|
-
if (!(this.
|
|
59671
|
+
if (!(this.e2q_1 == tmp0_other_with_cast.e2q_1))
|
|
59545
59672
|
return false;
|
|
59546
59673
|
return true;
|
|
59547
59674
|
};
|
|
@@ -60542,7 +60669,7 @@ function requireClientsdkClientcore () {
|
|
|
60542
60669
|
//endregion
|
|
60543
60670
|
//region block: pre-declaration
|
|
60544
60671
|
function setConfig(config) {
|
|
60545
|
-
this.core.s1b(new SetConfig(config.
|
|
60672
|
+
this.core.s1b(new SetConfig(config.o3b_1, config.p3b_1, config.n3b_1, config.r3b_1));
|
|
60546
60673
|
}
|
|
60547
60674
|
function createSession(token, sessionId) {
|
|
60548
60675
|
return new Promise(ICoreClientJS$createSession$lambda(this, token, sessionId));
|
|
@@ -60910,7 +61037,7 @@ function requireClientsdkClientcore () {
|
|
|
60910
61037
|
MemberInvitedEventJS.prototype.k1o = function () {
|
|
60911
61038
|
return this.h34_1;
|
|
60912
61039
|
};
|
|
60913
|
-
MemberInvitedEventJS.prototype.
|
|
61040
|
+
MemberInvitedEventJS.prototype.c2r = function () {
|
|
60914
61041
|
return this.i34_1;
|
|
60915
61042
|
};
|
|
60916
61043
|
MemberInvitedEventJS.prototype.e1k = function () {
|
|
@@ -60933,7 +61060,7 @@ function requireClientsdkClientcore () {
|
|
|
60933
61060
|
Object.defineProperty(MemberInvitedEventJS.prototype, 'conversationId', {
|
|
60934
61061
|
configurable: true,
|
|
60935
61062
|
get: function () {
|
|
60936
|
-
return this.
|
|
61063
|
+
return this.c2r();
|
|
60937
61064
|
}
|
|
60938
61065
|
});
|
|
60939
61066
|
Object.defineProperty(MemberInvitedEventJS.prototype, 'from', {
|
|
@@ -60949,13 +61076,13 @@ function requireClientsdkClientcore () {
|
|
|
60949
61076
|
function Body_0(body) {
|
|
60950
61077
|
this.l34_1 = body.y2l_1;
|
|
60951
61078
|
}
|
|
60952
|
-
Body_0.prototype.
|
|
61079
|
+
Body_0.prototype.l2s = function () {
|
|
60953
61080
|
return this.l34_1;
|
|
60954
61081
|
};
|
|
60955
61082
|
Body_0.$metadata$ = classMeta('Body');
|
|
60956
61083
|
Object.defineProperty(Body_0.prototype, 'username', {
|
|
60957
61084
|
configurable: true,
|
|
60958
|
-
get: Body_0.prototype.
|
|
61085
|
+
get: Body_0.prototype.l2s
|
|
60959
61086
|
});
|
|
60960
61087
|
function MemberJoinedEventJS(event) {
|
|
60961
61088
|
this.m34_1 = event.z2l_1;
|
|
@@ -60970,7 +61097,7 @@ function requireClientsdkClientcore () {
|
|
|
60970
61097
|
MemberJoinedEventJS.prototype.k1o = function () {
|
|
60971
61098
|
return this.n34_1;
|
|
60972
61099
|
};
|
|
60973
|
-
MemberJoinedEventJS.prototype.
|
|
61100
|
+
MemberJoinedEventJS.prototype.c2r = function () {
|
|
60974
61101
|
return this.o34_1;
|
|
60975
61102
|
};
|
|
60976
61103
|
MemberJoinedEventJS.prototype.e1k = function () {
|
|
@@ -60993,7 +61120,7 @@ function requireClientsdkClientcore () {
|
|
|
60993
61120
|
Object.defineProperty(MemberJoinedEventJS.prototype, 'conversationId', {
|
|
60994
61121
|
configurable: true,
|
|
60995
61122
|
get: function () {
|
|
60996
|
-
return this.
|
|
61123
|
+
return this.c2r();
|
|
60997
61124
|
}
|
|
60998
61125
|
});
|
|
60999
61126
|
Object.defineProperty(MemberJoinedEventJS.prototype, 'from', {
|
|
@@ -61009,13 +61136,13 @@ function requireClientsdkClientcore () {
|
|
|
61009
61136
|
function Body_1(body) {
|
|
61010
61137
|
this.r34_1 = body.e2m_1;
|
|
61011
61138
|
}
|
|
61012
|
-
Body_1.prototype.
|
|
61139
|
+
Body_1.prototype.l2s = function () {
|
|
61013
61140
|
return this.r34_1;
|
|
61014
61141
|
};
|
|
61015
61142
|
Body_1.$metadata$ = classMeta('Body');
|
|
61016
61143
|
Object.defineProperty(Body_1.prototype, 'username', {
|
|
61017
61144
|
configurable: true,
|
|
61018
|
-
get: Body_1.prototype.
|
|
61145
|
+
get: Body_1.prototype.l2s
|
|
61019
61146
|
});
|
|
61020
61147
|
function MemberLeftEventJS(event) {
|
|
61021
61148
|
this.s34_1 = event.f2m_1;
|
|
@@ -61030,7 +61157,7 @@ function requireClientsdkClientcore () {
|
|
|
61030
61157
|
MemberLeftEventJS.prototype.k1o = function () {
|
|
61031
61158
|
return this.t34_1;
|
|
61032
61159
|
};
|
|
61033
|
-
MemberLeftEventJS.prototype.
|
|
61160
|
+
MemberLeftEventJS.prototype.c2r = function () {
|
|
61034
61161
|
return this.u34_1;
|
|
61035
61162
|
};
|
|
61036
61163
|
MemberLeftEventJS.prototype.e1k = function () {
|
|
@@ -61053,7 +61180,7 @@ function requireClientsdkClientcore () {
|
|
|
61053
61180
|
Object.defineProperty(MemberLeftEventJS.prototype, 'conversationId', {
|
|
61054
61181
|
configurable: true,
|
|
61055
61182
|
get: function () {
|
|
61056
|
-
return this.
|
|
61183
|
+
return this.c2r();
|
|
61057
61184
|
}
|
|
61058
61185
|
});
|
|
61059
61186
|
Object.defineProperty(MemberLeftEventJS.prototype, 'from', {
|
|
@@ -61073,7 +61200,7 @@ function requireClientsdkClientcore () {
|
|
|
61073
61200
|
this.a35_1 = event.n2m_1;
|
|
61074
61201
|
this.b35_1 = event.o2m_1;
|
|
61075
61202
|
}
|
|
61076
|
-
UnknownEventJS.prototype.
|
|
61203
|
+
UnknownEventJS.prototype.l2q = function () {
|
|
61077
61204
|
return this.x34_1;
|
|
61078
61205
|
};
|
|
61079
61206
|
UnknownEventJS.prototype.v1k = function () {
|
|
@@ -61082,7 +61209,7 @@ function requireClientsdkClientcore () {
|
|
|
61082
61209
|
UnknownEventJS.prototype.k1o = function () {
|
|
61083
61210
|
return this.z34_1;
|
|
61084
61211
|
};
|
|
61085
|
-
UnknownEventJS.prototype.
|
|
61212
|
+
UnknownEventJS.prototype.c2r = function () {
|
|
61086
61213
|
return this.a35_1;
|
|
61087
61214
|
};
|
|
61088
61215
|
UnknownEventJS.prototype.e1k = function () {
|
|
@@ -61091,7 +61218,7 @@ function requireClientsdkClientcore () {
|
|
|
61091
61218
|
UnknownEventJS.$metadata$ = classMeta('UnknownEventJS', [ConversationEventJS]);
|
|
61092
61219
|
Object.defineProperty(UnknownEventJS.prototype, 'type', {
|
|
61093
61220
|
configurable: true,
|
|
61094
|
-
get: UnknownEventJS.prototype.
|
|
61221
|
+
get: UnknownEventJS.prototype.l2q
|
|
61095
61222
|
});
|
|
61096
61223
|
Object.defineProperty(UnknownEventJS.prototype, 'id', {
|
|
61097
61224
|
configurable: true,
|
|
@@ -61106,7 +61233,7 @@ function requireClientsdkClientcore () {
|
|
|
61106
61233
|
Object.defineProperty(UnknownEventJS.prototype, 'conversationId', {
|
|
61107
61234
|
configurable: true,
|
|
61108
61235
|
get: function () {
|
|
61109
|
-
return this.
|
|
61236
|
+
return this.c2r();
|
|
61110
61237
|
}
|
|
61111
61238
|
});
|
|
61112
61239
|
Object.defineProperty(UnknownEventJS.prototype, 'from', {
|
|
@@ -61181,7 +61308,7 @@ function requireClientsdkClientcore () {
|
|
|
61181
61308
|
TextMessageEventJS.prototype.k1o = function () {
|
|
61182
61309
|
return this.h35_1;
|
|
61183
61310
|
};
|
|
61184
|
-
TextMessageEventJS.prototype.
|
|
61311
|
+
TextMessageEventJS.prototype.c2r = function () {
|
|
61185
61312
|
return this.i35_1;
|
|
61186
61313
|
};
|
|
61187
61314
|
TextMessageEventJS.prototype.e1k = function () {
|
|
@@ -61206,7 +61333,7 @@ function requireClientsdkClientcore () {
|
|
|
61206
61333
|
Object.defineProperty(TextMessageEventJS.prototype, 'conversationId', {
|
|
61207
61334
|
configurable: true,
|
|
61208
61335
|
get: function () {
|
|
61209
|
-
return this.
|
|
61336
|
+
return this.c2r();
|
|
61210
61337
|
}
|
|
61211
61338
|
});
|
|
61212
61339
|
Object.defineProperty(TextMessageEventJS.prototype, 'from', {
|
|
@@ -61316,7 +61443,7 @@ function requireClientsdkClientcore () {
|
|
|
61316
61443
|
ConversationJS.prototype.k1o = function () {
|
|
61317
61444
|
return this.r35_1;
|
|
61318
61445
|
};
|
|
61319
|
-
ConversationJS.prototype.
|
|
61446
|
+
ConversationJS.prototype.k2r = function () {
|
|
61320
61447
|
return this.s35_1;
|
|
61321
61448
|
};
|
|
61322
61449
|
ConversationJS.prototype.z30 = function () {
|
|
@@ -61349,7 +61476,7 @@ function requireClientsdkClientcore () {
|
|
|
61349
61476
|
});
|
|
61350
61477
|
Object.defineProperty(ConversationJS.prototype, 'memberId', {
|
|
61351
61478
|
configurable: true,
|
|
61352
|
-
get: ConversationJS.prototype.
|
|
61479
|
+
get: ConversationJS.prototype.k2r
|
|
61353
61480
|
});
|
|
61354
61481
|
Object.defineProperty(ConversationJS.prototype, 'memberState', {
|
|
61355
61482
|
configurable: true,
|
|
@@ -62300,7 +62427,7 @@ function requireClientsdkClientcore () {
|
|
|
62300
62427
|
}
|
|
62301
62428
|
tmp_1.n38_1 = tmp_2;
|
|
62302
62429
|
}
|
|
62303
|
-
MemberChannelJS.prototype.
|
|
62430
|
+
MemberChannelJS.prototype.l2q = function () {
|
|
62304
62431
|
return this.l38_1;
|
|
62305
62432
|
};
|
|
62306
62433
|
MemberChannelJS.prototype.e1k = function () {
|
|
@@ -62312,7 +62439,7 @@ function requireClientsdkClientcore () {
|
|
|
62312
62439
|
MemberChannelJS.$metadata$ = classMeta('MemberChannelJS');
|
|
62313
62440
|
Object.defineProperty(MemberChannelJS.prototype, 'type', {
|
|
62314
62441
|
configurable: true,
|
|
62315
|
-
get: MemberChannelJS.prototype.
|
|
62442
|
+
get: MemberChannelJS.prototype.l2q
|
|
62316
62443
|
});
|
|
62317
62444
|
Object.defineProperty(MemberChannelJS.prototype, 'from', {
|
|
62318
62445
|
configurable: true,
|
|
@@ -62329,7 +62456,7 @@ function requireClientsdkClientcore () {
|
|
|
62329
62456
|
ChannelJS.prototype.v1k = function () {
|
|
62330
62457
|
return this.o38_1;
|
|
62331
62458
|
};
|
|
62332
|
-
ChannelJS.prototype.
|
|
62459
|
+
ChannelJS.prototype.d2s = function () {
|
|
62333
62460
|
return this.p38_1;
|
|
62334
62461
|
};
|
|
62335
62462
|
ChannelJS.$metadata$ = classMeta('ChannelJS');
|
|
@@ -62339,26 +62466,26 @@ function requireClientsdkClientcore () {
|
|
|
62339
62466
|
});
|
|
62340
62467
|
Object.defineProperty(ChannelJS.prototype, 'number', {
|
|
62341
62468
|
configurable: true,
|
|
62342
|
-
get: ChannelJS.prototype.
|
|
62469
|
+
get: ChannelJS.prototype.d2s
|
|
62343
62470
|
});
|
|
62344
62471
|
function LegChannelJS(channel) {
|
|
62345
62472
|
this.q38_1 = channel.u2k_1;
|
|
62346
62473
|
this.r38_1 = channel.w2k_1;
|
|
62347
62474
|
this.s38_1 = channel.v2k_1;
|
|
62348
62475
|
}
|
|
62349
|
-
LegChannelJS.prototype.
|
|
62476
|
+
LegChannelJS.prototype.l2q = function () {
|
|
62350
62477
|
return this.q38_1;
|
|
62351
62478
|
};
|
|
62352
62479
|
LegChannelJS.prototype.n1k = function () {
|
|
62353
62480
|
return this.r38_1;
|
|
62354
62481
|
};
|
|
62355
|
-
LegChannelJS.prototype.
|
|
62482
|
+
LegChannelJS.prototype.d2s = function () {
|
|
62356
62483
|
return this.s38_1;
|
|
62357
62484
|
};
|
|
62358
62485
|
LegChannelJS.$metadata$ = classMeta('LegChannelJS');
|
|
62359
62486
|
Object.defineProperty(LegChannelJS.prototype, 'type', {
|
|
62360
62487
|
configurable: true,
|
|
62361
|
-
get: LegChannelJS.prototype.
|
|
62488
|
+
get: LegChannelJS.prototype.l2q
|
|
62362
62489
|
});
|
|
62363
62490
|
Object.defineProperty(LegChannelJS.prototype, 'user', {
|
|
62364
62491
|
configurable: true,
|
|
@@ -62366,7 +62493,7 @@ function requireClientsdkClientcore () {
|
|
|
62366
62493
|
});
|
|
62367
62494
|
Object.defineProperty(LegChannelJS.prototype, 'number', {
|
|
62368
62495
|
configurable: true,
|
|
62369
|
-
get: LegChannelJS.prototype.
|
|
62496
|
+
get: LegChannelJS.prototype.d2s
|
|
62370
62497
|
});
|
|
62371
62498
|
function LegJS(leg) {
|
|
62372
62499
|
this.t38_1 = leg.p2m_1;
|
|
@@ -62382,13 +62509,13 @@ function requireClientsdkClientcore () {
|
|
|
62382
62509
|
LegJS.prototype.v1k = function () {
|
|
62383
62510
|
return this.t38_1;
|
|
62384
62511
|
};
|
|
62385
|
-
LegJS.prototype.
|
|
62512
|
+
LegJS.prototype.l2q = function () {
|
|
62386
62513
|
return this.u38_1;
|
|
62387
62514
|
};
|
|
62388
|
-
LegJS.prototype.
|
|
62515
|
+
LegJS.prototype.u2r = function () {
|
|
62389
62516
|
return this.v38_1;
|
|
62390
62517
|
};
|
|
62391
|
-
LegJS.prototype.
|
|
62518
|
+
LegJS.prototype.c2r = function () {
|
|
62392
62519
|
return this.w38_1;
|
|
62393
62520
|
};
|
|
62394
62521
|
LegJS.prototype.f2f = function () {
|
|
@@ -62413,15 +62540,15 @@ function requireClientsdkClientcore () {
|
|
|
62413
62540
|
});
|
|
62414
62541
|
Object.defineProperty(LegJS.prototype, 'type', {
|
|
62415
62542
|
configurable: true,
|
|
62416
|
-
get: LegJS.prototype.
|
|
62543
|
+
get: LegJS.prototype.l2q
|
|
62417
62544
|
});
|
|
62418
62545
|
Object.defineProperty(LegJS.prototype, 'direction', {
|
|
62419
62546
|
configurable: true,
|
|
62420
|
-
get: LegJS.prototype.
|
|
62547
|
+
get: LegJS.prototype.u2r
|
|
62421
62548
|
});
|
|
62422
62549
|
Object.defineProperty(LegJS.prototype, 'conversationId', {
|
|
62423
62550
|
configurable: true,
|
|
62424
|
-
get: LegJS.prototype.
|
|
62551
|
+
get: LegJS.prototype.c2r
|
|
62425
62552
|
});
|
|
62426
62553
|
Object.defineProperty(LegJS.prototype, 'status', {
|
|
62427
62554
|
configurable: true,
|
|
@@ -62820,43 +62947,23 @@ function requireClientsdkClientcore () {
|
|
|
62820
62947
|
extendThrowable(this, vonageError.c2j_1, vonageError.d2j_1);
|
|
62821
62948
|
this.e3b_1 = valueOf_3(vonageError.a2j_1.d4_1);
|
|
62822
62949
|
this.f3b_1 = vonageError.b2j_1;
|
|
62823
|
-
this.g3b_1 = vonageError.c2j_1;
|
|
62824
|
-
this.h3b_1 = vonageError.d2j_1;
|
|
62825
62950
|
captureStack(this, VonageErrorJS);
|
|
62826
62951
|
}
|
|
62827
|
-
VonageErrorJS.prototype.
|
|
62952
|
+
VonageErrorJS.prototype.l2q = function () {
|
|
62828
62953
|
return this.e3b_1;
|
|
62829
62954
|
};
|
|
62830
62955
|
VonageErrorJS.prototype.e1e = function () {
|
|
62831
62956
|
return this.f3b_1;
|
|
62832
62957
|
};
|
|
62833
|
-
VonageErrorJS.prototype.g1 = function () {
|
|
62834
|
-
return this.g3b_1;
|
|
62835
|
-
};
|
|
62836
|
-
VonageErrorJS.prototype.h1 = function () {
|
|
62837
|
-
return this.h3b_1;
|
|
62838
|
-
};
|
|
62839
62958
|
VonageErrorJS.$metadata$ = classMeta('VonageErrorJS', undefined, undefined, undefined, undefined, Error.prototype);
|
|
62840
62959
|
Object.defineProperty(VonageErrorJS.prototype, 'type', {
|
|
62841
62960
|
configurable: true,
|
|
62842
|
-
get: VonageErrorJS.prototype.
|
|
62961
|
+
get: VonageErrorJS.prototype.l2q
|
|
62843
62962
|
});
|
|
62844
62963
|
Object.defineProperty(VonageErrorJS.prototype, 'code', {
|
|
62845
62964
|
configurable: true,
|
|
62846
62965
|
get: VonageErrorJS.prototype.e1e
|
|
62847
62966
|
});
|
|
62848
|
-
Object.defineProperty(VonageErrorJS.prototype, 'message', {
|
|
62849
|
-
configurable: true,
|
|
62850
|
-
get: function () {
|
|
62851
|
-
return this.g1();
|
|
62852
|
-
}
|
|
62853
|
-
});
|
|
62854
|
-
Object.defineProperty(VonageErrorJS.prototype, 'cause', {
|
|
62855
|
-
configurable: true,
|
|
62856
|
-
get: function () {
|
|
62857
|
-
return this.h1();
|
|
62858
|
-
}
|
|
62859
|
-
});
|
|
62860
62967
|
var VonageErrorTypeJS_CS_ERROR_instance;
|
|
62861
62968
|
var VonageErrorTypeJS_HTTP_CLIENT_ERROR_instance;
|
|
62862
62969
|
var VonageErrorTypeJS_SESSION_ERROR_instance;
|
|
@@ -63454,15 +63561,15 @@ function requireClientsdkClientcore () {
|
|
|
63454
63561
|
}
|
|
63455
63562
|
function CoreClientConfigRegionJS(name, ordinal, coreRegion) {
|
|
63456
63563
|
Enum.call(this, name, ordinal);
|
|
63457
|
-
this.
|
|
63564
|
+
this.k3b_1 = coreRegion;
|
|
63458
63565
|
}
|
|
63459
|
-
CoreClientConfigRegionJS.prototype.
|
|
63460
|
-
return this.
|
|
63566
|
+
CoreClientConfigRegionJS.prototype.l3b = function () {
|
|
63567
|
+
return this.k3b_1;
|
|
63461
63568
|
};
|
|
63462
63569
|
CoreClientConfigRegionJS.$metadata$ = classMeta('CoreClientConfigRegionJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
63463
63570
|
Object.defineProperty(CoreClientConfigRegionJS.prototype, 'coreRegion', {
|
|
63464
63571
|
configurable: true,
|
|
63465
|
-
get: CoreClientConfigRegionJS.prototype.
|
|
63572
|
+
get: CoreClientConfigRegionJS.prototype.l3b
|
|
63466
63573
|
});
|
|
63467
63574
|
Object.defineProperty(CoreClientConfigRegionJS.prototype, 'name', {
|
|
63468
63575
|
configurable: true,
|
|
@@ -63473,69 +63580,69 @@ function requireClientsdkClientcore () {
|
|
|
63473
63580
|
get: CoreClientConfigRegionJS.prototype.pe
|
|
63474
63581
|
});
|
|
63475
63582
|
function CoreClientConfigJS(region) {
|
|
63476
|
-
this.
|
|
63477
|
-
this.
|
|
63478
|
-
this.
|
|
63479
|
-
this.
|
|
63480
|
-
this.
|
|
63481
|
-
this.
|
|
63583
|
+
this.m3b_1 = Companion_getInstance().s2g(region.k3b_1, true);
|
|
63584
|
+
this.n3b_1 = this.m3b_1.t2g_1;
|
|
63585
|
+
this.o3b_1 = this.m3b_1.u2g_1;
|
|
63586
|
+
this.p3b_1 = this.m3b_1.v2g_1;
|
|
63587
|
+
this.q3b_1 = this.m3b_1.w2g_1;
|
|
63588
|
+
this.r3b_1 = this.m3b_1.y2g_1;
|
|
63482
63589
|
}
|
|
63590
|
+
CoreClientConfigJS.prototype.s3b = function (_set____db54di) {
|
|
63591
|
+
this.n3b_1 = _set____db54di;
|
|
63592
|
+
};
|
|
63593
|
+
CoreClientConfigJS.prototype.t3b = function () {
|
|
63594
|
+
return this.n3b_1;
|
|
63595
|
+
};
|
|
63483
63596
|
CoreClientConfigJS.prototype.u3b = function (_set____db54di) {
|
|
63484
|
-
this.
|
|
63597
|
+
this.o3b_1 = _set____db54di;
|
|
63485
63598
|
};
|
|
63486
63599
|
CoreClientConfigJS.prototype.v3b = function () {
|
|
63487
|
-
return this.
|
|
63600
|
+
return this.o3b_1;
|
|
63488
63601
|
};
|
|
63489
63602
|
CoreClientConfigJS.prototype.w3b = function (_set____db54di) {
|
|
63490
|
-
this.
|
|
63603
|
+
this.p3b_1 = _set____db54di;
|
|
63491
63604
|
};
|
|
63492
63605
|
CoreClientConfigJS.prototype.x3b = function () {
|
|
63493
|
-
return this.
|
|
63606
|
+
return this.p3b_1;
|
|
63494
63607
|
};
|
|
63495
63608
|
CoreClientConfigJS.prototype.y3b = function (_set____db54di) {
|
|
63496
|
-
this.
|
|
63609
|
+
this.q3b_1 = _set____db54di;
|
|
63497
63610
|
};
|
|
63498
63611
|
CoreClientConfigJS.prototype.z3b = function () {
|
|
63499
|
-
return this.
|
|
63612
|
+
return this.q3b_1;
|
|
63500
63613
|
};
|
|
63501
63614
|
CoreClientConfigJS.prototype.a3c = function (_set____db54di) {
|
|
63502
|
-
this.
|
|
63615
|
+
this.r3b_1 = _set____db54di;
|
|
63503
63616
|
};
|
|
63504
63617
|
CoreClientConfigJS.prototype.b3c = function () {
|
|
63505
|
-
return this.
|
|
63506
|
-
};
|
|
63507
|
-
CoreClientConfigJS.prototype.c3c = function (_set____db54di) {
|
|
63508
|
-
this.t3b_1 = _set____db54di;
|
|
63509
|
-
};
|
|
63510
|
-
CoreClientConfigJS.prototype.d3c = function () {
|
|
63511
|
-
return this.t3b_1;
|
|
63618
|
+
return this.r3b_1;
|
|
63512
63619
|
};
|
|
63513
63620
|
CoreClientConfigJS.$metadata$ = classMeta('CoreClientConfigJS');
|
|
63514
63621
|
Object.defineProperty(CoreClientConfigJS.prototype, 'apiUrl', {
|
|
63622
|
+
configurable: true,
|
|
63623
|
+
get: CoreClientConfigJS.prototype.t3b,
|
|
63624
|
+
set: CoreClientConfigJS.prototype.s3b
|
|
63625
|
+
});
|
|
63626
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'websocketUrl', {
|
|
63515
63627
|
configurable: true,
|
|
63516
63628
|
get: CoreClientConfigJS.prototype.v3b,
|
|
63517
63629
|
set: CoreClientConfigJS.prototype.u3b
|
|
63518
63630
|
});
|
|
63519
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63631
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'websocketPath', {
|
|
63520
63632
|
configurable: true,
|
|
63521
63633
|
get: CoreClientConfigJS.prototype.x3b,
|
|
63522
63634
|
set: CoreClientConfigJS.prototype.w3b
|
|
63523
63635
|
});
|
|
63524
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63636
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'autoMediaReoffer', {
|
|
63525
63637
|
configurable: true,
|
|
63526
63638
|
get: CoreClientConfigJS.prototype.z3b,
|
|
63527
63639
|
set: CoreClientConfigJS.prototype.y3b
|
|
63528
63640
|
});
|
|
63529
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63641
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'enableWebsocketInvites', {
|
|
63530
63642
|
configurable: true,
|
|
63531
63643
|
get: CoreClientConfigJS.prototype.b3c,
|
|
63532
63644
|
set: CoreClientConfigJS.prototype.a3c
|
|
63533
63645
|
});
|
|
63534
|
-
Object.defineProperty(CoreClientConfigJS.prototype, 'enableWebsocketInvites', {
|
|
63535
|
-
configurable: true,
|
|
63536
|
-
get: CoreClientConfigJS.prototype.d3c,
|
|
63537
|
-
set: CoreClientConfigJS.prototype.c3c
|
|
63538
|
-
});
|
|
63539
63646
|
var LoggingLevelJS_Verbose_instance;
|
|
63540
63647
|
var LoggingLevelJS_Debug_instance;
|
|
63541
63648
|
var LoggingLevelJS_Info_instance;
|
|
@@ -63579,10 +63686,10 @@ function requireClientsdkClientcore () {
|
|
|
63579
63686
|
}
|
|
63580
63687
|
function LoggingLevelJS(name, ordinal, sev) {
|
|
63581
63688
|
Enum.call(this, name, ordinal);
|
|
63582
|
-
this.
|
|
63689
|
+
this.e3c_1 = sev;
|
|
63583
63690
|
}
|
|
63584
63691
|
LoggingLevelJS.prototype.h2g = function () {
|
|
63585
|
-
return this.
|
|
63692
|
+
return this.e3c_1;
|
|
63586
63693
|
};
|
|
63587
63694
|
LoggingLevelJS.$metadata$ = classMeta('LoggingLevelJS', [ILoggingLevel], undefined, undefined, undefined, Enum.prototype);
|
|
63588
63695
|
Object.defineProperty(LoggingLevelJS.prototype, 'name', {
|
|
@@ -63614,7 +63721,7 @@ function requireClientsdkClientcore () {
|
|
|
63614
63721
|
inductionVariable = inductionVariable + 1 | 0;
|
|
63615
63722
|
var tmp$ret$0;
|
|
63616
63723
|
// Inline function 'vonage.Companion.getSessionErrorReason.<anonymous>' call
|
|
63617
|
-
tmp$ret$0 = element.
|
|
63724
|
+
tmp$ret$0 = element.h3c_1.equals(reason);
|
|
63618
63725
|
if (tmp$ret$0) {
|
|
63619
63726
|
tmp$ret$1 = element;
|
|
63620
63727
|
break $l$block;
|
|
@@ -63662,10 +63769,10 @@ function requireClientsdkClientcore () {
|
|
|
63662
63769
|
}
|
|
63663
63770
|
function SessionErrorReasonJS(name, ordinal, reason) {
|
|
63664
63771
|
Enum.call(this, name, ordinal);
|
|
63665
|
-
this.
|
|
63772
|
+
this.h3c_1 = reason;
|
|
63666
63773
|
}
|
|
63667
63774
|
SessionErrorReasonJS.prototype.z29 = function () {
|
|
63668
|
-
return this.
|
|
63775
|
+
return this.h3c_1;
|
|
63669
63776
|
};
|
|
63670
63777
|
SessionErrorReasonJS.$metadata$ = classMeta('SessionErrorReasonJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
63671
63778
|
Object.defineProperty(SessionErrorReasonJS.prototype, 'reason', {
|
|
@@ -64229,40 +64336,40 @@ function requireClientsdkClientcore () {
|
|
|
64229
64336
|
}
|
|
64230
64337
|
IVoiceClientJS.$metadata$ = interfaceMeta('IVoiceClientJS', [ICoreClientJS]);
|
|
64231
64338
|
function VoiceInviteFromInfoJS(id, type) {
|
|
64232
|
-
this.
|
|
64233
|
-
this.
|
|
64339
|
+
this.m3c_1 = id;
|
|
64340
|
+
this.n3c_1 = type;
|
|
64234
64341
|
}
|
|
64235
64342
|
VoiceInviteFromInfoJS.prototype.v1k = function () {
|
|
64236
|
-
return this.
|
|
64343
|
+
return this.m3c_1;
|
|
64237
64344
|
};
|
|
64238
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64239
|
-
return this.
|
|
64345
|
+
VoiceInviteFromInfoJS.prototype.l2q = function () {
|
|
64346
|
+
return this.n3c_1;
|
|
64240
64347
|
};
|
|
64241
64348
|
VoiceInviteFromInfoJS.prototype.component1 = function () {
|
|
64242
|
-
return this.
|
|
64349
|
+
return this.m3c_1;
|
|
64243
64350
|
};
|
|
64244
64351
|
VoiceInviteFromInfoJS.prototype.component2 = function () {
|
|
64245
|
-
return this.
|
|
64352
|
+
return this.n3c_1;
|
|
64246
64353
|
};
|
|
64247
64354
|
VoiceInviteFromInfoJS.prototype.copy = function (id, type) {
|
|
64248
|
-
return this.
|
|
64355
|
+
return this.o3c(id === void 1 ? this.m3c_1 : id, type === void 1 ? this.n3c_1 : type);
|
|
64249
64356
|
};
|
|
64250
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64357
|
+
VoiceInviteFromInfoJS.prototype.o3c = function (id, type) {
|
|
64251
64358
|
return new VoiceInviteFromInfoJS(id, type);
|
|
64252
64359
|
};
|
|
64253
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64360
|
+
VoiceInviteFromInfoJS.prototype.p3c = function (id, type, $mask0, $handler) {
|
|
64254
64361
|
if (!(($mask0 & 1) === 0))
|
|
64255
|
-
id = this.
|
|
64362
|
+
id = this.m3c_1;
|
|
64256
64363
|
if (!(($mask0 & 2) === 0))
|
|
64257
|
-
type = this.
|
|
64258
|
-
return this.
|
|
64364
|
+
type = this.n3c_1;
|
|
64365
|
+
return this.o3c(id, type);
|
|
64259
64366
|
};
|
|
64260
64367
|
VoiceInviteFromInfoJS.prototype.toString = function () {
|
|
64261
|
-
return 'VoiceInviteFromInfoJS(id=' + this.
|
|
64368
|
+
return 'VoiceInviteFromInfoJS(id=' + this.m3c_1 + ', type=' + this.n3c_1 + ')';
|
|
64262
64369
|
};
|
|
64263
64370
|
VoiceInviteFromInfoJS.prototype.hashCode = function () {
|
|
64264
|
-
var result = this.
|
|
64265
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
64371
|
+
var result = this.m3c_1 == null ? 0 : getStringHashCode(this.m3c_1);
|
|
64372
|
+
result = imul(result, 31) + getStringHashCode(this.n3c_1) | 0;
|
|
64266
64373
|
return result;
|
|
64267
64374
|
};
|
|
64268
64375
|
VoiceInviteFromInfoJS.prototype.equals = function (other) {
|
|
@@ -64271,9 +64378,9 @@ function requireClientsdkClientcore () {
|
|
|
64271
64378
|
if (!(other instanceof VoiceInviteFromInfoJS))
|
|
64272
64379
|
return false;
|
|
64273
64380
|
var tmp0_other_with_cast = other instanceof VoiceInviteFromInfoJS ? other : THROW_CCE();
|
|
64274
|
-
if (!(this.
|
|
64381
|
+
if (!(this.m3c_1 == tmp0_other_with_cast.m3c_1))
|
|
64275
64382
|
return false;
|
|
64276
|
-
if (!(this.
|
|
64383
|
+
if (!(this.n3c_1 === tmp0_other_with_cast.n3c_1))
|
|
64277
64384
|
return false;
|
|
64278
64385
|
return true;
|
|
64279
64386
|
};
|
|
@@ -64284,7 +64391,7 @@ function requireClientsdkClientcore () {
|
|
|
64284
64391
|
});
|
|
64285
64392
|
Object.defineProperty(VoiceInviteFromInfoJS.prototype, 'type', {
|
|
64286
64393
|
configurable: true,
|
|
64287
|
-
get: VoiceInviteFromInfoJS.prototype.
|
|
64394
|
+
get: VoiceInviteFromInfoJS.prototype.l2q
|
|
64288
64395
|
});
|
|
64289
64396
|
function LegStatusJS_RINGING_getInstance() {
|
|
64290
64397
|
LegStatusJS_initEntries();
|
|
@@ -64337,64 +64444,64 @@ function requireClientsdkClientcore () {
|
|
|
64337
64444
|
var responseBody_0 = responseBody === void 1 ? null : responseBody;
|
|
64338
64445
|
var cause_0 = cause === void 1 ? null : cause;
|
|
64339
64446
|
extendThrowable(this, void 1, void 1);
|
|
64340
|
-
this.
|
|
64341
|
-
this.
|
|
64342
|
-
this.
|
|
64343
|
-
this.
|
|
64447
|
+
this.q3c_1 = message_0;
|
|
64448
|
+
this.r3c_1 = responseCode_0;
|
|
64449
|
+
this.s3c_1 = responseBody_0;
|
|
64450
|
+
this.t3c_1 = cause_0;
|
|
64344
64451
|
captureStack(this, HttpClientErrorJS);
|
|
64345
64452
|
}
|
|
64346
64453
|
HttpClientErrorJS.prototype.g1 = function () {
|
|
64347
|
-
return this.
|
|
64454
|
+
return this.q3c_1;
|
|
64348
64455
|
};
|
|
64349
|
-
HttpClientErrorJS.prototype.
|
|
64350
|
-
return this.
|
|
64456
|
+
HttpClientErrorJS.prototype.u3c = function () {
|
|
64457
|
+
return this.r3c_1;
|
|
64351
64458
|
};
|
|
64352
|
-
HttpClientErrorJS.prototype.
|
|
64353
|
-
return this.
|
|
64459
|
+
HttpClientErrorJS.prototype.v3c = function () {
|
|
64460
|
+
return this.s3c_1;
|
|
64354
64461
|
};
|
|
64355
64462
|
HttpClientErrorJS.prototype.h1 = function () {
|
|
64356
|
-
return this.
|
|
64463
|
+
return this.t3c_1;
|
|
64357
64464
|
};
|
|
64358
|
-
HttpClientErrorJS.prototype.
|
|
64359
|
-
return new HTTPClientError(this.
|
|
64465
|
+
HttpClientErrorJS.prototype.w3c = function () {
|
|
64466
|
+
return new HTTPClientError(this.q3c_1, this.r3c_1, this.s3c_1, this.t3c_1);
|
|
64360
64467
|
};
|
|
64361
64468
|
HttpClientErrorJS.prototype.component1 = function () {
|
|
64362
|
-
return this.
|
|
64469
|
+
return this.q3c_1;
|
|
64363
64470
|
};
|
|
64364
64471
|
HttpClientErrorJS.prototype.component2 = function () {
|
|
64365
|
-
return this.
|
|
64472
|
+
return this.r3c_1;
|
|
64366
64473
|
};
|
|
64367
64474
|
HttpClientErrorJS.prototype.component3 = function () {
|
|
64368
|
-
return this.
|
|
64475
|
+
return this.s3c_1;
|
|
64369
64476
|
};
|
|
64370
64477
|
HttpClientErrorJS.prototype.component4 = function () {
|
|
64371
|
-
return this.
|
|
64478
|
+
return this.t3c_1;
|
|
64372
64479
|
};
|
|
64373
64480
|
HttpClientErrorJS.prototype.copy = function (message, responseCode, responseBody, cause) {
|
|
64374
|
-
return this.
|
|
64481
|
+
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);
|
|
64375
64482
|
};
|
|
64376
|
-
HttpClientErrorJS.prototype.
|
|
64483
|
+
HttpClientErrorJS.prototype.x3c = function (message, responseCode, responseBody, cause) {
|
|
64377
64484
|
return new HttpClientErrorJS(message, responseCode, responseBody, cause);
|
|
64378
64485
|
};
|
|
64379
|
-
HttpClientErrorJS.prototype.
|
|
64486
|
+
HttpClientErrorJS.prototype.y3c = function (message, responseCode, responseBody, cause, $mask0, $handler) {
|
|
64380
64487
|
if (!(($mask0 & 1) === 0))
|
|
64381
|
-
message = this.
|
|
64488
|
+
message = this.q3c_1;
|
|
64382
64489
|
if (!(($mask0 & 2) === 0))
|
|
64383
|
-
responseCode = this.
|
|
64490
|
+
responseCode = this.r3c_1;
|
|
64384
64491
|
if (!(($mask0 & 4) === 0))
|
|
64385
|
-
responseBody = this.
|
|
64492
|
+
responseBody = this.s3c_1;
|
|
64386
64493
|
if (!(($mask0 & 8) === 0))
|
|
64387
|
-
cause = this.
|
|
64388
|
-
return this.
|
|
64494
|
+
cause = this.t3c_1;
|
|
64495
|
+
return this.x3c(message, responseCode, responseBody, cause);
|
|
64389
64496
|
};
|
|
64390
64497
|
HttpClientErrorJS.prototype.toString = function () {
|
|
64391
|
-
return 'HttpClientErrorJS(message=' + this.
|
|
64498
|
+
return 'HttpClientErrorJS(message=' + this.q3c_1 + ', responseCode=' + this.r3c_1 + ', responseBody=' + this.s3c_1 + ', cause=' + this.t3c_1 + ')';
|
|
64392
64499
|
};
|
|
64393
64500
|
HttpClientErrorJS.prototype.hashCode = function () {
|
|
64394
|
-
var result = this.
|
|
64395
|
-
result = imul(result, 31) + (this.
|
|
64396
|
-
result = imul(result, 31) + (this.
|
|
64397
|
-
result = imul(result, 31) + (this.
|
|
64501
|
+
var result = this.q3c_1 == null ? 0 : getStringHashCode(this.q3c_1);
|
|
64502
|
+
result = imul(result, 31) + (this.r3c_1 == null ? 0 : this.r3c_1) | 0;
|
|
64503
|
+
result = imul(result, 31) + (this.s3c_1 == null ? 0 : getStringHashCode(this.s3c_1)) | 0;
|
|
64504
|
+
result = imul(result, 31) + (this.t3c_1 == null ? 0 : hashCode(this.t3c_1)) | 0;
|
|
64398
64505
|
return result;
|
|
64399
64506
|
};
|
|
64400
64507
|
HttpClientErrorJS.prototype.equals = function (other) {
|
|
@@ -64403,13 +64510,13 @@ function requireClientsdkClientcore () {
|
|
|
64403
64510
|
if (!(other instanceof HttpClientErrorJS))
|
|
64404
64511
|
return false;
|
|
64405
64512
|
var tmp0_other_with_cast = other instanceof HttpClientErrorJS ? other : THROW_CCE();
|
|
64406
|
-
if (!(this.
|
|
64513
|
+
if (!(this.q3c_1 == tmp0_other_with_cast.q3c_1))
|
|
64407
64514
|
return false;
|
|
64408
|
-
if (!(this.
|
|
64515
|
+
if (!(this.r3c_1 == tmp0_other_with_cast.r3c_1))
|
|
64409
64516
|
return false;
|
|
64410
|
-
if (!(this.
|
|
64517
|
+
if (!(this.s3c_1 == tmp0_other_with_cast.s3c_1))
|
|
64411
64518
|
return false;
|
|
64412
|
-
if (!equals(this.
|
|
64519
|
+
if (!equals(this.t3c_1, tmp0_other_with_cast.t3c_1))
|
|
64413
64520
|
return false;
|
|
64414
64521
|
return true;
|
|
64415
64522
|
};
|
|
@@ -64422,11 +64529,11 @@ function requireClientsdkClientcore () {
|
|
|
64422
64529
|
});
|
|
64423
64530
|
Object.defineProperty(HttpClientErrorJS.prototype, 'responseCode', {
|
|
64424
64531
|
configurable: true,
|
|
64425
|
-
get: HttpClientErrorJS.prototype.
|
|
64532
|
+
get: HttpClientErrorJS.prototype.u3c
|
|
64426
64533
|
});
|
|
64427
64534
|
Object.defineProperty(HttpClientErrorJS.prototype, 'responseBody', {
|
|
64428
64535
|
configurable: true,
|
|
64429
|
-
get: HttpClientErrorJS.prototype.
|
|
64536
|
+
get: HttpClientErrorJS.prototype.v3c
|
|
64430
64537
|
});
|
|
64431
64538
|
Object.defineProperty(HttpClientErrorJS.prototype, 'cause', {
|
|
64432
64539
|
configurable: true,
|
|
@@ -64436,7 +64543,7 @@ function requireClientsdkClientcore () {
|
|
|
64436
64543
|
});
|
|
64437
64544
|
Object.defineProperty(HttpClientErrorJS.prototype, 'coreError', {
|
|
64438
64545
|
configurable: true,
|
|
64439
|
-
get: HttpClientErrorJS.prototype.
|
|
64546
|
+
get: HttpClientErrorJS.prototype.w3c
|
|
64440
64547
|
});
|
|
64441
64548
|
function get_SOCKET_CONNECTED() {
|
|
64442
64549
|
return SOCKET_CONNECTED;
|
|
@@ -64467,20 +64574,20 @@ function requireClientsdkClientcore () {
|
|
|
64467
64574
|
}
|
|
64468
64575
|
var REASON_PING_TIMEOUT;
|
|
64469
64576
|
var CancelReasonJS_RemoteCancel_instance;
|
|
64470
|
-
var
|
|
64471
|
-
var
|
|
64577
|
+
var CancelReasonJS_AnsweredElsewhere_instance;
|
|
64578
|
+
var CancelReasonJS_RejectedElsewhere_instance;
|
|
64472
64579
|
var CancelReasonJS_RemoteTimeout_instance;
|
|
64473
64580
|
function values_9() {
|
|
64474
|
-
return [CancelReasonJS_RemoteCancel_getInstance(),
|
|
64581
|
+
return [CancelReasonJS_RemoteCancel_getInstance(), CancelReasonJS_AnsweredElsewhere_getInstance(), CancelReasonJS_RejectedElsewhere_getInstance(), CancelReasonJS_RemoteTimeout_getInstance()];
|
|
64475
64582
|
}
|
|
64476
64583
|
function valueOf_9(value) {
|
|
64477
64584
|
switch (value) {
|
|
64478
64585
|
case 'RemoteCancel':
|
|
64479
64586
|
return CancelReasonJS_RemoteCancel_getInstance();
|
|
64480
|
-
case '
|
|
64481
|
-
return
|
|
64482
|
-
case '
|
|
64483
|
-
return
|
|
64587
|
+
case 'AnsweredElsewhere':
|
|
64588
|
+
return CancelReasonJS_AnsweredElsewhere_getInstance();
|
|
64589
|
+
case 'RejectedElsewhere':
|
|
64590
|
+
return CancelReasonJS_RejectedElsewhere_getInstance();
|
|
64484
64591
|
case 'RemoteTimeout':
|
|
64485
64592
|
return CancelReasonJS_RemoteTimeout_getInstance();
|
|
64486
64593
|
default:
|
|
@@ -64495,16 +64602,16 @@ function requireClientsdkClientcore () {
|
|
|
64495
64602
|
return Unit_getInstance();
|
|
64496
64603
|
CancelReasonJS_entriesInitialized = true;
|
|
64497
64604
|
CancelReasonJS_RemoteCancel_instance = new CancelReasonJS('RemoteCancel', 0, 'RemoteCancel');
|
|
64498
|
-
|
|
64499
|
-
|
|
64605
|
+
CancelReasonJS_AnsweredElsewhere_instance = new CancelReasonJS('AnsweredElsewhere', 1, 'AnsweredElsewhere');
|
|
64606
|
+
CancelReasonJS_RejectedElsewhere_instance = new CancelReasonJS('RejectedElsewhere', 2, 'RejectedElsewhere');
|
|
64500
64607
|
CancelReasonJS_RemoteTimeout_instance = new CancelReasonJS('RemoteTimeout', 3, 'RemoteTimeout');
|
|
64501
64608
|
}
|
|
64502
64609
|
function CancelReasonJS(name, ordinal, reason) {
|
|
64503
64610
|
Enum.call(this, name, ordinal);
|
|
64504
|
-
this.
|
|
64611
|
+
this.b3d_1 = reason;
|
|
64505
64612
|
}
|
|
64506
64613
|
CancelReasonJS.prototype.z29 = function () {
|
|
64507
|
-
return this.
|
|
64614
|
+
return this.b3d_1;
|
|
64508
64615
|
};
|
|
64509
64616
|
CancelReasonJS.$metadata$ = classMeta('CancelReasonJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
64510
64617
|
Object.defineProperty(CancelReasonJS.prototype, 'reason', {
|
|
@@ -64520,17 +64627,23 @@ function requireClientsdkClientcore () {
|
|
|
64520
64627
|
get: CancelReasonJS.prototype.pe
|
|
64521
64628
|
});
|
|
64522
64629
|
function RTCQualityJS(callQuality) {
|
|
64523
|
-
this.
|
|
64524
|
-
this.
|
|
64525
|
-
this.
|
|
64526
|
-
this.
|
|
64527
|
-
this.
|
|
64528
|
-
this.
|
|
64529
|
-
this.
|
|
64530
|
-
this.
|
|
64531
|
-
this.
|
|
64532
|
-
this.
|
|
64630
|
+
this.c3d_1 = callQuality;
|
|
64631
|
+
this.d3d_1 = this.c3d_1.s2t_1;
|
|
64632
|
+
this.e3d_1 = this.c3d_1.t2t_1;
|
|
64633
|
+
this.f3d_1 = this.c3d_1.u2t_1;
|
|
64634
|
+
this.g3d_1 = this.c3d_1.v2t_1;
|
|
64635
|
+
this.h3d_1 = this.c3d_1.w2t_1;
|
|
64636
|
+
this.i3d_1 = this.c3d_1.x2t_1;
|
|
64637
|
+
this.j3d_1 = this.c3d_1.y2t_1;
|
|
64638
|
+
this.k3d_1 = this.c3d_1.z2t_1;
|
|
64639
|
+
this.l3d_1 = this.c3d_1.a2u_1;
|
|
64533
64640
|
}
|
|
64641
|
+
RTCQualityJS.prototype.m3d = function () {
|
|
64642
|
+
return this.d3d_1;
|
|
64643
|
+
};
|
|
64644
|
+
RTCQualityJS.prototype.n3d = function () {
|
|
64645
|
+
return this.e3d_1;
|
|
64646
|
+
};
|
|
64534
64647
|
RTCQualityJS.prototype.o3d = function () {
|
|
64535
64648
|
return this.f3d_1;
|
|
64536
64649
|
};
|
|
@@ -64552,28 +64665,22 @@ function requireClientsdkClientcore () {
|
|
|
64552
64665
|
RTCQualityJS.prototype.u3d = function () {
|
|
64553
64666
|
return this.l3d_1;
|
|
64554
64667
|
};
|
|
64555
|
-
RTCQualityJS.prototype.v3d = function () {
|
|
64556
|
-
return this.m3d_1;
|
|
64557
|
-
};
|
|
64558
|
-
RTCQualityJS.prototype.w3d = function () {
|
|
64559
|
-
return this.n3d_1;
|
|
64560
|
-
};
|
|
64561
64668
|
RTCQualityJS.prototype.copy = function (callQuality) {
|
|
64562
|
-
return this.
|
|
64669
|
+
return this.v3d(callQuality === void 1 ? this.c3d_1 : callQuality);
|
|
64563
64670
|
};
|
|
64564
|
-
RTCQualityJS.prototype.
|
|
64671
|
+
RTCQualityJS.prototype.v3d = function (callQuality) {
|
|
64565
64672
|
return new RTCQualityJS(callQuality);
|
|
64566
64673
|
};
|
|
64567
|
-
RTCQualityJS.prototype.
|
|
64674
|
+
RTCQualityJS.prototype.w3d = function (callQuality, $mask0, $handler) {
|
|
64568
64675
|
if (!(($mask0 & 1) === 0))
|
|
64569
|
-
callQuality = this.
|
|
64570
|
-
return this.
|
|
64676
|
+
callQuality = this.c3d_1;
|
|
64677
|
+
return this.v3d(callQuality);
|
|
64571
64678
|
};
|
|
64572
64679
|
RTCQualityJS.prototype.toString = function () {
|
|
64573
|
-
return 'RTCQualityJS(callQuality=' + this.
|
|
64680
|
+
return 'RTCQualityJS(callQuality=' + this.c3d_1 + ')';
|
|
64574
64681
|
};
|
|
64575
64682
|
RTCQualityJS.prototype.hashCode = function () {
|
|
64576
|
-
return this.
|
|
64683
|
+
return this.c3d_1.hashCode();
|
|
64577
64684
|
};
|
|
64578
64685
|
RTCQualityJS.prototype.equals = function (other) {
|
|
64579
64686
|
if (this === other)
|
|
@@ -64581,59 +64688,65 @@ function requireClientsdkClientcore () {
|
|
|
64581
64688
|
if (!(other instanceof RTCQualityJS))
|
|
64582
64689
|
return false;
|
|
64583
64690
|
var tmp0_other_with_cast = other instanceof RTCQualityJS ? other : THROW_CCE();
|
|
64584
|
-
if (!this.
|
|
64691
|
+
if (!this.c3d_1.equals(tmp0_other_with_cast.c3d_1))
|
|
64585
64692
|
return false;
|
|
64586
64693
|
return true;
|
|
64587
64694
|
};
|
|
64588
64695
|
RTCQualityJS.$metadata$ = classMeta('RTCQualityJS');
|
|
64589
64696
|
Object.defineProperty(RTCQualityJS.prototype, 'mos_score', {
|
|
64590
64697
|
configurable: true,
|
|
64591
|
-
get: RTCQualityJS.prototype.
|
|
64698
|
+
get: RTCQualityJS.prototype.m3d
|
|
64592
64699
|
});
|
|
64593
64700
|
Object.defineProperty(RTCQualityJS.prototype, 'quality_percentage', {
|
|
64594
64701
|
configurable: true,
|
|
64595
|
-
get: RTCQualityJS.prototype.
|
|
64702
|
+
get: RTCQualityJS.prototype.n3d
|
|
64596
64703
|
});
|
|
64597
64704
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_min_var', {
|
|
64598
64705
|
configurable: true,
|
|
64599
|
-
get: RTCQualityJS.prototype.
|
|
64706
|
+
get: RTCQualityJS.prototype.o3d
|
|
64600
64707
|
});
|
|
64601
64708
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_max_var', {
|
|
64602
64709
|
configurable: true,
|
|
64603
|
-
get: RTCQualityJS.prototype.
|
|
64710
|
+
get: RTCQualityJS.prototype.p3d
|
|
64604
64711
|
});
|
|
64605
64712
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_loss_rate', {
|
|
64606
64713
|
configurable: true,
|
|
64607
|
-
get: RTCQualityJS.prototype.
|
|
64714
|
+
get: RTCQualityJS.prototype.q3d
|
|
64608
64715
|
});
|
|
64609
64716
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_burst_rate', {
|
|
64610
64717
|
configurable: true,
|
|
64611
|
-
get: RTCQualityJS.prototype.
|
|
64718
|
+
get: RTCQualityJS.prototype.r3d
|
|
64612
64719
|
});
|
|
64613
64720
|
Object.defineProperty(RTCQualityJS.prototype, 'flaw_total', {
|
|
64614
64721
|
configurable: true,
|
|
64615
|
-
get: RTCQualityJS.prototype.
|
|
64722
|
+
get: RTCQualityJS.prototype.s3d
|
|
64616
64723
|
});
|
|
64617
64724
|
Object.defineProperty(RTCQualityJS.prototype, 'packet_cnt', {
|
|
64618
64725
|
configurable: true,
|
|
64619
|
-
get: RTCQualityJS.prototype.
|
|
64726
|
+
get: RTCQualityJS.prototype.t3d
|
|
64620
64727
|
});
|
|
64621
64728
|
Object.defineProperty(RTCQualityJS.prototype, 'packet_loss_perc', {
|
|
64622
64729
|
configurable: true,
|
|
64623
|
-
get: RTCQualityJS.prototype.
|
|
64730
|
+
get: RTCQualityJS.prototype.u3d
|
|
64624
64731
|
});
|
|
64625
64732
|
function RTCStatsJS(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId) {
|
|
64626
|
-
this.
|
|
64627
|
-
this.
|
|
64628
|
-
this.
|
|
64629
|
-
this.
|
|
64630
|
-
this.
|
|
64631
|
-
this.
|
|
64632
|
-
this.
|
|
64633
|
-
this.
|
|
64634
|
-
this.
|
|
64635
|
-
this.
|
|
64733
|
+
this.x3d_1 = audioRecvPackets;
|
|
64734
|
+
this.y3d_1 = audioRecvPacketsLost;
|
|
64735
|
+
this.z3d_1 = audioRecvBytes;
|
|
64736
|
+
this.a3e_1 = audioRecvJitter;
|
|
64737
|
+
this.b3e_1 = audioSentPackets;
|
|
64738
|
+
this.c3e_1 = audioSentBytes;
|
|
64739
|
+
this.d3e_1 = audioSentPacketsLost;
|
|
64740
|
+
this.e3e_1 = audioRtt;
|
|
64741
|
+
this.f3e_1 = audioSentJitter;
|
|
64742
|
+
this.g3e_1 = legId;
|
|
64636
64743
|
}
|
|
64744
|
+
RTCStatsJS.prototype.h3e = function () {
|
|
64745
|
+
return this.x3d_1;
|
|
64746
|
+
};
|
|
64747
|
+
RTCStatsJS.prototype.i3e = function () {
|
|
64748
|
+
return this.y3d_1;
|
|
64749
|
+
};
|
|
64637
64750
|
RTCStatsJS.prototype.j3e = function () {
|
|
64638
64751
|
return this.z3d_1;
|
|
64639
64752
|
};
|
|
@@ -64655,88 +64768,82 @@ function requireClientsdkClientcore () {
|
|
|
64655
64768
|
RTCStatsJS.prototype.p3e = function () {
|
|
64656
64769
|
return this.f3e_1;
|
|
64657
64770
|
};
|
|
64658
|
-
RTCStatsJS.prototype.q3e = function () {
|
|
64659
|
-
return this.g3e_1;
|
|
64660
|
-
};
|
|
64661
|
-
RTCStatsJS.prototype.r3e = function () {
|
|
64662
|
-
return this.h3e_1;
|
|
64663
|
-
};
|
|
64664
64771
|
RTCStatsJS.prototype.g1k = function () {
|
|
64665
|
-
return this.
|
|
64772
|
+
return this.g3e_1;
|
|
64666
64773
|
};
|
|
64667
64774
|
RTCStatsJS.prototype.component1 = function () {
|
|
64668
|
-
return this.
|
|
64775
|
+
return this.x3d_1;
|
|
64669
64776
|
};
|
|
64670
64777
|
RTCStatsJS.prototype.component2 = function () {
|
|
64671
|
-
return this.
|
|
64778
|
+
return this.y3d_1;
|
|
64672
64779
|
};
|
|
64673
64780
|
RTCStatsJS.prototype.component3 = function () {
|
|
64674
|
-
return this.
|
|
64781
|
+
return this.z3d_1;
|
|
64675
64782
|
};
|
|
64676
64783
|
RTCStatsJS.prototype.component4 = function () {
|
|
64677
|
-
return this.
|
|
64784
|
+
return this.a3e_1;
|
|
64678
64785
|
};
|
|
64679
64786
|
RTCStatsJS.prototype.component5 = function () {
|
|
64680
|
-
return this.
|
|
64787
|
+
return this.b3e_1;
|
|
64681
64788
|
};
|
|
64682
64789
|
RTCStatsJS.prototype.component6 = function () {
|
|
64683
|
-
return this.
|
|
64790
|
+
return this.c3e_1;
|
|
64684
64791
|
};
|
|
64685
64792
|
RTCStatsJS.prototype.component7 = function () {
|
|
64686
|
-
return this.
|
|
64793
|
+
return this.d3e_1;
|
|
64687
64794
|
};
|
|
64688
64795
|
RTCStatsJS.prototype.component8 = function () {
|
|
64689
|
-
return this.
|
|
64796
|
+
return this.e3e_1;
|
|
64690
64797
|
};
|
|
64691
64798
|
RTCStatsJS.prototype.component9 = function () {
|
|
64692
|
-
return this.
|
|
64799
|
+
return this.f3e_1;
|
|
64693
64800
|
};
|
|
64694
64801
|
RTCStatsJS.prototype.component10 = function () {
|
|
64695
|
-
return this.
|
|
64802
|
+
return this.g3e_1;
|
|
64696
64803
|
};
|
|
64697
64804
|
RTCStatsJS.prototype.copy = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId) {
|
|
64698
|
-
return this.
|
|
64805
|
+
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);
|
|
64699
64806
|
};
|
|
64700
|
-
RTCStatsJS.prototype.
|
|
64807
|
+
RTCStatsJS.prototype.q3e = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId) {
|
|
64701
64808
|
return new RTCStatsJS(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId);
|
|
64702
64809
|
};
|
|
64703
|
-
RTCStatsJS.prototype.
|
|
64810
|
+
RTCStatsJS.prototype.r3e = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId, $mask0, $handler) {
|
|
64704
64811
|
if (!(($mask0 & 1) === 0))
|
|
64705
|
-
audioRecvPackets = this.
|
|
64812
|
+
audioRecvPackets = this.x3d_1;
|
|
64706
64813
|
if (!(($mask0 & 2) === 0))
|
|
64707
|
-
audioRecvPacketsLost = this.
|
|
64814
|
+
audioRecvPacketsLost = this.y3d_1;
|
|
64708
64815
|
if (!(($mask0 & 4) === 0))
|
|
64709
|
-
audioRecvBytes = this.
|
|
64816
|
+
audioRecvBytes = this.z3d_1;
|
|
64710
64817
|
if (!(($mask0 & 8) === 0))
|
|
64711
|
-
audioRecvJitter = this.
|
|
64818
|
+
audioRecvJitter = this.a3e_1;
|
|
64712
64819
|
if (!(($mask0 & 16) === 0))
|
|
64713
|
-
audioSentPackets = this.
|
|
64820
|
+
audioSentPackets = this.b3e_1;
|
|
64714
64821
|
if (!(($mask0 & 32) === 0))
|
|
64715
|
-
audioSentBytes = this.
|
|
64822
|
+
audioSentBytes = this.c3e_1;
|
|
64716
64823
|
if (!(($mask0 & 64) === 0))
|
|
64717
|
-
audioSentPacketsLost = this.
|
|
64824
|
+
audioSentPacketsLost = this.d3e_1;
|
|
64718
64825
|
if (!(($mask0 & 128) === 0))
|
|
64719
|
-
audioRtt = this.
|
|
64826
|
+
audioRtt = this.e3e_1;
|
|
64720
64827
|
if (!(($mask0 & 256) === 0))
|
|
64721
|
-
audioSentJitter = this.
|
|
64828
|
+
audioSentJitter = this.f3e_1;
|
|
64722
64829
|
if (!(($mask0 & 512) === 0))
|
|
64723
|
-
legId = this.
|
|
64724
|
-
return this.
|
|
64830
|
+
legId = this.g3e_1;
|
|
64831
|
+
return this.q3e(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId);
|
|
64725
64832
|
};
|
|
64726
64833
|
RTCStatsJS.prototype.toString = function () {
|
|
64727
|
-
return 'RTCStatsJS(audioRecvPackets=' + toString(this.
|
|
64834
|
+
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 + ')';
|
|
64728
64835
|
};
|
|
64729
64836
|
RTCStatsJS.prototype.hashCode = function () {
|
|
64730
|
-
var result = this.
|
|
64837
|
+
var result = this.x3d_1 == null ? 0 : hashCode(this.x3d_1);
|
|
64838
|
+
result = imul(result, 31) + (this.y3d_1 == null ? 0 : hashCode(this.y3d_1)) | 0;
|
|
64839
|
+
result = imul(result, 31) + (this.z3d_1 == null ? 0 : hashCode(this.z3d_1)) | 0;
|
|
64731
64840
|
result = imul(result, 31) + (this.a3e_1 == null ? 0 : hashCode(this.a3e_1)) | 0;
|
|
64732
64841
|
result = imul(result, 31) + (this.b3e_1 == null ? 0 : hashCode(this.b3e_1)) | 0;
|
|
64733
64842
|
result = imul(result, 31) + (this.c3e_1 == null ? 0 : hashCode(this.c3e_1)) | 0;
|
|
64734
64843
|
result = imul(result, 31) + (this.d3e_1 == null ? 0 : hashCode(this.d3e_1)) | 0;
|
|
64735
64844
|
result = imul(result, 31) + (this.e3e_1 == null ? 0 : hashCode(this.e3e_1)) | 0;
|
|
64736
64845
|
result = imul(result, 31) + (this.f3e_1 == null ? 0 : hashCode(this.f3e_1)) | 0;
|
|
64737
|
-
result = imul(result, 31) + (this.g3e_1
|
|
64738
|
-
result = imul(result, 31) + (this.h3e_1 == null ? 0 : hashCode(this.h3e_1)) | 0;
|
|
64739
|
-
result = imul(result, 31) + getStringHashCode(this.i3e_1) | 0;
|
|
64846
|
+
result = imul(result, 31) + getStringHashCode(this.g3e_1) | 0;
|
|
64740
64847
|
return result;
|
|
64741
64848
|
};
|
|
64742
64849
|
RTCStatsJS.prototype.equals = function (other) {
|
|
@@ -64745,6 +64852,10 @@ function requireClientsdkClientcore () {
|
|
|
64745
64852
|
if (!(other instanceof RTCStatsJS))
|
|
64746
64853
|
return false;
|
|
64747
64854
|
var tmp0_other_with_cast = other instanceof RTCStatsJS ? other : THROW_CCE();
|
|
64855
|
+
if (!equals(this.x3d_1, tmp0_other_with_cast.x3d_1))
|
|
64856
|
+
return false;
|
|
64857
|
+
if (!equals(this.y3d_1, tmp0_other_with_cast.y3d_1))
|
|
64858
|
+
return false;
|
|
64748
64859
|
if (!equals(this.z3d_1, tmp0_other_with_cast.z3d_1))
|
|
64749
64860
|
return false;
|
|
64750
64861
|
if (!equals(this.a3e_1, tmp0_other_with_cast.a3e_1))
|
|
@@ -64759,50 +64870,46 @@ function requireClientsdkClientcore () {
|
|
|
64759
64870
|
return false;
|
|
64760
64871
|
if (!equals(this.f3e_1, tmp0_other_with_cast.f3e_1))
|
|
64761
64872
|
return false;
|
|
64762
|
-
if (!
|
|
64763
|
-
return false;
|
|
64764
|
-
if (!equals(this.h3e_1, tmp0_other_with_cast.h3e_1))
|
|
64765
|
-
return false;
|
|
64766
|
-
if (!(this.i3e_1 === tmp0_other_with_cast.i3e_1))
|
|
64873
|
+
if (!(this.g3e_1 === tmp0_other_with_cast.g3e_1))
|
|
64767
64874
|
return false;
|
|
64768
64875
|
return true;
|
|
64769
64876
|
};
|
|
64770
64877
|
RTCStatsJS.$metadata$ = classMeta('RTCStatsJS');
|
|
64771
64878
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvPackets', {
|
|
64772
64879
|
configurable: true,
|
|
64773
|
-
get: RTCStatsJS.prototype.
|
|
64880
|
+
get: RTCStatsJS.prototype.h3e
|
|
64774
64881
|
});
|
|
64775
64882
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvPacketsLost', {
|
|
64776
64883
|
configurable: true,
|
|
64777
|
-
get: RTCStatsJS.prototype.
|
|
64884
|
+
get: RTCStatsJS.prototype.i3e
|
|
64778
64885
|
});
|
|
64779
64886
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvBytes', {
|
|
64780
64887
|
configurable: true,
|
|
64781
|
-
get: RTCStatsJS.prototype.
|
|
64888
|
+
get: RTCStatsJS.prototype.j3e
|
|
64782
64889
|
});
|
|
64783
64890
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvJitter', {
|
|
64784
64891
|
configurable: true,
|
|
64785
|
-
get: RTCStatsJS.prototype.
|
|
64892
|
+
get: RTCStatsJS.prototype.k3e
|
|
64786
64893
|
});
|
|
64787
64894
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentPackets', {
|
|
64788
64895
|
configurable: true,
|
|
64789
|
-
get: RTCStatsJS.prototype.
|
|
64896
|
+
get: RTCStatsJS.prototype.l3e
|
|
64790
64897
|
});
|
|
64791
64898
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentBytes', {
|
|
64792
64899
|
configurable: true,
|
|
64793
|
-
get: RTCStatsJS.prototype.
|
|
64900
|
+
get: RTCStatsJS.prototype.m3e
|
|
64794
64901
|
});
|
|
64795
64902
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentPacketsLost', {
|
|
64796
64903
|
configurable: true,
|
|
64797
|
-
get: RTCStatsJS.prototype.
|
|
64904
|
+
get: RTCStatsJS.prototype.n3e
|
|
64798
64905
|
});
|
|
64799
64906
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRtt', {
|
|
64800
64907
|
configurable: true,
|
|
64801
|
-
get: RTCStatsJS.prototype.
|
|
64908
|
+
get: RTCStatsJS.prototype.o3e
|
|
64802
64909
|
});
|
|
64803
64910
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentJitter', {
|
|
64804
64911
|
configurable: true,
|
|
64805
|
-
get: RTCStatsJS.prototype.
|
|
64912
|
+
get: RTCStatsJS.prototype.p3e
|
|
64806
64913
|
});
|
|
64807
64914
|
Object.defineProperty(RTCStatsJS.prototype, 'legId', {
|
|
64808
64915
|
configurable: true,
|
|
@@ -64813,9 +64920,9 @@ function requireClientsdkClientcore () {
|
|
|
64813
64920
|
}
|
|
64814
64921
|
function getCancelReason(reason) {
|
|
64815
64922
|
if (reason === 'RejectedElsewhere')
|
|
64816
|
-
return
|
|
64923
|
+
return CancelReasonJS_RejectedElsewhere_getInstance();
|
|
64817
64924
|
if (reason === 'AnsweredElsewhere')
|
|
64818
|
-
return
|
|
64925
|
+
return CancelReasonJS_AnsweredElsewhere_getInstance();
|
|
64819
64926
|
if (reason === 'RemoteTimeout')
|
|
64820
64927
|
return CancelReasonJS_RemoteTimeout_getInstance();
|
|
64821
64928
|
return CancelReasonJS_RemoteCancel_getInstance();
|
|
@@ -64840,7 +64947,7 @@ function requireClientsdkClientcore () {
|
|
|
64840
64947
|
};
|
|
64841
64948
|
}
|
|
64842
64949
|
function HttpClientJSAdapter$1($js) {
|
|
64843
|
-
this.
|
|
64950
|
+
this.s3e_1 = $js;
|
|
64844
64951
|
}
|
|
64845
64952
|
HttpClientJSAdapter$1.prototype.v2u = function (verb, url, headers, body, callback) {
|
|
64846
64953
|
var tmp = verb.toString();
|
|
@@ -64852,7 +64959,7 @@ function requireClientsdkClientcore () {
|
|
|
64852
64959
|
tmp$ret$0 = fromMap(JSON, headers);
|
|
64853
64960
|
tmp$ret$1 = tmp$ret$0;
|
|
64854
64961
|
var tmp_0 = tmp$ret$1;
|
|
64855
|
-
this.
|
|
64962
|
+
this.s3e_1.request(tmp, url, tmp_0, body, HttpClientJSAdapter$o$request$lambda(callback));
|
|
64856
64963
|
};
|
|
64857
64964
|
HttpClientJSAdapter$1.$metadata$ = classMeta(undefined, [HTTPClient]);
|
|
64858
64965
|
function SocketClientJSAdapter$o$emit$lambda($callback) {
|
|
@@ -64876,14 +64983,14 @@ function requireClientsdkClientcore () {
|
|
|
64876
64983
|
};
|
|
64877
64984
|
}
|
|
64878
64985
|
function SocketClientJSAdapter$adapter$1($js) {
|
|
64879
|
-
this.
|
|
64880
|
-
this.
|
|
64986
|
+
this.u3e_1 = $js;
|
|
64987
|
+
this.t3e_1 = null;
|
|
64881
64988
|
}
|
|
64882
64989
|
SocketClientJSAdapter$adapter$1.prototype.y2u = function (_set____db54di) {
|
|
64883
|
-
this.
|
|
64990
|
+
this.t3e_1 = _set____db54di;
|
|
64884
64991
|
};
|
|
64885
|
-
SocketClientJSAdapter$adapter$1.prototype.
|
|
64886
|
-
return this.
|
|
64992
|
+
SocketClientJSAdapter$adapter$1.prototype.v3e = function () {
|
|
64993
|
+
return this.t3e_1;
|
|
64887
64994
|
};
|
|
64888
64995
|
SocketClientJSAdapter$adapter$1.prototype.z2u = function (type, msg, callback) {
|
|
64889
64996
|
var tmp0_safe_receiver = msg;
|
|
@@ -64901,26 +65008,26 @@ function requireClientsdkClientcore () {
|
|
|
64901
65008
|
tmp = tmp$ret$1;
|
|
64902
65009
|
}
|
|
64903
65010
|
var tmp_0 = tmp;
|
|
64904
|
-
this.
|
|
65011
|
+
this.u3e_1.emit(type, tmp_0, SocketClientJSAdapter$o$emit$lambda(callback));
|
|
64905
65012
|
};
|
|
64906
65013
|
SocketClientJSAdapter$adapter$1.prototype.a2v = function (host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, token, session_id, query) {
|
|
64907
|
-
this.
|
|
65014
|
+
this.u3e_1.connect(host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, query);
|
|
64908
65015
|
};
|
|
64909
65016
|
SocketClientJSAdapter$adapter$1.prototype.b2v = function () {
|
|
64910
|
-
this.
|
|
65017
|
+
this.u3e_1.disconnect();
|
|
64911
65018
|
};
|
|
64912
65019
|
SocketClientJSAdapter$adapter$1.prototype.c2v = function (token) {
|
|
64913
|
-
this.
|
|
65020
|
+
this.u3e_1.setConnectParamsSocketConfig(token);
|
|
64914
65021
|
};
|
|
64915
65022
|
SocketClientJSAdapter$adapter$1.prototype.d2v = function (milliseconds, callback) {
|
|
64916
|
-
this.
|
|
65023
|
+
this.u3e_1.startVerifyResponseTimer(milliseconds, callback);
|
|
64917
65024
|
};
|
|
64918
65025
|
SocketClientJSAdapter$adapter$1.$metadata$ = classMeta(undefined, [SocketClient]);
|
|
64919
65026
|
function SocketClientJSAdapter$1($adapter) {
|
|
64920
|
-
this.
|
|
65027
|
+
this.w3e_1 = $adapter;
|
|
64921
65028
|
}
|
|
64922
65029
|
SocketClientJSAdapter$1.prototype.didReceiveNewSocketEvent = function (type, body) {
|
|
64923
|
-
var tmp0_safe_receiver = this.
|
|
65030
|
+
var tmp0_safe_receiver = this.w3e_1.t3e_1;
|
|
64924
65031
|
if (tmp0_safe_receiver == null)
|
|
64925
65032
|
null;
|
|
64926
65033
|
else {
|
|
@@ -64958,7 +65065,7 @@ function requireClientsdkClientcore () {
|
|
|
64958
65065
|
var tmp;
|
|
64959
65066
|
switch (tmp0_subject_0) {
|
|
64960
65067
|
case 'NXMCORE_REASON_SERVER_DISCONNECTED':
|
|
64961
|
-
var tmp1_safe_receiver_0 = this.
|
|
65068
|
+
var tmp1_safe_receiver_0 = this.w3e_1.t3e_1;
|
|
64962
65069
|
var tmp_0;
|
|
64963
65070
|
if (tmp1_safe_receiver_0 == null) {
|
|
64964
65071
|
tmp_0 = null;
|
|
@@ -64970,7 +65077,7 @@ function requireClientsdkClientcore () {
|
|
|
64970
65077
|
tmp = tmp_0;
|
|
64971
65078
|
break;
|
|
64972
65079
|
case 'NXMCORE_REASON_CLIENT_DISCONNECTED':
|
|
64973
|
-
var tmp2_safe_receiver = this.
|
|
65080
|
+
var tmp2_safe_receiver = this.w3e_1.t3e_1;
|
|
64974
65081
|
var tmp_1;
|
|
64975
65082
|
if (tmp2_safe_receiver == null) {
|
|
64976
65083
|
tmp_1 = null;
|
|
@@ -64982,7 +65089,7 @@ function requireClientsdkClientcore () {
|
|
|
64982
65089
|
tmp = tmp_1;
|
|
64983
65090
|
break;
|
|
64984
65091
|
case 'NXMCORE_CLIENT_NETWORK_ERROR':
|
|
64985
|
-
var tmp3_safe_receiver = this.
|
|
65092
|
+
var tmp3_safe_receiver = this.w3e_1.t3e_1;
|
|
64986
65093
|
var tmp_2;
|
|
64987
65094
|
if (tmp3_safe_receiver == null) {
|
|
64988
65095
|
tmp_2 = null;
|
|
@@ -64994,7 +65101,7 @@ function requireClientsdkClientcore () {
|
|
|
64994
65101
|
tmp = tmp_2;
|
|
64995
65102
|
break;
|
|
64996
65103
|
case 'NXMCORE_REASON_PING_TIMEOUT':
|
|
64997
|
-
var tmp4_safe_receiver = this.
|
|
65104
|
+
var tmp4_safe_receiver = this.w3e_1.t3e_1;
|
|
64998
65105
|
var tmp_3;
|
|
64999
65106
|
if (tmp4_safe_receiver == null) {
|
|
65000
65107
|
tmp_3 = null;
|
|
@@ -65006,7 +65113,7 @@ function requireClientsdkClientcore () {
|
|
|
65006
65113
|
tmp = tmp_3;
|
|
65007
65114
|
break;
|
|
65008
65115
|
default:
|
|
65009
|
-
var tmp5_safe_receiver = this.
|
|
65116
|
+
var tmp5_safe_receiver = this.w3e_1.t3e_1;
|
|
65010
65117
|
var tmp_4;
|
|
65011
65118
|
if (tmp5_safe_receiver == null) {
|
|
65012
65119
|
tmp_4 = null;
|
|
@@ -65024,43 +65131,43 @@ function requireClientsdkClientcore () {
|
|
|
65024
65131
|
};
|
|
65025
65132
|
SocketClientJSAdapter$1.$metadata$ = classMeta();
|
|
65026
65133
|
function MediaClientJSAdapter$adapter$1($js) {
|
|
65027
|
-
this.
|
|
65028
|
-
this.
|
|
65134
|
+
this.y3e_1 = $js;
|
|
65135
|
+
this.x3e_1 = null;
|
|
65029
65136
|
}
|
|
65030
65137
|
MediaClientJSAdapter$adapter$1.prototype.g2v = function (_set____db54di) {
|
|
65031
|
-
this.
|
|
65138
|
+
this.x3e_1 = _set____db54di;
|
|
65032
65139
|
};
|
|
65033
65140
|
MediaClientJSAdapter$adapter$1.prototype.h2v = function (closure) {
|
|
65034
|
-
this.
|
|
65141
|
+
this.y3e_1.enableMediaOutbound(closure);
|
|
65035
65142
|
};
|
|
65036
|
-
MediaClientJSAdapter$adapter$1.prototype.
|
|
65037
|
-
this.
|
|
65143
|
+
MediaClientJSAdapter$adapter$1.prototype.z3e = function (closure, offerSDP, rtcId) {
|
|
65144
|
+
this.y3e_1.enableMediaInbound(closure, offerSDP, rtcId);
|
|
65038
65145
|
};
|
|
65039
65146
|
MediaClientJSAdapter$adapter$1.prototype.i2v = function (closure, offerSDP, rtcId) {
|
|
65040
|
-
return this.
|
|
65147
|
+
return this.z3e(closure, offerSDP, rtcId);
|
|
65041
65148
|
};
|
|
65042
65149
|
MediaClientJSAdapter$adapter$1.prototype.j2v = function (id, sdp) {
|
|
65043
|
-
this.
|
|
65150
|
+
this.y3e_1.processAnswer(id, sdp);
|
|
65044
65151
|
};
|
|
65045
65152
|
MediaClientJSAdapter$adapter$1.prototype.k2v = function (id) {
|
|
65046
|
-
this.
|
|
65153
|
+
this.y3e_1.disableMedia(id);
|
|
65047
65154
|
};
|
|
65048
65155
|
MediaClientJSAdapter$adapter$1.prototype.l2v = function (id) {
|
|
65049
|
-
this.
|
|
65156
|
+
this.y3e_1.mute(id);
|
|
65050
65157
|
};
|
|
65051
65158
|
MediaClientJSAdapter$adapter$1.prototype.m2v = function (id) {
|
|
65052
|
-
this.
|
|
65159
|
+
this.y3e_1.unmute(id);
|
|
65053
65160
|
};
|
|
65054
65161
|
MediaClientJSAdapter$adapter$1.prototype.n2v = function (interval, mediaId) {
|
|
65055
|
-
this.
|
|
65162
|
+
this.y3e_1.enableRtcStatsCollection(interval, mediaId);
|
|
65056
65163
|
};
|
|
65057
65164
|
MediaClientJSAdapter$adapter$1.$metadata$ = classMeta(undefined, [MediaClient]);
|
|
65058
65165
|
function MediaClientJSAdapter$1($adapter) {
|
|
65059
|
-
this.
|
|
65166
|
+
this.a3f_1 = $adapter;
|
|
65060
65167
|
}
|
|
65061
65168
|
MediaClientJSAdapter$1.prototype.onRtcStats = function (rtcStats) {
|
|
65062
|
-
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
|
|
65063
|
-
var tmp0_safe_receiver = this.
|
|
65169
|
+
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);
|
|
65170
|
+
var tmp0_safe_receiver = this.a3f_1.x3e_1;
|
|
65064
65171
|
if (tmp0_safe_receiver == null)
|
|
65065
65172
|
null;
|
|
65066
65173
|
else {
|
|
@@ -65072,13 +65179,13 @@ function requireClientsdkClientcore () {
|
|
|
65072
65179
|
CancelReasonJS_initEntries();
|
|
65073
65180
|
return CancelReasonJS_RemoteCancel_instance;
|
|
65074
65181
|
}
|
|
65075
|
-
function
|
|
65182
|
+
function CancelReasonJS_AnsweredElsewhere_getInstance() {
|
|
65076
65183
|
CancelReasonJS_initEntries();
|
|
65077
|
-
return
|
|
65184
|
+
return CancelReasonJS_AnsweredElsewhere_instance;
|
|
65078
65185
|
}
|
|
65079
|
-
function
|
|
65186
|
+
function CancelReasonJS_RejectedElsewhere_getInstance() {
|
|
65080
65187
|
CancelReasonJS_initEntries();
|
|
65081
|
-
return
|
|
65188
|
+
return CancelReasonJS_RejectedElsewhere_instance;
|
|
65082
65189
|
}
|
|
65083
65190
|
function CancelReasonJS_RemoteTimeout_getInstance() {
|
|
65084
65191
|
CancelReasonJS_initEntries();
|
|
@@ -65550,13 +65657,13 @@ function requireClientsdkClientcore () {
|
|
|
65550
65657
|
configurable: true,
|
|
65551
65658
|
get: CancelReasonJS_RemoteCancel_getInstance
|
|
65552
65659
|
});
|
|
65553
|
-
Object.defineProperty($vonage.CancelReasonJS, '
|
|
65660
|
+
Object.defineProperty($vonage.CancelReasonJS, 'AnsweredElsewhere', {
|
|
65554
65661
|
configurable: true,
|
|
65555
|
-
get:
|
|
65662
|
+
get: CancelReasonJS_AnsweredElsewhere_getInstance
|
|
65556
65663
|
});
|
|
65557
|
-
Object.defineProperty($vonage.CancelReasonJS, '
|
|
65664
|
+
Object.defineProperty($vonage.CancelReasonJS, 'RejectedElsewhere', {
|
|
65558
65665
|
configurable: true,
|
|
65559
|
-
get:
|
|
65666
|
+
get: CancelReasonJS_RejectedElsewhere_getInstance
|
|
65560
65667
|
});
|
|
65561
65668
|
Object.defineProperty($vonage.CancelReasonJS, 'RemoteTimeout', {
|
|
65562
65669
|
configurable: true,
|
|
@@ -66084,6 +66191,7 @@ const CSErrorCodes = clientsdkClientcore_jsExports.vonage.CSErrorCodesJS;
|
|
|
66084
66191
|
const SessionErrorCodes = clientsdkClientcore_jsExports.vonage.SessionErrorCodesJS;
|
|
66085
66192
|
|
|
66086
66193
|
const CancelReason = clientsdkClientcore_jsExports.vonage.CancelReasonJS;
|
|
66194
|
+
const HangupReason = clientsdkClientcore_jsExports.vonage.HangupReasonJS;
|
|
66087
66195
|
const SessionErrorReason = clientsdkClientcore_jsExports.vonage.SessionErrorReasonJS;
|
|
66088
66196
|
const LegStatus = clientsdkClientcore_jsExports.vonage.LegStatusJS;
|
|
66089
66197
|
const setVonageClientLoggingLevel = setDefaultLoggingLevel;
|
|
@@ -66124,6 +66232,7 @@ exports.ChannelType = ChannelType;
|
|
|
66124
66232
|
exports.ClientConfig = ClientConfig;
|
|
66125
66233
|
exports.ConfigRegion = ConfigRegion;
|
|
66126
66234
|
exports.ConversationState = ConversationState;
|
|
66235
|
+
exports.HangupReason = HangupReason;
|
|
66127
66236
|
exports.LegStatus = LegStatus;
|
|
66128
66237
|
exports.LoggingLevel = LoggingLevel;
|
|
66129
66238
|
exports.MemberInvitedEvent = MemberInvitedEvent;
|