@vonage/client-sdk 1.0.0 → 1.0.1-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/VonageClient.d.ts +2 -0
- package/dist/client/index.cjs +1133 -1036
- package/dist/client/index.mjs +1133 -1037
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +5 -5
- package/dist/vonageClientSDK.js +1107 -1017
- package/dist/vonageClientSDK.min.js +2 -2
- package/dist/vonageClientSDK.min.mjs +2 -2
- package/dist/vonageClientSDK.mjs +1107 -1018
- package/package.json +2 -1
package/dist/client/index.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,162 @@ 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) ? element.s1().w2p_1 : false;
|
|
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
|
+
_this__u8e3s4.b1d(Action_init_$Create$(new InviteCleanup(element_0.q1())));
|
|
57141
|
+
}
|
|
57142
|
+
tmp$ret$7 = Unit_getInstance();
|
|
57143
|
+
}
|
|
57144
|
+
var tmp1_safe_receiver = _this__u8e3s4.z2f(getKClass(CallReducer));
|
|
57145
|
+
if (tmp1_safe_receiver == null)
|
|
57146
|
+
null;
|
|
57147
|
+
else {
|
|
57148
|
+
var tmp$ret$19;
|
|
57149
|
+
// Inline function 'kotlin.run' call
|
|
57150
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57151
|
+
var tmp$ret$17;
|
|
57152
|
+
// Inline function 'kotlin.collections.filter' call
|
|
57153
|
+
var tmp0_filter_0 = tmp1_safe_receiver.m2p_1;
|
|
57154
|
+
var tmp$ret$16;
|
|
57155
|
+
// Inline function 'kotlin.collections.filterTo' call
|
|
57156
|
+
var tmp0_filterTo_0 = LinkedHashMap_init_$Create$();
|
|
57157
|
+
var tmp$ret$8;
|
|
57158
|
+
// Inline function 'kotlin.collections.iterator' call
|
|
57159
|
+
tmp$ret$8 = tmp0_filter_0.q().g();
|
|
57160
|
+
var tmp0_iterator_1 = tmp$ret$8;
|
|
57161
|
+
while (tmp0_iterator_1.h()) {
|
|
57162
|
+
var element_1 = tmp0_iterator_1.i();
|
|
57163
|
+
var tmp$ret$15;
|
|
57164
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57165
|
+
var tmp$ret$9;
|
|
57166
|
+
// Inline function 'kotlin.collections.component1' call
|
|
57167
|
+
tmp$ret$9 = element_1.q1();
|
|
57168
|
+
var conversationId = tmp$ret$9;
|
|
57169
|
+
var tmp$ret$10;
|
|
57170
|
+
// Inline function 'kotlin.collections.component2' call
|
|
57171
|
+
tmp$ret$10 = element_1.s1();
|
|
57172
|
+
var callId = tmp$ret$10;
|
|
57173
|
+
var tmp_0;
|
|
57174
|
+
var tmp0_safe_receiver_1 = filteredLegId;
|
|
57175
|
+
var tmp_1;
|
|
57176
|
+
if (tmp0_safe_receiver_1 == null) {
|
|
57177
|
+
tmp_1 = null;
|
|
57178
|
+
} else {
|
|
57179
|
+
var tmp$ret$12;
|
|
57180
|
+
// Inline function 'kotlin.let' call
|
|
57181
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57182
|
+
var tmp$ret$11;
|
|
57183
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>.<anonymous>' call
|
|
57184
|
+
tmp$ret$11 = !(callId === tmp0_safe_receiver_1);
|
|
57185
|
+
tmp$ret$12 = tmp$ret$11;
|
|
57186
|
+
tmp_1 = tmp$ret$12;
|
|
57187
|
+
}
|
|
57188
|
+
var tmp1_elvis_lhs_0 = tmp_1;
|
|
57189
|
+
if (tmp1_elvis_lhs_0 == null ? true : tmp1_elvis_lhs_0) {
|
|
57190
|
+
var tmp2_safe_receiver = filteredConversationId;
|
|
57191
|
+
var tmp_2;
|
|
57192
|
+
if (tmp2_safe_receiver == null) {
|
|
57193
|
+
tmp_2 = null;
|
|
57194
|
+
} else {
|
|
57195
|
+
var tmp$ret$14;
|
|
57196
|
+
// Inline function 'kotlin.let' call
|
|
57197
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57198
|
+
var tmp$ret$13;
|
|
57199
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>.<anonymous>' call
|
|
57200
|
+
tmp$ret$13 = !(tmp2_safe_receiver === conversationId);
|
|
57201
|
+
tmp$ret$14 = tmp$ret$13;
|
|
57202
|
+
tmp_2 = tmp$ret$14;
|
|
57203
|
+
}
|
|
57204
|
+
var tmp3_elvis_lhs = tmp_2;
|
|
57205
|
+
tmp_0 = tmp3_elvis_lhs == null ? true : tmp3_elvis_lhs;
|
|
57206
|
+
} else {
|
|
57207
|
+
tmp_0 = false;
|
|
57208
|
+
}
|
|
57209
|
+
tmp$ret$15 = tmp_0;
|
|
57210
|
+
if (tmp$ret$15) {
|
|
57211
|
+
tmp0_filterTo_0.l(element_1.q1(), element_1.s1());
|
|
57212
|
+
}
|
|
57213
|
+
}
|
|
57214
|
+
tmp$ret$16 = tmp0_filterTo_0;
|
|
57215
|
+
tmp$ret$17 = tmp$ret$16;
|
|
57216
|
+
var tmp1_forEach_0 = tmp$ret$17.i2();
|
|
57217
|
+
var tmp0_iterator_2 = tmp1_forEach_0.g();
|
|
57218
|
+
while (tmp0_iterator_2.h()) {
|
|
57219
|
+
var element_2 = tmp0_iterator_2.i();
|
|
57220
|
+
// Inline function 'com.vonage.clientcore.core.reducers.cleanupReducers.<anonymous>.<anonymous>' call
|
|
57221
|
+
var tmp$ret$18;
|
|
57222
|
+
// Inline function 'kotlin.let' call
|
|
57223
|
+
var tmp0_safe_receiver_2 = tmp1_safe_receiver.l2p_1.g2(element_2);
|
|
57224
|
+
var tmp1_safe_receiver_0 = tmp0_safe_receiver_2 == null ? null : tmp0_safe_receiver_2.b2p_1;
|
|
57225
|
+
var tmp0_let = tmp1_safe_receiver_0 == null ? null : tmp1_safe_receiver_0.s1();
|
|
57226
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
57227
|
+
var tmp_3;
|
|
57228
|
+
if (tmp0_let instanceof Completed) {
|
|
57229
|
+
_this__u8e3s4.b1d(Action_init_$Create$(new CallCleanup(element_2)));
|
|
57230
|
+
tmp_3 = Unit_getInstance();
|
|
57231
|
+
}
|
|
57232
|
+
tmp$ret$18 = tmp_3;
|
|
57233
|
+
}
|
|
57234
|
+
tmp$ret$19 = Unit_getInstance();
|
|
57235
|
+
}
|
|
57236
|
+
}
|
|
57237
|
+
function cleanupReducers$default(_this__u8e3s4, filteredLegId, filteredConversationId, $mask0, $handler) {
|
|
57238
|
+
if (!(($mask0 & 1) === 0))
|
|
57239
|
+
filteredLegId = null;
|
|
57240
|
+
if (!(($mask0 & 2) === 0))
|
|
57241
|
+
filteredConversationId = null;
|
|
57242
|
+
return cleanupReducers(_this__u8e3s4, filteredLegId, filteredConversationId);
|
|
57243
|
+
}
|
|
57129
57244
|
function SetConfig(wsHost, wsPath, httpHost, enableWsInvites) {
|
|
57130
57245
|
this.f2y_1 = wsHost;
|
|
57131
57246
|
this.g2y_1 = wsPath;
|
|
@@ -57230,36 +57345,36 @@ function requireClientsdkClientcore () {
|
|
|
57230
57345
|
return ConfigState_init_$Init$(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites, $mask0, $marker, Object.create(ConfigState.prototype));
|
|
57231
57346
|
}
|
|
57232
57347
|
function ConfigState(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites) {
|
|
57233
|
-
this.
|
|
57234
|
-
this.
|
|
57235
|
-
this.
|
|
57236
|
-
this.
|
|
57237
|
-
this.
|
|
57348
|
+
this.m2q_1 = wsHost;
|
|
57349
|
+
this.n2q_1 = wsPath;
|
|
57350
|
+
this.o2q_1 = httpHost;
|
|
57351
|
+
this.p2q_1 = rtcStatsHost;
|
|
57352
|
+
this.q2q_1 = enableWsInvites;
|
|
57238
57353
|
}
|
|
57239
57354
|
ConfigState.prototype.z2y = function (_set____db54di) {
|
|
57240
|
-
this.
|
|
57355
|
+
this.m2q_1 = _set____db54di;
|
|
57241
57356
|
};
|
|
57242
57357
|
ConfigState.prototype.a2z = function (_set____db54di) {
|
|
57243
|
-
this.
|
|
57358
|
+
this.n2q_1 = _set____db54di;
|
|
57244
57359
|
};
|
|
57245
57360
|
ConfigState.prototype.b2z = function (_set____db54di) {
|
|
57246
|
-
this.
|
|
57361
|
+
this.o2q_1 = _set____db54di;
|
|
57247
57362
|
};
|
|
57248
57363
|
ConfigState.prototype.c2z = function (_set____db54di) {
|
|
57249
|
-
this.
|
|
57364
|
+
this.q2q_1 = _set____db54di;
|
|
57250
57365
|
};
|
|
57251
57366
|
ConfigState.prototype.m2y = function () {
|
|
57252
|
-
return this.
|
|
57367
|
+
return this.q2q_1;
|
|
57253
57368
|
};
|
|
57254
57369
|
ConfigState.prototype.v2y = function (action) {
|
|
57255
57370
|
var tmp$ret$0;
|
|
57256
57371
|
// Inline function 'kotlin.apply' call
|
|
57257
57372
|
// Inline function 'kotlin.contracts.contract' call
|
|
57258
57373
|
// Inline function 'com.vonage.clientcore.core.reducers.ConfigState.update.<anonymous>' call
|
|
57259
|
-
this.
|
|
57260
|
-
this.
|
|
57261
|
-
this.
|
|
57262
|
-
this.
|
|
57374
|
+
this.o2q_1 = action.h2y_1;
|
|
57375
|
+
this.m2q_1 = action.f2y_1;
|
|
57376
|
+
this.n2q_1 = action.g2y_1;
|
|
57377
|
+
this.q2q_1 = action.i2y_1;
|
|
57263
57378
|
tmp$ret$0 = this;
|
|
57264
57379
|
return tmp$ret$0;
|
|
57265
57380
|
};
|
|
@@ -57268,26 +57383,26 @@ function requireClientsdkClientcore () {
|
|
|
57268
57383
|
};
|
|
57269
57384
|
ConfigState.prototype.t2y = function (wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites, $mask0, $handler) {
|
|
57270
57385
|
if (!(($mask0 & 1) === 0))
|
|
57271
|
-
wsHost = this.
|
|
57386
|
+
wsHost = this.m2q_1;
|
|
57272
57387
|
if (!(($mask0 & 2) === 0))
|
|
57273
|
-
wsPath = this.
|
|
57388
|
+
wsPath = this.n2q_1;
|
|
57274
57389
|
if (!(($mask0 & 4) === 0))
|
|
57275
|
-
httpHost = this.
|
|
57390
|
+
httpHost = this.o2q_1;
|
|
57276
57391
|
if (!(($mask0 & 8) === 0))
|
|
57277
|
-
rtcStatsHost = this.
|
|
57392
|
+
rtcStatsHost = this.p2q_1;
|
|
57278
57393
|
if (!(($mask0 & 16) === 0))
|
|
57279
|
-
enableWsInvites = this.
|
|
57394
|
+
enableWsInvites = this.q2q_1;
|
|
57280
57395
|
return this.d2z(wsHost, wsPath, httpHost, rtcStatsHost, enableWsInvites);
|
|
57281
57396
|
};
|
|
57282
57397
|
ConfigState.prototype.toString = function () {
|
|
57283
|
-
return 'ConfigState(wsHost=' + this.
|
|
57398
|
+
return 'ConfigState(wsHost=' + this.m2q_1 + ', wsPath=' + this.n2q_1 + ', httpHost=' + this.o2q_1 + ', rtcStatsHost=' + this.p2q_1 + ', enableWsInvites=' + this.q2q_1 + ')';
|
|
57284
57399
|
};
|
|
57285
57400
|
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.
|
|
57401
|
+
var result = this.m2q_1 == null ? 0 : getStringHashCode(this.m2q_1);
|
|
57402
|
+
result = imul(result, 31) + (this.n2q_1 == null ? 0 : getStringHashCode(this.n2q_1)) | 0;
|
|
57403
|
+
result = imul(result, 31) + (this.o2q_1 == null ? 0 : getStringHashCode(this.o2q_1)) | 0;
|
|
57404
|
+
result = imul(result, 31) + (this.p2q_1 == null ? 0 : getStringHashCode(this.p2q_1)) | 0;
|
|
57405
|
+
result = imul(result, 31) + (this.q2q_1 | 0) | 0;
|
|
57291
57406
|
return result;
|
|
57292
57407
|
};
|
|
57293
57408
|
ConfigState.prototype.equals = function (other) {
|
|
@@ -57296,15 +57411,15 @@ function requireClientsdkClientcore () {
|
|
|
57296
57411
|
if (!(other instanceof ConfigState))
|
|
57297
57412
|
return false;
|
|
57298
57413
|
var tmp0_other_with_cast = other instanceof ConfigState ? other : THROW_CCE();
|
|
57299
|
-
if (!(this.
|
|
57414
|
+
if (!(this.m2q_1 == tmp0_other_with_cast.m2q_1))
|
|
57300
57415
|
return false;
|
|
57301
|
-
if (!(this.
|
|
57416
|
+
if (!(this.n2q_1 == tmp0_other_with_cast.n2q_1))
|
|
57302
57417
|
return false;
|
|
57303
|
-
if (!(this.
|
|
57418
|
+
if (!(this.o2q_1 == tmp0_other_with_cast.o2q_1))
|
|
57304
57419
|
return false;
|
|
57305
|
-
if (!(this.
|
|
57420
|
+
if (!(this.p2q_1 == tmp0_other_with_cast.p2q_1))
|
|
57306
57421
|
return false;
|
|
57307
|
-
if (!(this.
|
|
57422
|
+
if (!(this.q2q_1 === tmp0_other_with_cast.q2q_1))
|
|
57308
57423
|
return false;
|
|
57309
57424
|
return true;
|
|
57310
57425
|
};
|
|
@@ -58089,7 +58204,7 @@ function requireClientsdkClientcore () {
|
|
|
58089
58204
|
Call.prototype.e31 = function (isReconnect, from, customData, id, memberState, legState, mediaState, localMedia) {
|
|
58090
58205
|
return new Call(isReconnect, from, customData, id, memberState, legState, mediaState, localMedia);
|
|
58091
58206
|
};
|
|
58092
|
-
Call.prototype.
|
|
58207
|
+
Call.prototype.r2q = function (isReconnect, from, customData, id, memberState, legState, mediaState, localMedia, $mask0, $handler) {
|
|
58093
58208
|
if (!(($mask0 & 1) === 0))
|
|
58094
58209
|
isReconnect = this.w2o_1;
|
|
58095
58210
|
if (!(($mask0 & 2) === 0))
|
|
@@ -58253,22 +58368,22 @@ function requireClientsdkClientcore () {
|
|
|
58253
58368
|
var tmp3_subject = action.o1d_1;
|
|
58254
58369
|
var tmp_1;
|
|
58255
58370
|
if (tmp3_subject instanceof CallMemberMediaTimeout) {
|
|
58256
|
-
tmp_1 = state.d32(action.o1d_1, action.o1d_1.
|
|
58371
|
+
tmp_1 = state.d32(action.o1d_1, action.o1d_1.w2r_1);
|
|
58257
58372
|
} else {
|
|
58258
58373
|
if (tmp3_subject instanceof CallKnockingRequestFailure) {
|
|
58259
|
-
tmp_1 = state.c32(action.o1d_1, action.o1d_1.
|
|
58374
|
+
tmp_1 = state.c32(action.o1d_1, action.o1d_1.l2r_1);
|
|
58260
58375
|
} else {
|
|
58261
58376
|
if (tmp3_subject instanceof CallCreate) {
|
|
58262
|
-
tmp_1 = state.b32(action.o1d_1, action.o1d_1.
|
|
58377
|
+
tmp_1 = state.b32(action.o1d_1, action.o1d_1.p2r_1);
|
|
58263
58378
|
} else {
|
|
58264
58379
|
if (tmp3_subject instanceof CallReconnect) {
|
|
58265
|
-
tmp_1 = state.a32(action.o1d_1, action.o1d_1.
|
|
58380
|
+
tmp_1 = state.a32(action.o1d_1, action.o1d_1.z2q_1);
|
|
58266
58381
|
} else {
|
|
58267
58382
|
if (tmp3_subject instanceof CallCleanup) {
|
|
58268
|
-
tmp_1 = state.z31(action.o1d_1, action.o1d_1.
|
|
58383
|
+
tmp_1 = state.z31(action.o1d_1, action.o1d_1.x2q_1);
|
|
58269
58384
|
} else {
|
|
58270
58385
|
if (tmp3_subject instanceof CallConversationUpdate) {
|
|
58271
|
-
tmp_1 = state.y31(action.o1d_1, action.o1d_1.
|
|
58386
|
+
tmp_1 = state.y31(action.o1d_1, action.o1d_1.n2r_1);
|
|
58272
58387
|
} else {
|
|
58273
58388
|
tmp_1 = null;
|
|
58274
58389
|
}
|
|
@@ -58511,22 +58626,22 @@ function requireClientsdkClientcore () {
|
|
|
58511
58626
|
return function ($this$new) {
|
|
58512
58627
|
var tmp$ret$1;
|
|
58513
58628
|
// Inline function 'kotlin.also' call
|
|
58514
|
-
var tmp0_customData = $action.
|
|
58515
|
-
var tmp1_id = $action.
|
|
58516
|
-
var tmp2_from = $action.
|
|
58629
|
+
var tmp0_customData = $action.s2r_1;
|
|
58630
|
+
var tmp1_id = $action.p2r_1;
|
|
58631
|
+
var tmp2_from = $action.q2r_1;
|
|
58517
58632
|
var tmp0_also = Call_init_$Create$(false, tmp2_from, tmp0_customData, tmp1_id, null, null, null, null, 241, null);
|
|
58518
58633
|
// Inline function 'kotlin.contracts.contract' call
|
|
58519
58634
|
// Inline function 'com.vonage.clientcore.core.reducers.call.CallState.update.<anonymous>.<anonymous>' call
|
|
58520
58635
|
var tmp = tmp0_also;
|
|
58521
|
-
var tmp0_subject = $action.
|
|
58636
|
+
var tmp0_subject = $action.r2r_1;
|
|
58522
58637
|
var tmp0 = tmp0_subject.e4_1;
|
|
58523
58638
|
var tmp_0;
|
|
58524
58639
|
switch (tmp0) {
|
|
58525
58640
|
case 1:
|
|
58526
|
-
tmp_0 = toResolved(tmp0_also.b2p_1, new Started($action.
|
|
58641
|
+
tmp_0 = toResolved(tmp0_also.b2p_1, new Started($action.p2r_1));
|
|
58527
58642
|
break;
|
|
58528
58643
|
case 0:
|
|
58529
|
-
tmp_0 = toResolved(tmp0_also.b2p_1, new Prewarm($action.
|
|
58644
|
+
tmp_0 = toResolved(tmp0_also.b2p_1, new Prewarm($action.p2r_1));
|
|
58530
58645
|
break;
|
|
58531
58646
|
default:
|
|
58532
58647
|
noWhenBranchMatchedException();
|
|
@@ -58534,7 +58649,7 @@ function requireClientsdkClientcore () {
|
|
|
58534
58649
|
}
|
|
58535
58650
|
tmp.b2p_1 = tmp_0;
|
|
58536
58651
|
tmp0_also.c2p_1 = toPending(tmp0_also.c2p_1, Active_getInstance(), $id);
|
|
58537
|
-
var tmp1_safe_receiver = $action.
|
|
58652
|
+
var tmp1_safe_receiver = $action.t2r_1;
|
|
58538
58653
|
if (tmp1_safe_receiver == null)
|
|
58539
58654
|
null;
|
|
58540
58655
|
else {
|
|
@@ -58543,9 +58658,9 @@ function requireClientsdkClientcore () {
|
|
|
58543
58658
|
// Inline function 'kotlin.contracts.contract' call
|
|
58544
58659
|
var tmp_1 = tmp0_also;
|
|
58545
58660
|
var tmp_2 = tmp0_also.a2p_1;
|
|
58546
|
-
tmp_1.a2p_1 = toResolved(tmp_2, Joined_init_$Create$(tmp1_safe_receiver.
|
|
58661
|
+
tmp_1.a2p_1 = toResolved(tmp_2, Joined_init_$Create$(tmp1_safe_receiver.y2r_1, tmp1_safe_receiver.z2r_1, null, 4, null));
|
|
58547
58662
|
var tmp0_set = $this$new.m2p_1;
|
|
58548
|
-
var tmp1_set = tmp1_safe_receiver.
|
|
58663
|
+
var tmp1_set = tmp1_safe_receiver.y2r_1;
|
|
58549
58664
|
tmp0_set.l(tmp1_set, $id);
|
|
58550
58665
|
tmp$ret$0 = Unit_getInstance();
|
|
58551
58666
|
}
|
|
@@ -58555,8 +58670,8 @@ function requireClientsdkClientcore () {
|
|
|
58555
58670
|
}
|
|
58556
58671
|
function CallState$update$lambda_1($action, $id) {
|
|
58557
58672
|
return function ($this$new) {
|
|
58558
|
-
var tmp0_from = new AppChannelEndpoint($action.
|
|
58559
|
-
var tmp = Joined_init_$Create$($action.
|
|
58673
|
+
var tmp0_from = new AppChannelEndpoint($action.a2r_1);
|
|
58674
|
+
var tmp = Joined_init_$Create$($action.b2r_1, $action.a2r_1, null, 4, null);
|
|
58560
58675
|
var tmp1_memberState = Resolved_init_$Create$(tmp, null, 2, null);
|
|
58561
58676
|
return Call_init_$Create$(true, tmp0_from, null, $id, tmp1_memberState, null, null, null, 224, null);
|
|
58562
58677
|
};
|
|
@@ -58567,7 +58682,7 @@ function requireClientsdkClientcore () {
|
|
|
58567
58682
|
var tmp_0 = $this$modify.a2p_1.s1();
|
|
58568
58683
|
if (isInterface(tmp_0, CoreMemberStateWithCid)) {
|
|
58569
58684
|
var tmp_1 = $this$modify.a2p_1.s1();
|
|
58570
|
-
(isInterface(tmp_1, CoreMemberStateWithCid) ? tmp_1 : THROW_CCE()).i32($action.
|
|
58685
|
+
(isInterface(tmp_1, CoreMemberStateWithCid) ? tmp_1 : THROW_CCE()).i32($action.o2r_1);
|
|
58571
58686
|
tmp = Unit_getInstance();
|
|
58572
58687
|
}
|
|
58573
58688
|
return Unit_getInstance();
|
|
@@ -58610,7 +58725,7 @@ function requireClientsdkClientcore () {
|
|
|
58610
58725
|
if (equals(tmp0_subject, Active_getInstance())) {
|
|
58611
58726
|
tmp = Unit_getInstance();
|
|
58612
58727
|
} else {
|
|
58613
|
-
$this$modify.c2p_1 = toFailed($this$modify.c2p_1, $event.
|
|
58728
|
+
$this$modify.c2p_1 = toFailed($this$modify.c2p_1, $event.m2r_1);
|
|
58614
58729
|
tmp = Unit_getInstance();
|
|
58615
58730
|
}
|
|
58616
58731
|
return Unit_getInstance();
|
|
@@ -58690,7 +58805,7 @@ function requireClientsdkClientcore () {
|
|
|
58690
58805
|
var tmp = $this$modify;
|
|
58691
58806
|
var tmp_0 = $this$modify.d2p_1;
|
|
58692
58807
|
var tmp_1 = new Offer($offer.g29_1);
|
|
58693
|
-
tmp.d2p_1 = tmp_0.
|
|
58808
|
+
tmp.d2p_1 = tmp_0.h2t(tmp_1, null, false, 6, null);
|
|
58694
58809
|
return Unit_getInstance();
|
|
58695
58810
|
};
|
|
58696
58811
|
}
|
|
@@ -58699,14 +58814,14 @@ function requireClientsdkClientcore () {
|
|
|
58699
58814
|
var tmp = $this$modify;
|
|
58700
58815
|
var tmp_0 = $this$modify.d2p_1;
|
|
58701
58816
|
var tmp_1 = new Answer($offer.i29_1);
|
|
58702
|
-
tmp.d2p_1 = tmp_0.
|
|
58817
|
+
tmp.d2p_1 = tmp_0.h2t(tmp_1, null, false, 6, null);
|
|
58703
58818
|
return Unit_getInstance();
|
|
58704
58819
|
};
|
|
58705
58820
|
}
|
|
58706
58821
|
function CallState$update$lambda_19($this$modify) {
|
|
58707
58822
|
var tmp = $this$modify;
|
|
58708
58823
|
var tmp_0 = $this$modify.d2p_1;
|
|
58709
|
-
tmp.d2p_1 = tmp_0.
|
|
58824
|
+
tmp.d2p_1 = tmp_0.h2t(null, null, false, 3, null);
|
|
58710
58825
|
return Unit_getInstance();
|
|
58711
58826
|
}
|
|
58712
58827
|
function CallState$update$lambda_20($action) {
|
|
@@ -58714,7 +58829,7 @@ function requireClientsdkClientcore () {
|
|
|
58714
58829
|
var tmp = $this$modify;
|
|
58715
58830
|
var tmp_0 = $this$modify.d2p_1;
|
|
58716
58831
|
var tmp_1 = new Answer($action.j24_1.w24_1);
|
|
58717
|
-
tmp.d2p_1 = tmp_0.
|
|
58832
|
+
tmp.d2p_1 = tmp_0.h2t(null, tmp_1, false, 5, null);
|
|
58718
58833
|
return Unit_getInstance();
|
|
58719
58834
|
};
|
|
58720
58835
|
}
|
|
@@ -59061,28 +59176,28 @@ function requireClientsdkClientcore () {
|
|
|
59061
59176
|
};
|
|
59062
59177
|
Joined.$metadata$ = classMeta('Joined', [CoreMemberStateWithCid]);
|
|
59063
59178
|
function Left(cid, mid, conversationName, reasonCode) {
|
|
59064
|
-
this.
|
|
59065
|
-
this.
|
|
59066
|
-
this.
|
|
59067
|
-
this.
|
|
59179
|
+
this.g2q_1 = cid;
|
|
59180
|
+
this.h2q_1 = mid;
|
|
59181
|
+
this.i2q_1 = conversationName;
|
|
59182
|
+
this.j2q_1 = reasonCode;
|
|
59068
59183
|
}
|
|
59069
59184
|
Left.prototype.w1f = function () {
|
|
59070
|
-
return this.
|
|
59185
|
+
return this.g2q_1;
|
|
59071
59186
|
};
|
|
59072
59187
|
Left.prototype.i32 = function (_set____db54di) {
|
|
59073
|
-
this.
|
|
59188
|
+
this.i2q_1 = _set____db54di;
|
|
59074
59189
|
};
|
|
59075
59190
|
Left.prototype.s2x = function () {
|
|
59076
|
-
return this.
|
|
59191
|
+
return this.i2q_1;
|
|
59077
59192
|
};
|
|
59078
59193
|
Left.prototype.toString = function () {
|
|
59079
|
-
return 'Left(cid=' + this.
|
|
59194
|
+
return 'Left(cid=' + this.g2q_1 + ', mid=' + this.h2q_1 + ', conversationName=' + this.i2q_1 + ', reasonCode=' + this.j2q_1 + ')';
|
|
59080
59195
|
};
|
|
59081
59196
|
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.
|
|
59197
|
+
var result = getStringHashCode(this.g2q_1);
|
|
59198
|
+
result = imul(result, 31) + getStringHashCode(this.h2q_1) | 0;
|
|
59199
|
+
result = imul(result, 31) + (this.i2q_1 == null ? 0 : getStringHashCode(this.i2q_1)) | 0;
|
|
59200
|
+
result = imul(result, 31) + (this.j2q_1 == null ? 0 : getStringHashCode(this.j2q_1)) | 0;
|
|
59086
59201
|
return result;
|
|
59087
59202
|
};
|
|
59088
59203
|
Left.prototype.equals = function (other) {
|
|
@@ -59091,13 +59206,13 @@ function requireClientsdkClientcore () {
|
|
|
59091
59206
|
if (!(other instanceof Left))
|
|
59092
59207
|
return false;
|
|
59093
59208
|
var tmp0_other_with_cast = other instanceof Left ? other : THROW_CCE();
|
|
59094
|
-
if (!(this.
|
|
59209
|
+
if (!(this.g2q_1 === tmp0_other_with_cast.g2q_1))
|
|
59095
59210
|
return false;
|
|
59096
|
-
if (!(this.
|
|
59211
|
+
if (!(this.h2q_1 === tmp0_other_with_cast.h2q_1))
|
|
59097
59212
|
return false;
|
|
59098
|
-
if (!(this.
|
|
59213
|
+
if (!(this.i2q_1 == tmp0_other_with_cast.i2q_1))
|
|
59099
59214
|
return false;
|
|
59100
|
-
if (!(this.
|
|
59215
|
+
if (!(this.j2q_1 == tmp0_other_with_cast.j2q_1))
|
|
59101
59216
|
return false;
|
|
59102
59217
|
return true;
|
|
59103
59218
|
};
|
|
@@ -59137,7 +59252,7 @@ function requireClientsdkClientcore () {
|
|
|
59137
59252
|
Invite.prototype.e1k = function () {
|
|
59138
59253
|
return this.p2p_1;
|
|
59139
59254
|
};
|
|
59140
|
-
Invite.prototype.
|
|
59255
|
+
Invite.prototype.j2r = function () {
|
|
59141
59256
|
return this.q2p_1;
|
|
59142
59257
|
};
|
|
59143
59258
|
Invite.prototype.p32 = function () {
|
|
@@ -59149,7 +59264,7 @@ function requireClientsdkClientcore () {
|
|
|
59149
59264
|
Invite.prototype.r32 = function (from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code) {
|
|
59150
59265
|
return new Invite(from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code);
|
|
59151
59266
|
};
|
|
59152
|
-
Invite.prototype.
|
|
59267
|
+
Invite.prototype.k2q = function (from, rtcId, memberId, conversationId, offer, memberState, isSocketInvite, hangupReceived, FS_SIP_Code, $mask0, $handler) {
|
|
59153
59268
|
if (!(($mask0 & 1) === 0))
|
|
59154
59269
|
from = this.p2p_1;
|
|
59155
59270
|
if (!(($mask0 & 2) === 0))
|
|
@@ -59311,7 +59426,7 @@ function requireClientsdkClientcore () {
|
|
|
59311
59426
|
if (tmp0_subject instanceof InviteCleanup) {
|
|
59312
59427
|
var tmp$ret$5;
|
|
59313
59428
|
// Inline function 'kotlin.let' call
|
|
59314
|
-
var tmp0_let = state.y32(action.o1d_1, action.o1d_1.
|
|
59429
|
+
var tmp0_let = state.y32(action.o1d_1, action.o1d_1.x2r_1);
|
|
59315
59430
|
// Inline function 'kotlin.contracts.contract' call
|
|
59316
59431
|
var tmp$ret$4;
|
|
59317
59432
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteReducer.reduce.<anonymous>' call
|
|
@@ -59371,16 +59486,16 @@ function requireClientsdkClientcore () {
|
|
|
59371
59486
|
return function ($this$new) {
|
|
59372
59487
|
var tmp;
|
|
59373
59488
|
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.
|
|
59489
|
+
var tmp0_safe_receiver = $event.h1y_1.u1y_1.p2t_1;
|
|
59490
|
+
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.k2t_1) === true) {
|
|
59491
|
+
tmp_0 = $event.h1y_1.t1y_1.t2j_1 === $this$new.e2q_1;
|
|
59377
59492
|
} else {
|
|
59378
59493
|
tmp_0 = false;
|
|
59379
59494
|
}
|
|
59380
59495
|
if (tmp_0) {
|
|
59381
59496
|
var remoteDescription = new Offer(ensureNotNull($event.h1y_1.x1y_1));
|
|
59382
59497
|
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.
|
|
59498
|
+
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
59499
|
} else {
|
|
59385
59500
|
tmp = null;
|
|
59386
59501
|
}
|
|
@@ -59390,14 +59505,14 @@ function requireClientsdkClientcore () {
|
|
|
59390
59505
|
function InviteState$update$lambda_0($event) {
|
|
59391
59506
|
return function ($this$new) {
|
|
59392
59507
|
var tmp;
|
|
59393
|
-
var tmp0_safe_receiver = $event.q23_1.u1y_1.
|
|
59394
|
-
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
59508
|
+
var tmp0_safe_receiver = $event.q23_1.u1y_1.p2t_1;
|
|
59509
|
+
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.k2t_1) === true) {
|
|
59395
59510
|
var remoteDescription = new Offer(ensureNotNull($event.q23_1.x1y_1));
|
|
59396
59511
|
var tmp_0 = ensureNotNull($event.q23_1.v1y_1.i2j_1);
|
|
59397
|
-
var tmp1_safe_receiver = $this$new.
|
|
59512
|
+
var tmp1_safe_receiver = $this$new.d2q_1.g2($event.q23_1.v1y_1.e2j_1);
|
|
59398
59513
|
var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.v2p_1;
|
|
59399
59514
|
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.
|
|
59515
|
+
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
59516
|
} else {
|
|
59402
59517
|
tmp = null;
|
|
59403
59518
|
}
|
|
@@ -59407,7 +59522,7 @@ function requireClientsdkClientcore () {
|
|
|
59407
59522
|
function InviteState$update$lambda_1($event, this$0) {
|
|
59408
59523
|
return function ($this$modify) {
|
|
59409
59524
|
var tmp;
|
|
59410
|
-
if ($event.b1z_1.k1z_1.s2j_1 === this$0.
|
|
59525
|
+
if ($event.b1z_1.k1z_1.s2j_1 === this$0.e2q_1) {
|
|
59411
59526
|
var tmp_0 = $this$modify;
|
|
59412
59527
|
var tmp_1 = $this$modify.u2p_1;
|
|
59413
59528
|
tmp_0.u2p_1 = toResolved(tmp_1, Joined_init_$Create$($event.d1z_1, $event.e1z_1, null, 4, null));
|
|
@@ -59427,7 +59542,7 @@ function requireClientsdkClientcore () {
|
|
|
59427
59542
|
function InviteState$update$lambda_3($event, this$0) {
|
|
59428
59543
|
return function ($this$modify) {
|
|
59429
59544
|
var tmp;
|
|
59430
|
-
if ($event.p1z_1.z1z_1.m2j_1 === this$0.
|
|
59545
|
+
if ($event.p1z_1.z1z_1.m2j_1 === this$0.e2q_1 ? equals($this$modify.u2p_1.s1(), None_getInstance_2()) : false) {
|
|
59431
59546
|
var tmp_0 = $this$modify;
|
|
59432
59547
|
var tmp_1 = $this$modify.u2p_1;
|
|
59433
59548
|
var tmp0_safe_receiver = $event.p1z_1.b20_1;
|
|
@@ -59440,7 +59555,7 @@ function requireClientsdkClientcore () {
|
|
|
59440
59555
|
function InviteState$update$lambda_4($event) {
|
|
59441
59556
|
return function ($this$modify) {
|
|
59442
59557
|
$this$modify.w2p_1 = true;
|
|
59443
|
-
$this$modify.x2p_1 = $event.x22_1.b1y_1.
|
|
59558
|
+
$this$modify.x2p_1 = $event.x22_1.b1y_1.b2q_1;
|
|
59444
59559
|
return Unit_getInstance();
|
|
59445
59560
|
};
|
|
59446
59561
|
}
|
|
@@ -59453,32 +59568,32 @@ function requireClientsdkClientcore () {
|
|
|
59453
59568
|
};
|
|
59454
59569
|
}
|
|
59455
59570
|
function InviteState(invites, currentUserId) {
|
|
59456
|
-
this.
|
|
59457
|
-
this.
|
|
59458
|
-
this.
|
|
59571
|
+
this.d2q_1 = invites;
|
|
59572
|
+
this.e2q_1 = currentUserId;
|
|
59573
|
+
this.f2q_1 = null;
|
|
59459
59574
|
}
|
|
59460
59575
|
InviteState.prototype.a33 = function () {
|
|
59461
|
-
return this.
|
|
59576
|
+
return this.d2q_1;
|
|
59462
59577
|
};
|
|
59463
59578
|
InviteState.prototype.l32 = function (_set____db54di) {
|
|
59464
|
-
this.
|
|
59579
|
+
this.e2q_1 = _set____db54di;
|
|
59465
59580
|
};
|
|
59466
59581
|
InviteState.prototype.v2z = function () {
|
|
59467
|
-
return this.
|
|
59582
|
+
return this.d2q_1;
|
|
59468
59583
|
};
|
|
59469
59584
|
InviteState.prototype.m2z = function (_set____db54di) {
|
|
59470
|
-
this.
|
|
59585
|
+
this.f2q_1 = _set____db54di;
|
|
59471
59586
|
};
|
|
59472
59587
|
InviteState.prototype.n32 = function () {
|
|
59473
|
-
return this.
|
|
59588
|
+
return this.f2q_1;
|
|
59474
59589
|
};
|
|
59475
59590
|
InviteState.prototype.m30 = function (event) {
|
|
59476
59591
|
var tmp$ret$0;
|
|
59477
59592
|
// Inline function 'kotlin.apply' call
|
|
59478
59593
|
// Inline function 'kotlin.contracts.contract' call
|
|
59479
59594
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteState.update.<anonymous>' call
|
|
59480
|
-
this.
|
|
59481
|
-
this.
|
|
59595
|
+
this.e2q_1 = event.x23_1.e25_1;
|
|
59596
|
+
this.f2q_1 = null;
|
|
59482
59597
|
tmp$ret$0 = this;
|
|
59483
59598
|
return tmp$ret$0;
|
|
59484
59599
|
};
|
|
@@ -59511,7 +59626,7 @@ function requireClientsdkClientcore () {
|
|
|
59511
59626
|
// Inline function 'kotlin.apply' call
|
|
59512
59627
|
// Inline function 'kotlin.contracts.contract' call
|
|
59513
59628
|
// Inline function 'com.vonage.clientcore.core.reducers.call.InviteState.update.<anonymous>' call
|
|
59514
|
-
this.
|
|
59629
|
+
this.d2q_1.g3(id);
|
|
59515
59630
|
tmp$ret$0 = this;
|
|
59516
59631
|
return tmp$ret$0;
|
|
59517
59632
|
};
|
|
@@ -59520,17 +59635,17 @@ function requireClientsdkClientcore () {
|
|
|
59520
59635
|
};
|
|
59521
59636
|
InviteState.prototype.w32 = function (invites, currentUserId, $mask0, $handler) {
|
|
59522
59637
|
if (!(($mask0 & 1) === 0))
|
|
59523
|
-
invites = this.
|
|
59638
|
+
invites = this.d2q_1;
|
|
59524
59639
|
if (!(($mask0 & 2) === 0))
|
|
59525
|
-
currentUserId = this.
|
|
59640
|
+
currentUserId = this.e2q_1;
|
|
59526
59641
|
return this.b33(invites, currentUserId);
|
|
59527
59642
|
};
|
|
59528
59643
|
InviteState.prototype.toString = function () {
|
|
59529
|
-
return 'InviteState(invites=' + this.
|
|
59644
|
+
return 'InviteState(invites=' + this.d2q_1 + ', currentUserId=' + this.e2q_1 + ')';
|
|
59530
59645
|
};
|
|
59531
59646
|
InviteState.prototype.hashCode = function () {
|
|
59532
|
-
var result = hashCode(this.
|
|
59533
|
-
result = imul(result, 31) + (this.
|
|
59647
|
+
var result = hashCode(this.d2q_1);
|
|
59648
|
+
result = imul(result, 31) + (this.e2q_1 == null ? 0 : getStringHashCode(this.e2q_1)) | 0;
|
|
59534
59649
|
return result;
|
|
59535
59650
|
};
|
|
59536
59651
|
InviteState.prototype.equals = function (other) {
|
|
@@ -59539,9 +59654,9 @@ function requireClientsdkClientcore () {
|
|
|
59539
59654
|
if (!(other instanceof InviteState))
|
|
59540
59655
|
return false;
|
|
59541
59656
|
var tmp0_other_with_cast = other instanceof InviteState ? other : THROW_CCE();
|
|
59542
|
-
if (!equals(this.
|
|
59657
|
+
if (!equals(this.d2q_1, tmp0_other_with_cast.d2q_1))
|
|
59543
59658
|
return false;
|
|
59544
|
-
if (!(this.
|
|
59659
|
+
if (!(this.e2q_1 == tmp0_other_with_cast.e2q_1))
|
|
59545
59660
|
return false;
|
|
59546
59661
|
return true;
|
|
59547
59662
|
};
|
|
@@ -60542,7 +60657,7 @@ function requireClientsdkClientcore () {
|
|
|
60542
60657
|
//endregion
|
|
60543
60658
|
//region block: pre-declaration
|
|
60544
60659
|
function setConfig(config) {
|
|
60545
|
-
this.core.s1b(new SetConfig(config.
|
|
60660
|
+
this.core.s1b(new SetConfig(config.o3b_1, config.p3b_1, config.n3b_1, config.r3b_1));
|
|
60546
60661
|
}
|
|
60547
60662
|
function createSession(token, sessionId) {
|
|
60548
60663
|
return new Promise(ICoreClientJS$createSession$lambda(this, token, sessionId));
|
|
@@ -60910,7 +61025,7 @@ function requireClientsdkClientcore () {
|
|
|
60910
61025
|
MemberInvitedEventJS.prototype.k1o = function () {
|
|
60911
61026
|
return this.h34_1;
|
|
60912
61027
|
};
|
|
60913
|
-
MemberInvitedEventJS.prototype.
|
|
61028
|
+
MemberInvitedEventJS.prototype.c2r = function () {
|
|
60914
61029
|
return this.i34_1;
|
|
60915
61030
|
};
|
|
60916
61031
|
MemberInvitedEventJS.prototype.e1k = function () {
|
|
@@ -60933,7 +61048,7 @@ function requireClientsdkClientcore () {
|
|
|
60933
61048
|
Object.defineProperty(MemberInvitedEventJS.prototype, 'conversationId', {
|
|
60934
61049
|
configurable: true,
|
|
60935
61050
|
get: function () {
|
|
60936
|
-
return this.
|
|
61051
|
+
return this.c2r();
|
|
60937
61052
|
}
|
|
60938
61053
|
});
|
|
60939
61054
|
Object.defineProperty(MemberInvitedEventJS.prototype, 'from', {
|
|
@@ -60949,13 +61064,13 @@ function requireClientsdkClientcore () {
|
|
|
60949
61064
|
function Body_0(body) {
|
|
60950
61065
|
this.l34_1 = body.y2l_1;
|
|
60951
61066
|
}
|
|
60952
|
-
Body_0.prototype.
|
|
61067
|
+
Body_0.prototype.l2s = function () {
|
|
60953
61068
|
return this.l34_1;
|
|
60954
61069
|
};
|
|
60955
61070
|
Body_0.$metadata$ = classMeta('Body');
|
|
60956
61071
|
Object.defineProperty(Body_0.prototype, 'username', {
|
|
60957
61072
|
configurable: true,
|
|
60958
|
-
get: Body_0.prototype.
|
|
61073
|
+
get: Body_0.prototype.l2s
|
|
60959
61074
|
});
|
|
60960
61075
|
function MemberJoinedEventJS(event) {
|
|
60961
61076
|
this.m34_1 = event.z2l_1;
|
|
@@ -60970,7 +61085,7 @@ function requireClientsdkClientcore () {
|
|
|
60970
61085
|
MemberJoinedEventJS.prototype.k1o = function () {
|
|
60971
61086
|
return this.n34_1;
|
|
60972
61087
|
};
|
|
60973
|
-
MemberJoinedEventJS.prototype.
|
|
61088
|
+
MemberJoinedEventJS.prototype.c2r = function () {
|
|
60974
61089
|
return this.o34_1;
|
|
60975
61090
|
};
|
|
60976
61091
|
MemberJoinedEventJS.prototype.e1k = function () {
|
|
@@ -60993,7 +61108,7 @@ function requireClientsdkClientcore () {
|
|
|
60993
61108
|
Object.defineProperty(MemberJoinedEventJS.prototype, 'conversationId', {
|
|
60994
61109
|
configurable: true,
|
|
60995
61110
|
get: function () {
|
|
60996
|
-
return this.
|
|
61111
|
+
return this.c2r();
|
|
60997
61112
|
}
|
|
60998
61113
|
});
|
|
60999
61114
|
Object.defineProperty(MemberJoinedEventJS.prototype, 'from', {
|
|
@@ -61009,13 +61124,13 @@ function requireClientsdkClientcore () {
|
|
|
61009
61124
|
function Body_1(body) {
|
|
61010
61125
|
this.r34_1 = body.e2m_1;
|
|
61011
61126
|
}
|
|
61012
|
-
Body_1.prototype.
|
|
61127
|
+
Body_1.prototype.l2s = function () {
|
|
61013
61128
|
return this.r34_1;
|
|
61014
61129
|
};
|
|
61015
61130
|
Body_1.$metadata$ = classMeta('Body');
|
|
61016
61131
|
Object.defineProperty(Body_1.prototype, 'username', {
|
|
61017
61132
|
configurable: true,
|
|
61018
|
-
get: Body_1.prototype.
|
|
61133
|
+
get: Body_1.prototype.l2s
|
|
61019
61134
|
});
|
|
61020
61135
|
function MemberLeftEventJS(event) {
|
|
61021
61136
|
this.s34_1 = event.f2m_1;
|
|
@@ -61030,7 +61145,7 @@ function requireClientsdkClientcore () {
|
|
|
61030
61145
|
MemberLeftEventJS.prototype.k1o = function () {
|
|
61031
61146
|
return this.t34_1;
|
|
61032
61147
|
};
|
|
61033
|
-
MemberLeftEventJS.prototype.
|
|
61148
|
+
MemberLeftEventJS.prototype.c2r = function () {
|
|
61034
61149
|
return this.u34_1;
|
|
61035
61150
|
};
|
|
61036
61151
|
MemberLeftEventJS.prototype.e1k = function () {
|
|
@@ -61053,7 +61168,7 @@ function requireClientsdkClientcore () {
|
|
|
61053
61168
|
Object.defineProperty(MemberLeftEventJS.prototype, 'conversationId', {
|
|
61054
61169
|
configurable: true,
|
|
61055
61170
|
get: function () {
|
|
61056
|
-
return this.
|
|
61171
|
+
return this.c2r();
|
|
61057
61172
|
}
|
|
61058
61173
|
});
|
|
61059
61174
|
Object.defineProperty(MemberLeftEventJS.prototype, 'from', {
|
|
@@ -61073,7 +61188,7 @@ function requireClientsdkClientcore () {
|
|
|
61073
61188
|
this.a35_1 = event.n2m_1;
|
|
61074
61189
|
this.b35_1 = event.o2m_1;
|
|
61075
61190
|
}
|
|
61076
|
-
UnknownEventJS.prototype.
|
|
61191
|
+
UnknownEventJS.prototype.l2q = function () {
|
|
61077
61192
|
return this.x34_1;
|
|
61078
61193
|
};
|
|
61079
61194
|
UnknownEventJS.prototype.v1k = function () {
|
|
@@ -61082,7 +61197,7 @@ function requireClientsdkClientcore () {
|
|
|
61082
61197
|
UnknownEventJS.prototype.k1o = function () {
|
|
61083
61198
|
return this.z34_1;
|
|
61084
61199
|
};
|
|
61085
|
-
UnknownEventJS.prototype.
|
|
61200
|
+
UnknownEventJS.prototype.c2r = function () {
|
|
61086
61201
|
return this.a35_1;
|
|
61087
61202
|
};
|
|
61088
61203
|
UnknownEventJS.prototype.e1k = function () {
|
|
@@ -61091,7 +61206,7 @@ function requireClientsdkClientcore () {
|
|
|
61091
61206
|
UnknownEventJS.$metadata$ = classMeta('UnknownEventJS', [ConversationEventJS]);
|
|
61092
61207
|
Object.defineProperty(UnknownEventJS.prototype, 'type', {
|
|
61093
61208
|
configurable: true,
|
|
61094
|
-
get: UnknownEventJS.prototype.
|
|
61209
|
+
get: UnknownEventJS.prototype.l2q
|
|
61095
61210
|
});
|
|
61096
61211
|
Object.defineProperty(UnknownEventJS.prototype, 'id', {
|
|
61097
61212
|
configurable: true,
|
|
@@ -61106,7 +61221,7 @@ function requireClientsdkClientcore () {
|
|
|
61106
61221
|
Object.defineProperty(UnknownEventJS.prototype, 'conversationId', {
|
|
61107
61222
|
configurable: true,
|
|
61108
61223
|
get: function () {
|
|
61109
|
-
return this.
|
|
61224
|
+
return this.c2r();
|
|
61110
61225
|
}
|
|
61111
61226
|
});
|
|
61112
61227
|
Object.defineProperty(UnknownEventJS.prototype, 'from', {
|
|
@@ -61181,7 +61296,7 @@ function requireClientsdkClientcore () {
|
|
|
61181
61296
|
TextMessageEventJS.prototype.k1o = function () {
|
|
61182
61297
|
return this.h35_1;
|
|
61183
61298
|
};
|
|
61184
|
-
TextMessageEventJS.prototype.
|
|
61299
|
+
TextMessageEventJS.prototype.c2r = function () {
|
|
61185
61300
|
return this.i35_1;
|
|
61186
61301
|
};
|
|
61187
61302
|
TextMessageEventJS.prototype.e1k = function () {
|
|
@@ -61206,7 +61321,7 @@ function requireClientsdkClientcore () {
|
|
|
61206
61321
|
Object.defineProperty(TextMessageEventJS.prototype, 'conversationId', {
|
|
61207
61322
|
configurable: true,
|
|
61208
61323
|
get: function () {
|
|
61209
|
-
return this.
|
|
61324
|
+
return this.c2r();
|
|
61210
61325
|
}
|
|
61211
61326
|
});
|
|
61212
61327
|
Object.defineProperty(TextMessageEventJS.prototype, 'from', {
|
|
@@ -61316,7 +61431,7 @@ function requireClientsdkClientcore () {
|
|
|
61316
61431
|
ConversationJS.prototype.k1o = function () {
|
|
61317
61432
|
return this.r35_1;
|
|
61318
61433
|
};
|
|
61319
|
-
ConversationJS.prototype.
|
|
61434
|
+
ConversationJS.prototype.k2r = function () {
|
|
61320
61435
|
return this.s35_1;
|
|
61321
61436
|
};
|
|
61322
61437
|
ConversationJS.prototype.z30 = function () {
|
|
@@ -61349,7 +61464,7 @@ function requireClientsdkClientcore () {
|
|
|
61349
61464
|
});
|
|
61350
61465
|
Object.defineProperty(ConversationJS.prototype, 'memberId', {
|
|
61351
61466
|
configurable: true,
|
|
61352
|
-
get: ConversationJS.prototype.
|
|
61467
|
+
get: ConversationJS.prototype.k2r
|
|
61353
61468
|
});
|
|
61354
61469
|
Object.defineProperty(ConversationJS.prototype, 'memberState', {
|
|
61355
61470
|
configurable: true,
|
|
@@ -62300,7 +62415,7 @@ function requireClientsdkClientcore () {
|
|
|
62300
62415
|
}
|
|
62301
62416
|
tmp_1.n38_1 = tmp_2;
|
|
62302
62417
|
}
|
|
62303
|
-
MemberChannelJS.prototype.
|
|
62418
|
+
MemberChannelJS.prototype.l2q = function () {
|
|
62304
62419
|
return this.l38_1;
|
|
62305
62420
|
};
|
|
62306
62421
|
MemberChannelJS.prototype.e1k = function () {
|
|
@@ -62312,7 +62427,7 @@ function requireClientsdkClientcore () {
|
|
|
62312
62427
|
MemberChannelJS.$metadata$ = classMeta('MemberChannelJS');
|
|
62313
62428
|
Object.defineProperty(MemberChannelJS.prototype, 'type', {
|
|
62314
62429
|
configurable: true,
|
|
62315
|
-
get: MemberChannelJS.prototype.
|
|
62430
|
+
get: MemberChannelJS.prototype.l2q
|
|
62316
62431
|
});
|
|
62317
62432
|
Object.defineProperty(MemberChannelJS.prototype, 'from', {
|
|
62318
62433
|
configurable: true,
|
|
@@ -62329,7 +62444,7 @@ function requireClientsdkClientcore () {
|
|
|
62329
62444
|
ChannelJS.prototype.v1k = function () {
|
|
62330
62445
|
return this.o38_1;
|
|
62331
62446
|
};
|
|
62332
|
-
ChannelJS.prototype.
|
|
62447
|
+
ChannelJS.prototype.d2s = function () {
|
|
62333
62448
|
return this.p38_1;
|
|
62334
62449
|
};
|
|
62335
62450
|
ChannelJS.$metadata$ = classMeta('ChannelJS');
|
|
@@ -62339,26 +62454,26 @@ function requireClientsdkClientcore () {
|
|
|
62339
62454
|
});
|
|
62340
62455
|
Object.defineProperty(ChannelJS.prototype, 'number', {
|
|
62341
62456
|
configurable: true,
|
|
62342
|
-
get: ChannelJS.prototype.
|
|
62457
|
+
get: ChannelJS.prototype.d2s
|
|
62343
62458
|
});
|
|
62344
62459
|
function LegChannelJS(channel) {
|
|
62345
62460
|
this.q38_1 = channel.u2k_1;
|
|
62346
62461
|
this.r38_1 = channel.w2k_1;
|
|
62347
62462
|
this.s38_1 = channel.v2k_1;
|
|
62348
62463
|
}
|
|
62349
|
-
LegChannelJS.prototype.
|
|
62464
|
+
LegChannelJS.prototype.l2q = function () {
|
|
62350
62465
|
return this.q38_1;
|
|
62351
62466
|
};
|
|
62352
62467
|
LegChannelJS.prototype.n1k = function () {
|
|
62353
62468
|
return this.r38_1;
|
|
62354
62469
|
};
|
|
62355
|
-
LegChannelJS.prototype.
|
|
62470
|
+
LegChannelJS.prototype.d2s = function () {
|
|
62356
62471
|
return this.s38_1;
|
|
62357
62472
|
};
|
|
62358
62473
|
LegChannelJS.$metadata$ = classMeta('LegChannelJS');
|
|
62359
62474
|
Object.defineProperty(LegChannelJS.prototype, 'type', {
|
|
62360
62475
|
configurable: true,
|
|
62361
|
-
get: LegChannelJS.prototype.
|
|
62476
|
+
get: LegChannelJS.prototype.l2q
|
|
62362
62477
|
});
|
|
62363
62478
|
Object.defineProperty(LegChannelJS.prototype, 'user', {
|
|
62364
62479
|
configurable: true,
|
|
@@ -62366,7 +62481,7 @@ function requireClientsdkClientcore () {
|
|
|
62366
62481
|
});
|
|
62367
62482
|
Object.defineProperty(LegChannelJS.prototype, 'number', {
|
|
62368
62483
|
configurable: true,
|
|
62369
|
-
get: LegChannelJS.prototype.
|
|
62484
|
+
get: LegChannelJS.prototype.d2s
|
|
62370
62485
|
});
|
|
62371
62486
|
function LegJS(leg) {
|
|
62372
62487
|
this.t38_1 = leg.p2m_1;
|
|
@@ -62382,13 +62497,13 @@ function requireClientsdkClientcore () {
|
|
|
62382
62497
|
LegJS.prototype.v1k = function () {
|
|
62383
62498
|
return this.t38_1;
|
|
62384
62499
|
};
|
|
62385
|
-
LegJS.prototype.
|
|
62500
|
+
LegJS.prototype.l2q = function () {
|
|
62386
62501
|
return this.u38_1;
|
|
62387
62502
|
};
|
|
62388
|
-
LegJS.prototype.
|
|
62503
|
+
LegJS.prototype.u2r = function () {
|
|
62389
62504
|
return this.v38_1;
|
|
62390
62505
|
};
|
|
62391
|
-
LegJS.prototype.
|
|
62506
|
+
LegJS.prototype.c2r = function () {
|
|
62392
62507
|
return this.w38_1;
|
|
62393
62508
|
};
|
|
62394
62509
|
LegJS.prototype.f2f = function () {
|
|
@@ -62413,15 +62528,15 @@ function requireClientsdkClientcore () {
|
|
|
62413
62528
|
});
|
|
62414
62529
|
Object.defineProperty(LegJS.prototype, 'type', {
|
|
62415
62530
|
configurable: true,
|
|
62416
|
-
get: LegJS.prototype.
|
|
62531
|
+
get: LegJS.prototype.l2q
|
|
62417
62532
|
});
|
|
62418
62533
|
Object.defineProperty(LegJS.prototype, 'direction', {
|
|
62419
62534
|
configurable: true,
|
|
62420
|
-
get: LegJS.prototype.
|
|
62535
|
+
get: LegJS.prototype.u2r
|
|
62421
62536
|
});
|
|
62422
62537
|
Object.defineProperty(LegJS.prototype, 'conversationId', {
|
|
62423
62538
|
configurable: true,
|
|
62424
|
-
get: LegJS.prototype.
|
|
62539
|
+
get: LegJS.prototype.c2r
|
|
62425
62540
|
});
|
|
62426
62541
|
Object.defineProperty(LegJS.prototype, 'status', {
|
|
62427
62542
|
configurable: true,
|
|
@@ -62820,43 +62935,23 @@ function requireClientsdkClientcore () {
|
|
|
62820
62935
|
extendThrowable(this, vonageError.c2j_1, vonageError.d2j_1);
|
|
62821
62936
|
this.e3b_1 = valueOf_3(vonageError.a2j_1.d4_1);
|
|
62822
62937
|
this.f3b_1 = vonageError.b2j_1;
|
|
62823
|
-
this.g3b_1 = vonageError.c2j_1;
|
|
62824
|
-
this.h3b_1 = vonageError.d2j_1;
|
|
62825
62938
|
captureStack(this, VonageErrorJS);
|
|
62826
62939
|
}
|
|
62827
|
-
VonageErrorJS.prototype.
|
|
62940
|
+
VonageErrorJS.prototype.l2q = function () {
|
|
62828
62941
|
return this.e3b_1;
|
|
62829
62942
|
};
|
|
62830
62943
|
VonageErrorJS.prototype.e1e = function () {
|
|
62831
62944
|
return this.f3b_1;
|
|
62832
62945
|
};
|
|
62833
|
-
VonageErrorJS.prototype.g1 = function () {
|
|
62834
|
-
return this.g3b_1;
|
|
62835
|
-
};
|
|
62836
|
-
VonageErrorJS.prototype.h1 = function () {
|
|
62837
|
-
return this.h3b_1;
|
|
62838
|
-
};
|
|
62839
62946
|
VonageErrorJS.$metadata$ = classMeta('VonageErrorJS', undefined, undefined, undefined, undefined, Error.prototype);
|
|
62840
62947
|
Object.defineProperty(VonageErrorJS.prototype, 'type', {
|
|
62841
62948
|
configurable: true,
|
|
62842
|
-
get: VonageErrorJS.prototype.
|
|
62949
|
+
get: VonageErrorJS.prototype.l2q
|
|
62843
62950
|
});
|
|
62844
62951
|
Object.defineProperty(VonageErrorJS.prototype, 'code', {
|
|
62845
62952
|
configurable: true,
|
|
62846
62953
|
get: VonageErrorJS.prototype.e1e
|
|
62847
62954
|
});
|
|
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
62955
|
var VonageErrorTypeJS_CS_ERROR_instance;
|
|
62861
62956
|
var VonageErrorTypeJS_HTTP_CLIENT_ERROR_instance;
|
|
62862
62957
|
var VonageErrorTypeJS_SESSION_ERROR_instance;
|
|
@@ -63454,15 +63549,15 @@ function requireClientsdkClientcore () {
|
|
|
63454
63549
|
}
|
|
63455
63550
|
function CoreClientConfigRegionJS(name, ordinal, coreRegion) {
|
|
63456
63551
|
Enum.call(this, name, ordinal);
|
|
63457
|
-
this.
|
|
63552
|
+
this.k3b_1 = coreRegion;
|
|
63458
63553
|
}
|
|
63459
|
-
CoreClientConfigRegionJS.prototype.
|
|
63460
|
-
return this.
|
|
63554
|
+
CoreClientConfigRegionJS.prototype.l3b = function () {
|
|
63555
|
+
return this.k3b_1;
|
|
63461
63556
|
};
|
|
63462
63557
|
CoreClientConfigRegionJS.$metadata$ = classMeta('CoreClientConfigRegionJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
63463
63558
|
Object.defineProperty(CoreClientConfigRegionJS.prototype, 'coreRegion', {
|
|
63464
63559
|
configurable: true,
|
|
63465
|
-
get: CoreClientConfigRegionJS.prototype.
|
|
63560
|
+
get: CoreClientConfigRegionJS.prototype.l3b
|
|
63466
63561
|
});
|
|
63467
63562
|
Object.defineProperty(CoreClientConfigRegionJS.prototype, 'name', {
|
|
63468
63563
|
configurable: true,
|
|
@@ -63473,69 +63568,69 @@ function requireClientsdkClientcore () {
|
|
|
63473
63568
|
get: CoreClientConfigRegionJS.prototype.pe
|
|
63474
63569
|
});
|
|
63475
63570
|
function CoreClientConfigJS(region) {
|
|
63476
|
-
this.
|
|
63477
|
-
this.
|
|
63478
|
-
this.
|
|
63479
|
-
this.
|
|
63480
|
-
this.
|
|
63481
|
-
this.
|
|
63571
|
+
this.m3b_1 = Companion_getInstance().s2g(region.k3b_1, true);
|
|
63572
|
+
this.n3b_1 = this.m3b_1.t2g_1;
|
|
63573
|
+
this.o3b_1 = this.m3b_1.u2g_1;
|
|
63574
|
+
this.p3b_1 = this.m3b_1.v2g_1;
|
|
63575
|
+
this.q3b_1 = this.m3b_1.w2g_1;
|
|
63576
|
+
this.r3b_1 = this.m3b_1.y2g_1;
|
|
63482
63577
|
}
|
|
63578
|
+
CoreClientConfigJS.prototype.s3b = function (_set____db54di) {
|
|
63579
|
+
this.n3b_1 = _set____db54di;
|
|
63580
|
+
};
|
|
63581
|
+
CoreClientConfigJS.prototype.t3b = function () {
|
|
63582
|
+
return this.n3b_1;
|
|
63583
|
+
};
|
|
63483
63584
|
CoreClientConfigJS.prototype.u3b = function (_set____db54di) {
|
|
63484
|
-
this.
|
|
63585
|
+
this.o3b_1 = _set____db54di;
|
|
63485
63586
|
};
|
|
63486
63587
|
CoreClientConfigJS.prototype.v3b = function () {
|
|
63487
|
-
return this.
|
|
63588
|
+
return this.o3b_1;
|
|
63488
63589
|
};
|
|
63489
63590
|
CoreClientConfigJS.prototype.w3b = function (_set____db54di) {
|
|
63490
|
-
this.
|
|
63591
|
+
this.p3b_1 = _set____db54di;
|
|
63491
63592
|
};
|
|
63492
63593
|
CoreClientConfigJS.prototype.x3b = function () {
|
|
63493
|
-
return this.
|
|
63594
|
+
return this.p3b_1;
|
|
63494
63595
|
};
|
|
63495
63596
|
CoreClientConfigJS.prototype.y3b = function (_set____db54di) {
|
|
63496
|
-
this.
|
|
63597
|
+
this.q3b_1 = _set____db54di;
|
|
63497
63598
|
};
|
|
63498
63599
|
CoreClientConfigJS.prototype.z3b = function () {
|
|
63499
|
-
return this.
|
|
63600
|
+
return this.q3b_1;
|
|
63500
63601
|
};
|
|
63501
63602
|
CoreClientConfigJS.prototype.a3c = function (_set____db54di) {
|
|
63502
|
-
this.
|
|
63603
|
+
this.r3b_1 = _set____db54di;
|
|
63503
63604
|
};
|
|
63504
63605
|
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;
|
|
63606
|
+
return this.r3b_1;
|
|
63512
63607
|
};
|
|
63513
63608
|
CoreClientConfigJS.$metadata$ = classMeta('CoreClientConfigJS');
|
|
63514
63609
|
Object.defineProperty(CoreClientConfigJS.prototype, 'apiUrl', {
|
|
63610
|
+
configurable: true,
|
|
63611
|
+
get: CoreClientConfigJS.prototype.t3b,
|
|
63612
|
+
set: CoreClientConfigJS.prototype.s3b
|
|
63613
|
+
});
|
|
63614
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'websocketUrl', {
|
|
63515
63615
|
configurable: true,
|
|
63516
63616
|
get: CoreClientConfigJS.prototype.v3b,
|
|
63517
63617
|
set: CoreClientConfigJS.prototype.u3b
|
|
63518
63618
|
});
|
|
63519
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63619
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'websocketPath', {
|
|
63520
63620
|
configurable: true,
|
|
63521
63621
|
get: CoreClientConfigJS.prototype.x3b,
|
|
63522
63622
|
set: CoreClientConfigJS.prototype.w3b
|
|
63523
63623
|
});
|
|
63524
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63624
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'autoMediaReoffer', {
|
|
63525
63625
|
configurable: true,
|
|
63526
63626
|
get: CoreClientConfigJS.prototype.z3b,
|
|
63527
63627
|
set: CoreClientConfigJS.prototype.y3b
|
|
63528
63628
|
});
|
|
63529
|
-
Object.defineProperty(CoreClientConfigJS.prototype, '
|
|
63629
|
+
Object.defineProperty(CoreClientConfigJS.prototype, 'enableWebsocketInvites', {
|
|
63530
63630
|
configurable: true,
|
|
63531
63631
|
get: CoreClientConfigJS.prototype.b3c,
|
|
63532
63632
|
set: CoreClientConfigJS.prototype.a3c
|
|
63533
63633
|
});
|
|
63534
|
-
Object.defineProperty(CoreClientConfigJS.prototype, 'enableWebsocketInvites', {
|
|
63535
|
-
configurable: true,
|
|
63536
|
-
get: CoreClientConfigJS.prototype.d3c,
|
|
63537
|
-
set: CoreClientConfigJS.prototype.c3c
|
|
63538
|
-
});
|
|
63539
63634
|
var LoggingLevelJS_Verbose_instance;
|
|
63540
63635
|
var LoggingLevelJS_Debug_instance;
|
|
63541
63636
|
var LoggingLevelJS_Info_instance;
|
|
@@ -63579,10 +63674,10 @@ function requireClientsdkClientcore () {
|
|
|
63579
63674
|
}
|
|
63580
63675
|
function LoggingLevelJS(name, ordinal, sev) {
|
|
63581
63676
|
Enum.call(this, name, ordinal);
|
|
63582
|
-
this.
|
|
63677
|
+
this.e3c_1 = sev;
|
|
63583
63678
|
}
|
|
63584
63679
|
LoggingLevelJS.prototype.h2g = function () {
|
|
63585
|
-
return this.
|
|
63680
|
+
return this.e3c_1;
|
|
63586
63681
|
};
|
|
63587
63682
|
LoggingLevelJS.$metadata$ = classMeta('LoggingLevelJS', [ILoggingLevel], undefined, undefined, undefined, Enum.prototype);
|
|
63588
63683
|
Object.defineProperty(LoggingLevelJS.prototype, 'name', {
|
|
@@ -63614,7 +63709,7 @@ function requireClientsdkClientcore () {
|
|
|
63614
63709
|
inductionVariable = inductionVariable + 1 | 0;
|
|
63615
63710
|
var tmp$ret$0;
|
|
63616
63711
|
// Inline function 'vonage.Companion.getSessionErrorReason.<anonymous>' call
|
|
63617
|
-
tmp$ret$0 = element.
|
|
63712
|
+
tmp$ret$0 = element.h3c_1.equals(reason);
|
|
63618
63713
|
if (tmp$ret$0) {
|
|
63619
63714
|
tmp$ret$1 = element;
|
|
63620
63715
|
break $l$block;
|
|
@@ -63662,10 +63757,10 @@ function requireClientsdkClientcore () {
|
|
|
63662
63757
|
}
|
|
63663
63758
|
function SessionErrorReasonJS(name, ordinal, reason) {
|
|
63664
63759
|
Enum.call(this, name, ordinal);
|
|
63665
|
-
this.
|
|
63760
|
+
this.h3c_1 = reason;
|
|
63666
63761
|
}
|
|
63667
63762
|
SessionErrorReasonJS.prototype.z29 = function () {
|
|
63668
|
-
return this.
|
|
63763
|
+
return this.h3c_1;
|
|
63669
63764
|
};
|
|
63670
63765
|
SessionErrorReasonJS.$metadata$ = classMeta('SessionErrorReasonJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
63671
63766
|
Object.defineProperty(SessionErrorReasonJS.prototype, 'reason', {
|
|
@@ -64229,40 +64324,40 @@ function requireClientsdkClientcore () {
|
|
|
64229
64324
|
}
|
|
64230
64325
|
IVoiceClientJS.$metadata$ = interfaceMeta('IVoiceClientJS', [ICoreClientJS]);
|
|
64231
64326
|
function VoiceInviteFromInfoJS(id, type) {
|
|
64232
|
-
this.
|
|
64233
|
-
this.
|
|
64327
|
+
this.m3c_1 = id;
|
|
64328
|
+
this.n3c_1 = type;
|
|
64234
64329
|
}
|
|
64235
64330
|
VoiceInviteFromInfoJS.prototype.v1k = function () {
|
|
64236
|
-
return this.
|
|
64331
|
+
return this.m3c_1;
|
|
64237
64332
|
};
|
|
64238
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64239
|
-
return this.
|
|
64333
|
+
VoiceInviteFromInfoJS.prototype.l2q = function () {
|
|
64334
|
+
return this.n3c_1;
|
|
64240
64335
|
};
|
|
64241
64336
|
VoiceInviteFromInfoJS.prototype.component1 = function () {
|
|
64242
|
-
return this.
|
|
64337
|
+
return this.m3c_1;
|
|
64243
64338
|
};
|
|
64244
64339
|
VoiceInviteFromInfoJS.prototype.component2 = function () {
|
|
64245
|
-
return this.
|
|
64340
|
+
return this.n3c_1;
|
|
64246
64341
|
};
|
|
64247
64342
|
VoiceInviteFromInfoJS.prototype.copy = function (id, type) {
|
|
64248
|
-
return this.
|
|
64343
|
+
return this.o3c(id === void 1 ? this.m3c_1 : id, type === void 1 ? this.n3c_1 : type);
|
|
64249
64344
|
};
|
|
64250
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64345
|
+
VoiceInviteFromInfoJS.prototype.o3c = function (id, type) {
|
|
64251
64346
|
return new VoiceInviteFromInfoJS(id, type);
|
|
64252
64347
|
};
|
|
64253
|
-
VoiceInviteFromInfoJS.prototype.
|
|
64348
|
+
VoiceInviteFromInfoJS.prototype.p3c = function (id, type, $mask0, $handler) {
|
|
64254
64349
|
if (!(($mask0 & 1) === 0))
|
|
64255
|
-
id = this.
|
|
64350
|
+
id = this.m3c_1;
|
|
64256
64351
|
if (!(($mask0 & 2) === 0))
|
|
64257
|
-
type = this.
|
|
64258
|
-
return this.
|
|
64352
|
+
type = this.n3c_1;
|
|
64353
|
+
return this.o3c(id, type);
|
|
64259
64354
|
};
|
|
64260
64355
|
VoiceInviteFromInfoJS.prototype.toString = function () {
|
|
64261
|
-
return 'VoiceInviteFromInfoJS(id=' + this.
|
|
64356
|
+
return 'VoiceInviteFromInfoJS(id=' + this.m3c_1 + ', type=' + this.n3c_1 + ')';
|
|
64262
64357
|
};
|
|
64263
64358
|
VoiceInviteFromInfoJS.prototype.hashCode = function () {
|
|
64264
|
-
var result = this.
|
|
64265
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
64359
|
+
var result = this.m3c_1 == null ? 0 : getStringHashCode(this.m3c_1);
|
|
64360
|
+
result = imul(result, 31) + getStringHashCode(this.n3c_1) | 0;
|
|
64266
64361
|
return result;
|
|
64267
64362
|
};
|
|
64268
64363
|
VoiceInviteFromInfoJS.prototype.equals = function (other) {
|
|
@@ -64271,9 +64366,9 @@ function requireClientsdkClientcore () {
|
|
|
64271
64366
|
if (!(other instanceof VoiceInviteFromInfoJS))
|
|
64272
64367
|
return false;
|
|
64273
64368
|
var tmp0_other_with_cast = other instanceof VoiceInviteFromInfoJS ? other : THROW_CCE();
|
|
64274
|
-
if (!(this.
|
|
64369
|
+
if (!(this.m3c_1 == tmp0_other_with_cast.m3c_1))
|
|
64275
64370
|
return false;
|
|
64276
|
-
if (!(this.
|
|
64371
|
+
if (!(this.n3c_1 === tmp0_other_with_cast.n3c_1))
|
|
64277
64372
|
return false;
|
|
64278
64373
|
return true;
|
|
64279
64374
|
};
|
|
@@ -64284,7 +64379,7 @@ function requireClientsdkClientcore () {
|
|
|
64284
64379
|
});
|
|
64285
64380
|
Object.defineProperty(VoiceInviteFromInfoJS.prototype, 'type', {
|
|
64286
64381
|
configurable: true,
|
|
64287
|
-
get: VoiceInviteFromInfoJS.prototype.
|
|
64382
|
+
get: VoiceInviteFromInfoJS.prototype.l2q
|
|
64288
64383
|
});
|
|
64289
64384
|
function LegStatusJS_RINGING_getInstance() {
|
|
64290
64385
|
LegStatusJS_initEntries();
|
|
@@ -64337,64 +64432,64 @@ function requireClientsdkClientcore () {
|
|
|
64337
64432
|
var responseBody_0 = responseBody === void 1 ? null : responseBody;
|
|
64338
64433
|
var cause_0 = cause === void 1 ? null : cause;
|
|
64339
64434
|
extendThrowable(this, void 1, void 1);
|
|
64340
|
-
this.
|
|
64341
|
-
this.
|
|
64342
|
-
this.
|
|
64343
|
-
this.
|
|
64435
|
+
this.q3c_1 = message_0;
|
|
64436
|
+
this.r3c_1 = responseCode_0;
|
|
64437
|
+
this.s3c_1 = responseBody_0;
|
|
64438
|
+
this.t3c_1 = cause_0;
|
|
64344
64439
|
captureStack(this, HttpClientErrorJS);
|
|
64345
64440
|
}
|
|
64346
64441
|
HttpClientErrorJS.prototype.g1 = function () {
|
|
64347
|
-
return this.
|
|
64442
|
+
return this.q3c_1;
|
|
64348
64443
|
};
|
|
64349
|
-
HttpClientErrorJS.prototype.
|
|
64350
|
-
return this.
|
|
64444
|
+
HttpClientErrorJS.prototype.u3c = function () {
|
|
64445
|
+
return this.r3c_1;
|
|
64351
64446
|
};
|
|
64352
|
-
HttpClientErrorJS.prototype.
|
|
64353
|
-
return this.
|
|
64447
|
+
HttpClientErrorJS.prototype.v3c = function () {
|
|
64448
|
+
return this.s3c_1;
|
|
64354
64449
|
};
|
|
64355
64450
|
HttpClientErrorJS.prototype.h1 = function () {
|
|
64356
|
-
return this.
|
|
64451
|
+
return this.t3c_1;
|
|
64357
64452
|
};
|
|
64358
|
-
HttpClientErrorJS.prototype.
|
|
64359
|
-
return new HTTPClientError(this.
|
|
64453
|
+
HttpClientErrorJS.prototype.w3c = function () {
|
|
64454
|
+
return new HTTPClientError(this.q3c_1, this.r3c_1, this.s3c_1, this.t3c_1);
|
|
64360
64455
|
};
|
|
64361
64456
|
HttpClientErrorJS.prototype.component1 = function () {
|
|
64362
|
-
return this.
|
|
64457
|
+
return this.q3c_1;
|
|
64363
64458
|
};
|
|
64364
64459
|
HttpClientErrorJS.prototype.component2 = function () {
|
|
64365
|
-
return this.
|
|
64460
|
+
return this.r3c_1;
|
|
64366
64461
|
};
|
|
64367
64462
|
HttpClientErrorJS.prototype.component3 = function () {
|
|
64368
|
-
return this.
|
|
64463
|
+
return this.s3c_1;
|
|
64369
64464
|
};
|
|
64370
64465
|
HttpClientErrorJS.prototype.component4 = function () {
|
|
64371
|
-
return this.
|
|
64466
|
+
return this.t3c_1;
|
|
64372
64467
|
};
|
|
64373
64468
|
HttpClientErrorJS.prototype.copy = function (message, responseCode, responseBody, cause) {
|
|
64374
|
-
return this.
|
|
64469
|
+
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
64470
|
};
|
|
64376
|
-
HttpClientErrorJS.prototype.
|
|
64471
|
+
HttpClientErrorJS.prototype.x3c = function (message, responseCode, responseBody, cause) {
|
|
64377
64472
|
return new HttpClientErrorJS(message, responseCode, responseBody, cause);
|
|
64378
64473
|
};
|
|
64379
|
-
HttpClientErrorJS.prototype.
|
|
64474
|
+
HttpClientErrorJS.prototype.y3c = function (message, responseCode, responseBody, cause, $mask0, $handler) {
|
|
64380
64475
|
if (!(($mask0 & 1) === 0))
|
|
64381
|
-
message = this.
|
|
64476
|
+
message = this.q3c_1;
|
|
64382
64477
|
if (!(($mask0 & 2) === 0))
|
|
64383
|
-
responseCode = this.
|
|
64478
|
+
responseCode = this.r3c_1;
|
|
64384
64479
|
if (!(($mask0 & 4) === 0))
|
|
64385
|
-
responseBody = this.
|
|
64480
|
+
responseBody = this.s3c_1;
|
|
64386
64481
|
if (!(($mask0 & 8) === 0))
|
|
64387
|
-
cause = this.
|
|
64388
|
-
return this.
|
|
64482
|
+
cause = this.t3c_1;
|
|
64483
|
+
return this.x3c(message, responseCode, responseBody, cause);
|
|
64389
64484
|
};
|
|
64390
64485
|
HttpClientErrorJS.prototype.toString = function () {
|
|
64391
|
-
return 'HttpClientErrorJS(message=' + this.
|
|
64486
|
+
return 'HttpClientErrorJS(message=' + this.q3c_1 + ', responseCode=' + this.r3c_1 + ', responseBody=' + this.s3c_1 + ', cause=' + this.t3c_1 + ')';
|
|
64392
64487
|
};
|
|
64393
64488
|
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.
|
|
64489
|
+
var result = this.q3c_1 == null ? 0 : getStringHashCode(this.q3c_1);
|
|
64490
|
+
result = imul(result, 31) + (this.r3c_1 == null ? 0 : this.r3c_1) | 0;
|
|
64491
|
+
result = imul(result, 31) + (this.s3c_1 == null ? 0 : getStringHashCode(this.s3c_1)) | 0;
|
|
64492
|
+
result = imul(result, 31) + (this.t3c_1 == null ? 0 : hashCode(this.t3c_1)) | 0;
|
|
64398
64493
|
return result;
|
|
64399
64494
|
};
|
|
64400
64495
|
HttpClientErrorJS.prototype.equals = function (other) {
|
|
@@ -64403,13 +64498,13 @@ function requireClientsdkClientcore () {
|
|
|
64403
64498
|
if (!(other instanceof HttpClientErrorJS))
|
|
64404
64499
|
return false;
|
|
64405
64500
|
var tmp0_other_with_cast = other instanceof HttpClientErrorJS ? other : THROW_CCE();
|
|
64406
|
-
if (!(this.
|
|
64501
|
+
if (!(this.q3c_1 == tmp0_other_with_cast.q3c_1))
|
|
64407
64502
|
return false;
|
|
64408
|
-
if (!(this.
|
|
64503
|
+
if (!(this.r3c_1 == tmp0_other_with_cast.r3c_1))
|
|
64409
64504
|
return false;
|
|
64410
|
-
if (!(this.
|
|
64505
|
+
if (!(this.s3c_1 == tmp0_other_with_cast.s3c_1))
|
|
64411
64506
|
return false;
|
|
64412
|
-
if (!equals(this.
|
|
64507
|
+
if (!equals(this.t3c_1, tmp0_other_with_cast.t3c_1))
|
|
64413
64508
|
return false;
|
|
64414
64509
|
return true;
|
|
64415
64510
|
};
|
|
@@ -64422,11 +64517,11 @@ function requireClientsdkClientcore () {
|
|
|
64422
64517
|
});
|
|
64423
64518
|
Object.defineProperty(HttpClientErrorJS.prototype, 'responseCode', {
|
|
64424
64519
|
configurable: true,
|
|
64425
|
-
get: HttpClientErrorJS.prototype.
|
|
64520
|
+
get: HttpClientErrorJS.prototype.u3c
|
|
64426
64521
|
});
|
|
64427
64522
|
Object.defineProperty(HttpClientErrorJS.prototype, 'responseBody', {
|
|
64428
64523
|
configurable: true,
|
|
64429
|
-
get: HttpClientErrorJS.prototype.
|
|
64524
|
+
get: HttpClientErrorJS.prototype.v3c
|
|
64430
64525
|
});
|
|
64431
64526
|
Object.defineProperty(HttpClientErrorJS.prototype, 'cause', {
|
|
64432
64527
|
configurable: true,
|
|
@@ -64436,7 +64531,7 @@ function requireClientsdkClientcore () {
|
|
|
64436
64531
|
});
|
|
64437
64532
|
Object.defineProperty(HttpClientErrorJS.prototype, 'coreError', {
|
|
64438
64533
|
configurable: true,
|
|
64439
|
-
get: HttpClientErrorJS.prototype.
|
|
64534
|
+
get: HttpClientErrorJS.prototype.w3c
|
|
64440
64535
|
});
|
|
64441
64536
|
function get_SOCKET_CONNECTED() {
|
|
64442
64537
|
return SOCKET_CONNECTED;
|
|
@@ -64467,20 +64562,20 @@ function requireClientsdkClientcore () {
|
|
|
64467
64562
|
}
|
|
64468
64563
|
var REASON_PING_TIMEOUT;
|
|
64469
64564
|
var CancelReasonJS_RemoteCancel_instance;
|
|
64470
|
-
var
|
|
64471
|
-
var
|
|
64565
|
+
var CancelReasonJS_AnsweredElsewhere_instance;
|
|
64566
|
+
var CancelReasonJS_RejectedElsewhere_instance;
|
|
64472
64567
|
var CancelReasonJS_RemoteTimeout_instance;
|
|
64473
64568
|
function values_9() {
|
|
64474
|
-
return [CancelReasonJS_RemoteCancel_getInstance(),
|
|
64569
|
+
return [CancelReasonJS_RemoteCancel_getInstance(), CancelReasonJS_AnsweredElsewhere_getInstance(), CancelReasonJS_RejectedElsewhere_getInstance(), CancelReasonJS_RemoteTimeout_getInstance()];
|
|
64475
64570
|
}
|
|
64476
64571
|
function valueOf_9(value) {
|
|
64477
64572
|
switch (value) {
|
|
64478
64573
|
case 'RemoteCancel':
|
|
64479
64574
|
return CancelReasonJS_RemoteCancel_getInstance();
|
|
64480
|
-
case '
|
|
64481
|
-
return
|
|
64482
|
-
case '
|
|
64483
|
-
return
|
|
64575
|
+
case 'AnsweredElsewhere':
|
|
64576
|
+
return CancelReasonJS_AnsweredElsewhere_getInstance();
|
|
64577
|
+
case 'RejectedElsewhere':
|
|
64578
|
+
return CancelReasonJS_RejectedElsewhere_getInstance();
|
|
64484
64579
|
case 'RemoteTimeout':
|
|
64485
64580
|
return CancelReasonJS_RemoteTimeout_getInstance();
|
|
64486
64581
|
default:
|
|
@@ -64495,16 +64590,16 @@ function requireClientsdkClientcore () {
|
|
|
64495
64590
|
return Unit_getInstance();
|
|
64496
64591
|
CancelReasonJS_entriesInitialized = true;
|
|
64497
64592
|
CancelReasonJS_RemoteCancel_instance = new CancelReasonJS('RemoteCancel', 0, 'RemoteCancel');
|
|
64498
|
-
|
|
64499
|
-
|
|
64593
|
+
CancelReasonJS_AnsweredElsewhere_instance = new CancelReasonJS('AnsweredElsewhere', 1, 'AnsweredElsewhere');
|
|
64594
|
+
CancelReasonJS_RejectedElsewhere_instance = new CancelReasonJS('RejectedElsewhere', 2, 'RejectedElsewhere');
|
|
64500
64595
|
CancelReasonJS_RemoteTimeout_instance = new CancelReasonJS('RemoteTimeout', 3, 'RemoteTimeout');
|
|
64501
64596
|
}
|
|
64502
64597
|
function CancelReasonJS(name, ordinal, reason) {
|
|
64503
64598
|
Enum.call(this, name, ordinal);
|
|
64504
|
-
this.
|
|
64599
|
+
this.b3d_1 = reason;
|
|
64505
64600
|
}
|
|
64506
64601
|
CancelReasonJS.prototype.z29 = function () {
|
|
64507
|
-
return this.
|
|
64602
|
+
return this.b3d_1;
|
|
64508
64603
|
};
|
|
64509
64604
|
CancelReasonJS.$metadata$ = classMeta('CancelReasonJS', undefined, undefined, undefined, undefined, Enum.prototype);
|
|
64510
64605
|
Object.defineProperty(CancelReasonJS.prototype, 'reason', {
|
|
@@ -64520,17 +64615,23 @@ function requireClientsdkClientcore () {
|
|
|
64520
64615
|
get: CancelReasonJS.prototype.pe
|
|
64521
64616
|
});
|
|
64522
64617
|
function RTCQualityJS(callQuality) {
|
|
64523
|
-
this.
|
|
64524
|
-
this.
|
|
64525
|
-
this.
|
|
64526
|
-
this.
|
|
64527
|
-
this.
|
|
64528
|
-
this.
|
|
64529
|
-
this.
|
|
64530
|
-
this.
|
|
64531
|
-
this.
|
|
64532
|
-
this.
|
|
64618
|
+
this.c3d_1 = callQuality;
|
|
64619
|
+
this.d3d_1 = this.c3d_1.s2t_1;
|
|
64620
|
+
this.e3d_1 = this.c3d_1.t2t_1;
|
|
64621
|
+
this.f3d_1 = this.c3d_1.u2t_1;
|
|
64622
|
+
this.g3d_1 = this.c3d_1.v2t_1;
|
|
64623
|
+
this.h3d_1 = this.c3d_1.w2t_1;
|
|
64624
|
+
this.i3d_1 = this.c3d_1.x2t_1;
|
|
64625
|
+
this.j3d_1 = this.c3d_1.y2t_1;
|
|
64626
|
+
this.k3d_1 = this.c3d_1.z2t_1;
|
|
64627
|
+
this.l3d_1 = this.c3d_1.a2u_1;
|
|
64533
64628
|
}
|
|
64629
|
+
RTCQualityJS.prototype.m3d = function () {
|
|
64630
|
+
return this.d3d_1;
|
|
64631
|
+
};
|
|
64632
|
+
RTCQualityJS.prototype.n3d = function () {
|
|
64633
|
+
return this.e3d_1;
|
|
64634
|
+
};
|
|
64534
64635
|
RTCQualityJS.prototype.o3d = function () {
|
|
64535
64636
|
return this.f3d_1;
|
|
64536
64637
|
};
|
|
@@ -64552,28 +64653,22 @@ function requireClientsdkClientcore () {
|
|
|
64552
64653
|
RTCQualityJS.prototype.u3d = function () {
|
|
64553
64654
|
return this.l3d_1;
|
|
64554
64655
|
};
|
|
64555
|
-
RTCQualityJS.prototype.v3d = function () {
|
|
64556
|
-
return this.m3d_1;
|
|
64557
|
-
};
|
|
64558
|
-
RTCQualityJS.prototype.w3d = function () {
|
|
64559
|
-
return this.n3d_1;
|
|
64560
|
-
};
|
|
64561
64656
|
RTCQualityJS.prototype.copy = function (callQuality) {
|
|
64562
|
-
return this.
|
|
64657
|
+
return this.v3d(callQuality === void 1 ? this.c3d_1 : callQuality);
|
|
64563
64658
|
};
|
|
64564
|
-
RTCQualityJS.prototype.
|
|
64659
|
+
RTCQualityJS.prototype.v3d = function (callQuality) {
|
|
64565
64660
|
return new RTCQualityJS(callQuality);
|
|
64566
64661
|
};
|
|
64567
|
-
RTCQualityJS.prototype.
|
|
64662
|
+
RTCQualityJS.prototype.w3d = function (callQuality, $mask0, $handler) {
|
|
64568
64663
|
if (!(($mask0 & 1) === 0))
|
|
64569
|
-
callQuality = this.
|
|
64570
|
-
return this.
|
|
64664
|
+
callQuality = this.c3d_1;
|
|
64665
|
+
return this.v3d(callQuality);
|
|
64571
64666
|
};
|
|
64572
64667
|
RTCQualityJS.prototype.toString = function () {
|
|
64573
|
-
return 'RTCQualityJS(callQuality=' + this.
|
|
64668
|
+
return 'RTCQualityJS(callQuality=' + this.c3d_1 + ')';
|
|
64574
64669
|
};
|
|
64575
64670
|
RTCQualityJS.prototype.hashCode = function () {
|
|
64576
|
-
return this.
|
|
64671
|
+
return this.c3d_1.hashCode();
|
|
64577
64672
|
};
|
|
64578
64673
|
RTCQualityJS.prototype.equals = function (other) {
|
|
64579
64674
|
if (this === other)
|
|
@@ -64581,59 +64676,65 @@ function requireClientsdkClientcore () {
|
|
|
64581
64676
|
if (!(other instanceof RTCQualityJS))
|
|
64582
64677
|
return false;
|
|
64583
64678
|
var tmp0_other_with_cast = other instanceof RTCQualityJS ? other : THROW_CCE();
|
|
64584
|
-
if (!this.
|
|
64679
|
+
if (!this.c3d_1.equals(tmp0_other_with_cast.c3d_1))
|
|
64585
64680
|
return false;
|
|
64586
64681
|
return true;
|
|
64587
64682
|
};
|
|
64588
64683
|
RTCQualityJS.$metadata$ = classMeta('RTCQualityJS');
|
|
64589
64684
|
Object.defineProperty(RTCQualityJS.prototype, 'mos_score', {
|
|
64590
64685
|
configurable: true,
|
|
64591
|
-
get: RTCQualityJS.prototype.
|
|
64686
|
+
get: RTCQualityJS.prototype.m3d
|
|
64592
64687
|
});
|
|
64593
64688
|
Object.defineProperty(RTCQualityJS.prototype, 'quality_percentage', {
|
|
64594
64689
|
configurable: true,
|
|
64595
|
-
get: RTCQualityJS.prototype.
|
|
64690
|
+
get: RTCQualityJS.prototype.n3d
|
|
64596
64691
|
});
|
|
64597
64692
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_min_var', {
|
|
64598
64693
|
configurable: true,
|
|
64599
|
-
get: RTCQualityJS.prototype.
|
|
64694
|
+
get: RTCQualityJS.prototype.o3d
|
|
64600
64695
|
});
|
|
64601
64696
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_max_var', {
|
|
64602
64697
|
configurable: true,
|
|
64603
|
-
get: RTCQualityJS.prototype.
|
|
64698
|
+
get: RTCQualityJS.prototype.p3d
|
|
64604
64699
|
});
|
|
64605
64700
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_loss_rate', {
|
|
64606
64701
|
configurable: true,
|
|
64607
|
-
get: RTCQualityJS.prototype.
|
|
64702
|
+
get: RTCQualityJS.prototype.q3d
|
|
64608
64703
|
});
|
|
64609
64704
|
Object.defineProperty(RTCQualityJS.prototype, 'jitter_burst_rate', {
|
|
64610
64705
|
configurable: true,
|
|
64611
|
-
get: RTCQualityJS.prototype.
|
|
64706
|
+
get: RTCQualityJS.prototype.r3d
|
|
64612
64707
|
});
|
|
64613
64708
|
Object.defineProperty(RTCQualityJS.prototype, 'flaw_total', {
|
|
64614
64709
|
configurable: true,
|
|
64615
|
-
get: RTCQualityJS.prototype.
|
|
64710
|
+
get: RTCQualityJS.prototype.s3d
|
|
64616
64711
|
});
|
|
64617
64712
|
Object.defineProperty(RTCQualityJS.prototype, 'packet_cnt', {
|
|
64618
64713
|
configurable: true,
|
|
64619
|
-
get: RTCQualityJS.prototype.
|
|
64714
|
+
get: RTCQualityJS.prototype.t3d
|
|
64620
64715
|
});
|
|
64621
64716
|
Object.defineProperty(RTCQualityJS.prototype, 'packet_loss_perc', {
|
|
64622
64717
|
configurable: true,
|
|
64623
|
-
get: RTCQualityJS.prototype.
|
|
64718
|
+
get: RTCQualityJS.prototype.u3d
|
|
64624
64719
|
});
|
|
64625
64720
|
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.
|
|
64721
|
+
this.x3d_1 = audioRecvPackets;
|
|
64722
|
+
this.y3d_1 = audioRecvPacketsLost;
|
|
64723
|
+
this.z3d_1 = audioRecvBytes;
|
|
64724
|
+
this.a3e_1 = audioRecvJitter;
|
|
64725
|
+
this.b3e_1 = audioSentPackets;
|
|
64726
|
+
this.c3e_1 = audioSentBytes;
|
|
64727
|
+
this.d3e_1 = audioSentPacketsLost;
|
|
64728
|
+
this.e3e_1 = audioRtt;
|
|
64729
|
+
this.f3e_1 = audioSentJitter;
|
|
64730
|
+
this.g3e_1 = legId;
|
|
64636
64731
|
}
|
|
64732
|
+
RTCStatsJS.prototype.h3e = function () {
|
|
64733
|
+
return this.x3d_1;
|
|
64734
|
+
};
|
|
64735
|
+
RTCStatsJS.prototype.i3e = function () {
|
|
64736
|
+
return this.y3d_1;
|
|
64737
|
+
};
|
|
64637
64738
|
RTCStatsJS.prototype.j3e = function () {
|
|
64638
64739
|
return this.z3d_1;
|
|
64639
64740
|
};
|
|
@@ -64655,88 +64756,82 @@ function requireClientsdkClientcore () {
|
|
|
64655
64756
|
RTCStatsJS.prototype.p3e = function () {
|
|
64656
64757
|
return this.f3e_1;
|
|
64657
64758
|
};
|
|
64658
|
-
RTCStatsJS.prototype.q3e = function () {
|
|
64659
|
-
return this.g3e_1;
|
|
64660
|
-
};
|
|
64661
|
-
RTCStatsJS.prototype.r3e = function () {
|
|
64662
|
-
return this.h3e_1;
|
|
64663
|
-
};
|
|
64664
64759
|
RTCStatsJS.prototype.g1k = function () {
|
|
64665
|
-
return this.
|
|
64760
|
+
return this.g3e_1;
|
|
64666
64761
|
};
|
|
64667
64762
|
RTCStatsJS.prototype.component1 = function () {
|
|
64668
|
-
return this.
|
|
64763
|
+
return this.x3d_1;
|
|
64669
64764
|
};
|
|
64670
64765
|
RTCStatsJS.prototype.component2 = function () {
|
|
64671
|
-
return this.
|
|
64766
|
+
return this.y3d_1;
|
|
64672
64767
|
};
|
|
64673
64768
|
RTCStatsJS.prototype.component3 = function () {
|
|
64674
|
-
return this.
|
|
64769
|
+
return this.z3d_1;
|
|
64675
64770
|
};
|
|
64676
64771
|
RTCStatsJS.prototype.component4 = function () {
|
|
64677
|
-
return this.
|
|
64772
|
+
return this.a3e_1;
|
|
64678
64773
|
};
|
|
64679
64774
|
RTCStatsJS.prototype.component5 = function () {
|
|
64680
|
-
return this.
|
|
64775
|
+
return this.b3e_1;
|
|
64681
64776
|
};
|
|
64682
64777
|
RTCStatsJS.prototype.component6 = function () {
|
|
64683
|
-
return this.
|
|
64778
|
+
return this.c3e_1;
|
|
64684
64779
|
};
|
|
64685
64780
|
RTCStatsJS.prototype.component7 = function () {
|
|
64686
|
-
return this.
|
|
64781
|
+
return this.d3e_1;
|
|
64687
64782
|
};
|
|
64688
64783
|
RTCStatsJS.prototype.component8 = function () {
|
|
64689
|
-
return this.
|
|
64784
|
+
return this.e3e_1;
|
|
64690
64785
|
};
|
|
64691
64786
|
RTCStatsJS.prototype.component9 = function () {
|
|
64692
|
-
return this.
|
|
64787
|
+
return this.f3e_1;
|
|
64693
64788
|
};
|
|
64694
64789
|
RTCStatsJS.prototype.component10 = function () {
|
|
64695
|
-
return this.
|
|
64790
|
+
return this.g3e_1;
|
|
64696
64791
|
};
|
|
64697
64792
|
RTCStatsJS.prototype.copy = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId) {
|
|
64698
|
-
return this.
|
|
64793
|
+
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
64794
|
};
|
|
64700
|
-
RTCStatsJS.prototype.
|
|
64795
|
+
RTCStatsJS.prototype.q3e = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId) {
|
|
64701
64796
|
return new RTCStatsJS(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId);
|
|
64702
64797
|
};
|
|
64703
|
-
RTCStatsJS.prototype.
|
|
64798
|
+
RTCStatsJS.prototype.r3e = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId, $mask0, $handler) {
|
|
64704
64799
|
if (!(($mask0 & 1) === 0))
|
|
64705
|
-
audioRecvPackets = this.
|
|
64800
|
+
audioRecvPackets = this.x3d_1;
|
|
64706
64801
|
if (!(($mask0 & 2) === 0))
|
|
64707
|
-
audioRecvPacketsLost = this.
|
|
64802
|
+
audioRecvPacketsLost = this.y3d_1;
|
|
64708
64803
|
if (!(($mask0 & 4) === 0))
|
|
64709
|
-
audioRecvBytes = this.
|
|
64804
|
+
audioRecvBytes = this.z3d_1;
|
|
64710
64805
|
if (!(($mask0 & 8) === 0))
|
|
64711
|
-
audioRecvJitter = this.
|
|
64806
|
+
audioRecvJitter = this.a3e_1;
|
|
64712
64807
|
if (!(($mask0 & 16) === 0))
|
|
64713
|
-
audioSentPackets = this.
|
|
64808
|
+
audioSentPackets = this.b3e_1;
|
|
64714
64809
|
if (!(($mask0 & 32) === 0))
|
|
64715
|
-
audioSentBytes = this.
|
|
64810
|
+
audioSentBytes = this.c3e_1;
|
|
64716
64811
|
if (!(($mask0 & 64) === 0))
|
|
64717
|
-
audioSentPacketsLost = this.
|
|
64812
|
+
audioSentPacketsLost = this.d3e_1;
|
|
64718
64813
|
if (!(($mask0 & 128) === 0))
|
|
64719
|
-
audioRtt = this.
|
|
64814
|
+
audioRtt = this.e3e_1;
|
|
64720
64815
|
if (!(($mask0 & 256) === 0))
|
|
64721
|
-
audioSentJitter = this.
|
|
64816
|
+
audioSentJitter = this.f3e_1;
|
|
64722
64817
|
if (!(($mask0 & 512) === 0))
|
|
64723
|
-
legId = this.
|
|
64724
|
-
return this.
|
|
64818
|
+
legId = this.g3e_1;
|
|
64819
|
+
return this.q3e(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, legId);
|
|
64725
64820
|
};
|
|
64726
64821
|
RTCStatsJS.prototype.toString = function () {
|
|
64727
|
-
return 'RTCStatsJS(audioRecvPackets=' + toString(this.
|
|
64822
|
+
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
64823
|
};
|
|
64729
64824
|
RTCStatsJS.prototype.hashCode = function () {
|
|
64730
|
-
var result = this.
|
|
64825
|
+
var result = this.x3d_1 == null ? 0 : hashCode(this.x3d_1);
|
|
64826
|
+
result = imul(result, 31) + (this.y3d_1 == null ? 0 : hashCode(this.y3d_1)) | 0;
|
|
64827
|
+
result = imul(result, 31) + (this.z3d_1 == null ? 0 : hashCode(this.z3d_1)) | 0;
|
|
64731
64828
|
result = imul(result, 31) + (this.a3e_1 == null ? 0 : hashCode(this.a3e_1)) | 0;
|
|
64732
64829
|
result = imul(result, 31) + (this.b3e_1 == null ? 0 : hashCode(this.b3e_1)) | 0;
|
|
64733
64830
|
result = imul(result, 31) + (this.c3e_1 == null ? 0 : hashCode(this.c3e_1)) | 0;
|
|
64734
64831
|
result = imul(result, 31) + (this.d3e_1 == null ? 0 : hashCode(this.d3e_1)) | 0;
|
|
64735
64832
|
result = imul(result, 31) + (this.e3e_1 == null ? 0 : hashCode(this.e3e_1)) | 0;
|
|
64736
64833
|
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;
|
|
64834
|
+
result = imul(result, 31) + getStringHashCode(this.g3e_1) | 0;
|
|
64740
64835
|
return result;
|
|
64741
64836
|
};
|
|
64742
64837
|
RTCStatsJS.prototype.equals = function (other) {
|
|
@@ -64745,6 +64840,10 @@ function requireClientsdkClientcore () {
|
|
|
64745
64840
|
if (!(other instanceof RTCStatsJS))
|
|
64746
64841
|
return false;
|
|
64747
64842
|
var tmp0_other_with_cast = other instanceof RTCStatsJS ? other : THROW_CCE();
|
|
64843
|
+
if (!equals(this.x3d_1, tmp0_other_with_cast.x3d_1))
|
|
64844
|
+
return false;
|
|
64845
|
+
if (!equals(this.y3d_1, tmp0_other_with_cast.y3d_1))
|
|
64846
|
+
return false;
|
|
64748
64847
|
if (!equals(this.z3d_1, tmp0_other_with_cast.z3d_1))
|
|
64749
64848
|
return false;
|
|
64750
64849
|
if (!equals(this.a3e_1, tmp0_other_with_cast.a3e_1))
|
|
@@ -64759,50 +64858,46 @@ function requireClientsdkClientcore () {
|
|
|
64759
64858
|
return false;
|
|
64760
64859
|
if (!equals(this.f3e_1, tmp0_other_with_cast.f3e_1))
|
|
64761
64860
|
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))
|
|
64861
|
+
if (!(this.g3e_1 === tmp0_other_with_cast.g3e_1))
|
|
64767
64862
|
return false;
|
|
64768
64863
|
return true;
|
|
64769
64864
|
};
|
|
64770
64865
|
RTCStatsJS.$metadata$ = classMeta('RTCStatsJS');
|
|
64771
64866
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvPackets', {
|
|
64772
64867
|
configurable: true,
|
|
64773
|
-
get: RTCStatsJS.prototype.
|
|
64868
|
+
get: RTCStatsJS.prototype.h3e
|
|
64774
64869
|
});
|
|
64775
64870
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvPacketsLost', {
|
|
64776
64871
|
configurable: true,
|
|
64777
|
-
get: RTCStatsJS.prototype.
|
|
64872
|
+
get: RTCStatsJS.prototype.i3e
|
|
64778
64873
|
});
|
|
64779
64874
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvBytes', {
|
|
64780
64875
|
configurable: true,
|
|
64781
|
-
get: RTCStatsJS.prototype.
|
|
64876
|
+
get: RTCStatsJS.prototype.j3e
|
|
64782
64877
|
});
|
|
64783
64878
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRecvJitter', {
|
|
64784
64879
|
configurable: true,
|
|
64785
|
-
get: RTCStatsJS.prototype.
|
|
64880
|
+
get: RTCStatsJS.prototype.k3e
|
|
64786
64881
|
});
|
|
64787
64882
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentPackets', {
|
|
64788
64883
|
configurable: true,
|
|
64789
|
-
get: RTCStatsJS.prototype.
|
|
64884
|
+
get: RTCStatsJS.prototype.l3e
|
|
64790
64885
|
});
|
|
64791
64886
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentBytes', {
|
|
64792
64887
|
configurable: true,
|
|
64793
|
-
get: RTCStatsJS.prototype.
|
|
64888
|
+
get: RTCStatsJS.prototype.m3e
|
|
64794
64889
|
});
|
|
64795
64890
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentPacketsLost', {
|
|
64796
64891
|
configurable: true,
|
|
64797
|
-
get: RTCStatsJS.prototype.
|
|
64892
|
+
get: RTCStatsJS.prototype.n3e
|
|
64798
64893
|
});
|
|
64799
64894
|
Object.defineProperty(RTCStatsJS.prototype, 'audioRtt', {
|
|
64800
64895
|
configurable: true,
|
|
64801
|
-
get: RTCStatsJS.prototype.
|
|
64896
|
+
get: RTCStatsJS.prototype.o3e
|
|
64802
64897
|
});
|
|
64803
64898
|
Object.defineProperty(RTCStatsJS.prototype, 'audioSentJitter', {
|
|
64804
64899
|
configurable: true,
|
|
64805
|
-
get: RTCStatsJS.prototype.
|
|
64900
|
+
get: RTCStatsJS.prototype.p3e
|
|
64806
64901
|
});
|
|
64807
64902
|
Object.defineProperty(RTCStatsJS.prototype, 'legId', {
|
|
64808
64903
|
configurable: true,
|
|
@@ -64813,9 +64908,9 @@ function requireClientsdkClientcore () {
|
|
|
64813
64908
|
}
|
|
64814
64909
|
function getCancelReason(reason) {
|
|
64815
64910
|
if (reason === 'RejectedElsewhere')
|
|
64816
|
-
return
|
|
64911
|
+
return CancelReasonJS_RejectedElsewhere_getInstance();
|
|
64817
64912
|
if (reason === 'AnsweredElsewhere')
|
|
64818
|
-
return
|
|
64913
|
+
return CancelReasonJS_AnsweredElsewhere_getInstance();
|
|
64819
64914
|
if (reason === 'RemoteTimeout')
|
|
64820
64915
|
return CancelReasonJS_RemoteTimeout_getInstance();
|
|
64821
64916
|
return CancelReasonJS_RemoteCancel_getInstance();
|
|
@@ -64840,7 +64935,7 @@ function requireClientsdkClientcore () {
|
|
|
64840
64935
|
};
|
|
64841
64936
|
}
|
|
64842
64937
|
function HttpClientJSAdapter$1($js) {
|
|
64843
|
-
this.
|
|
64938
|
+
this.s3e_1 = $js;
|
|
64844
64939
|
}
|
|
64845
64940
|
HttpClientJSAdapter$1.prototype.v2u = function (verb, url, headers, body, callback) {
|
|
64846
64941
|
var tmp = verb.toString();
|
|
@@ -64852,7 +64947,7 @@ function requireClientsdkClientcore () {
|
|
|
64852
64947
|
tmp$ret$0 = fromMap(JSON, headers);
|
|
64853
64948
|
tmp$ret$1 = tmp$ret$0;
|
|
64854
64949
|
var tmp_0 = tmp$ret$1;
|
|
64855
|
-
this.
|
|
64950
|
+
this.s3e_1.request(tmp, url, tmp_0, body, HttpClientJSAdapter$o$request$lambda(callback));
|
|
64856
64951
|
};
|
|
64857
64952
|
HttpClientJSAdapter$1.$metadata$ = classMeta(undefined, [HTTPClient]);
|
|
64858
64953
|
function SocketClientJSAdapter$o$emit$lambda($callback) {
|
|
@@ -64876,14 +64971,14 @@ function requireClientsdkClientcore () {
|
|
|
64876
64971
|
};
|
|
64877
64972
|
}
|
|
64878
64973
|
function SocketClientJSAdapter$adapter$1($js) {
|
|
64879
|
-
this.
|
|
64880
|
-
this.
|
|
64974
|
+
this.u3e_1 = $js;
|
|
64975
|
+
this.t3e_1 = null;
|
|
64881
64976
|
}
|
|
64882
64977
|
SocketClientJSAdapter$adapter$1.prototype.y2u = function (_set____db54di) {
|
|
64883
|
-
this.
|
|
64978
|
+
this.t3e_1 = _set____db54di;
|
|
64884
64979
|
};
|
|
64885
|
-
SocketClientJSAdapter$adapter$1.prototype.
|
|
64886
|
-
return this.
|
|
64980
|
+
SocketClientJSAdapter$adapter$1.prototype.v3e = function () {
|
|
64981
|
+
return this.t3e_1;
|
|
64887
64982
|
};
|
|
64888
64983
|
SocketClientJSAdapter$adapter$1.prototype.z2u = function (type, msg, callback) {
|
|
64889
64984
|
var tmp0_safe_receiver = msg;
|
|
@@ -64901,26 +64996,26 @@ function requireClientsdkClientcore () {
|
|
|
64901
64996
|
tmp = tmp$ret$1;
|
|
64902
64997
|
}
|
|
64903
64998
|
var tmp_0 = tmp;
|
|
64904
|
-
this.
|
|
64999
|
+
this.u3e_1.emit(type, tmp_0, SocketClientJSAdapter$o$emit$lambda(callback));
|
|
64905
65000
|
};
|
|
64906
65001
|
SocketClientJSAdapter$adapter$1.prototype.a2v = function (host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, token, session_id, query) {
|
|
64907
|
-
this.
|
|
65002
|
+
this.u3e_1.connect(host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, query);
|
|
64908
65003
|
};
|
|
64909
65004
|
SocketClientJSAdapter$adapter$1.prototype.b2v = function () {
|
|
64910
|
-
this.
|
|
65005
|
+
this.u3e_1.disconnect();
|
|
64911
65006
|
};
|
|
64912
65007
|
SocketClientJSAdapter$adapter$1.prototype.c2v = function (token) {
|
|
64913
|
-
this.
|
|
65008
|
+
this.u3e_1.setConnectParamsSocketConfig(token);
|
|
64914
65009
|
};
|
|
64915
65010
|
SocketClientJSAdapter$adapter$1.prototype.d2v = function (milliseconds, callback) {
|
|
64916
|
-
this.
|
|
65011
|
+
this.u3e_1.startVerifyResponseTimer(milliseconds, callback);
|
|
64917
65012
|
};
|
|
64918
65013
|
SocketClientJSAdapter$adapter$1.$metadata$ = classMeta(undefined, [SocketClient]);
|
|
64919
65014
|
function SocketClientJSAdapter$1($adapter) {
|
|
64920
|
-
this.
|
|
65015
|
+
this.w3e_1 = $adapter;
|
|
64921
65016
|
}
|
|
64922
65017
|
SocketClientJSAdapter$1.prototype.didReceiveNewSocketEvent = function (type, body) {
|
|
64923
|
-
var tmp0_safe_receiver = this.
|
|
65018
|
+
var tmp0_safe_receiver = this.w3e_1.t3e_1;
|
|
64924
65019
|
if (tmp0_safe_receiver == null)
|
|
64925
65020
|
null;
|
|
64926
65021
|
else {
|
|
@@ -64958,7 +65053,7 @@ function requireClientsdkClientcore () {
|
|
|
64958
65053
|
var tmp;
|
|
64959
65054
|
switch (tmp0_subject_0) {
|
|
64960
65055
|
case 'NXMCORE_REASON_SERVER_DISCONNECTED':
|
|
64961
|
-
var tmp1_safe_receiver_0 = this.
|
|
65056
|
+
var tmp1_safe_receiver_0 = this.w3e_1.t3e_1;
|
|
64962
65057
|
var tmp_0;
|
|
64963
65058
|
if (tmp1_safe_receiver_0 == null) {
|
|
64964
65059
|
tmp_0 = null;
|
|
@@ -64970,7 +65065,7 @@ function requireClientsdkClientcore () {
|
|
|
64970
65065
|
tmp = tmp_0;
|
|
64971
65066
|
break;
|
|
64972
65067
|
case 'NXMCORE_REASON_CLIENT_DISCONNECTED':
|
|
64973
|
-
var tmp2_safe_receiver = this.
|
|
65068
|
+
var tmp2_safe_receiver = this.w3e_1.t3e_1;
|
|
64974
65069
|
var tmp_1;
|
|
64975
65070
|
if (tmp2_safe_receiver == null) {
|
|
64976
65071
|
tmp_1 = null;
|
|
@@ -64982,7 +65077,7 @@ function requireClientsdkClientcore () {
|
|
|
64982
65077
|
tmp = tmp_1;
|
|
64983
65078
|
break;
|
|
64984
65079
|
case 'NXMCORE_CLIENT_NETWORK_ERROR':
|
|
64985
|
-
var tmp3_safe_receiver = this.
|
|
65080
|
+
var tmp3_safe_receiver = this.w3e_1.t3e_1;
|
|
64986
65081
|
var tmp_2;
|
|
64987
65082
|
if (tmp3_safe_receiver == null) {
|
|
64988
65083
|
tmp_2 = null;
|
|
@@ -64994,7 +65089,7 @@ function requireClientsdkClientcore () {
|
|
|
64994
65089
|
tmp = tmp_2;
|
|
64995
65090
|
break;
|
|
64996
65091
|
case 'NXMCORE_REASON_PING_TIMEOUT':
|
|
64997
|
-
var tmp4_safe_receiver = this.
|
|
65092
|
+
var tmp4_safe_receiver = this.w3e_1.t3e_1;
|
|
64998
65093
|
var tmp_3;
|
|
64999
65094
|
if (tmp4_safe_receiver == null) {
|
|
65000
65095
|
tmp_3 = null;
|
|
@@ -65006,7 +65101,7 @@ function requireClientsdkClientcore () {
|
|
|
65006
65101
|
tmp = tmp_3;
|
|
65007
65102
|
break;
|
|
65008
65103
|
default:
|
|
65009
|
-
var tmp5_safe_receiver = this.
|
|
65104
|
+
var tmp5_safe_receiver = this.w3e_1.t3e_1;
|
|
65010
65105
|
var tmp_4;
|
|
65011
65106
|
if (tmp5_safe_receiver == null) {
|
|
65012
65107
|
tmp_4 = null;
|
|
@@ -65024,43 +65119,43 @@ function requireClientsdkClientcore () {
|
|
|
65024
65119
|
};
|
|
65025
65120
|
SocketClientJSAdapter$1.$metadata$ = classMeta();
|
|
65026
65121
|
function MediaClientJSAdapter$adapter$1($js) {
|
|
65027
|
-
this.
|
|
65028
|
-
this.
|
|
65122
|
+
this.y3e_1 = $js;
|
|
65123
|
+
this.x3e_1 = null;
|
|
65029
65124
|
}
|
|
65030
65125
|
MediaClientJSAdapter$adapter$1.prototype.g2v = function (_set____db54di) {
|
|
65031
|
-
this.
|
|
65126
|
+
this.x3e_1 = _set____db54di;
|
|
65032
65127
|
};
|
|
65033
65128
|
MediaClientJSAdapter$adapter$1.prototype.h2v = function (closure) {
|
|
65034
|
-
this.
|
|
65129
|
+
this.y3e_1.enableMediaOutbound(closure);
|
|
65035
65130
|
};
|
|
65036
|
-
MediaClientJSAdapter$adapter$1.prototype.
|
|
65037
|
-
this.
|
|
65131
|
+
MediaClientJSAdapter$adapter$1.prototype.z3e = function (closure, offerSDP, rtcId) {
|
|
65132
|
+
this.y3e_1.enableMediaInbound(closure, offerSDP, rtcId);
|
|
65038
65133
|
};
|
|
65039
65134
|
MediaClientJSAdapter$adapter$1.prototype.i2v = function (closure, offerSDP, rtcId) {
|
|
65040
|
-
return this.
|
|
65135
|
+
return this.z3e(closure, offerSDP, rtcId);
|
|
65041
65136
|
};
|
|
65042
65137
|
MediaClientJSAdapter$adapter$1.prototype.j2v = function (id, sdp) {
|
|
65043
|
-
this.
|
|
65138
|
+
this.y3e_1.processAnswer(id, sdp);
|
|
65044
65139
|
};
|
|
65045
65140
|
MediaClientJSAdapter$adapter$1.prototype.k2v = function (id) {
|
|
65046
|
-
this.
|
|
65141
|
+
this.y3e_1.disableMedia(id);
|
|
65047
65142
|
};
|
|
65048
65143
|
MediaClientJSAdapter$adapter$1.prototype.l2v = function (id) {
|
|
65049
|
-
this.
|
|
65144
|
+
this.y3e_1.mute(id);
|
|
65050
65145
|
};
|
|
65051
65146
|
MediaClientJSAdapter$adapter$1.prototype.m2v = function (id) {
|
|
65052
|
-
this.
|
|
65147
|
+
this.y3e_1.unmute(id);
|
|
65053
65148
|
};
|
|
65054
65149
|
MediaClientJSAdapter$adapter$1.prototype.n2v = function (interval, mediaId) {
|
|
65055
|
-
this.
|
|
65150
|
+
this.y3e_1.enableRtcStatsCollection(interval, mediaId);
|
|
65056
65151
|
};
|
|
65057
65152
|
MediaClientJSAdapter$adapter$1.$metadata$ = classMeta(undefined, [MediaClient]);
|
|
65058
65153
|
function MediaClientJSAdapter$1($adapter) {
|
|
65059
|
-
this.
|
|
65154
|
+
this.a3f_1 = $adapter;
|
|
65060
65155
|
}
|
|
65061
65156
|
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.
|
|
65157
|
+
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);
|
|
65158
|
+
var tmp0_safe_receiver = this.a3f_1.x3e_1;
|
|
65064
65159
|
if (tmp0_safe_receiver == null)
|
|
65065
65160
|
null;
|
|
65066
65161
|
else {
|
|
@@ -65072,13 +65167,13 @@ function requireClientsdkClientcore () {
|
|
|
65072
65167
|
CancelReasonJS_initEntries();
|
|
65073
65168
|
return CancelReasonJS_RemoteCancel_instance;
|
|
65074
65169
|
}
|
|
65075
|
-
function
|
|
65170
|
+
function CancelReasonJS_AnsweredElsewhere_getInstance() {
|
|
65076
65171
|
CancelReasonJS_initEntries();
|
|
65077
|
-
return
|
|
65172
|
+
return CancelReasonJS_AnsweredElsewhere_instance;
|
|
65078
65173
|
}
|
|
65079
|
-
function
|
|
65174
|
+
function CancelReasonJS_RejectedElsewhere_getInstance() {
|
|
65080
65175
|
CancelReasonJS_initEntries();
|
|
65081
|
-
return
|
|
65176
|
+
return CancelReasonJS_RejectedElsewhere_instance;
|
|
65082
65177
|
}
|
|
65083
65178
|
function CancelReasonJS_RemoteTimeout_getInstance() {
|
|
65084
65179
|
CancelReasonJS_initEntries();
|
|
@@ -65550,13 +65645,13 @@ function requireClientsdkClientcore () {
|
|
|
65550
65645
|
configurable: true,
|
|
65551
65646
|
get: CancelReasonJS_RemoteCancel_getInstance
|
|
65552
65647
|
});
|
|
65553
|
-
Object.defineProperty($vonage.CancelReasonJS, '
|
|
65648
|
+
Object.defineProperty($vonage.CancelReasonJS, 'AnsweredElsewhere', {
|
|
65554
65649
|
configurable: true,
|
|
65555
|
-
get:
|
|
65650
|
+
get: CancelReasonJS_AnsweredElsewhere_getInstance
|
|
65556
65651
|
});
|
|
65557
|
-
Object.defineProperty($vonage.CancelReasonJS, '
|
|
65652
|
+
Object.defineProperty($vonage.CancelReasonJS, 'RejectedElsewhere', {
|
|
65558
65653
|
configurable: true,
|
|
65559
|
-
get:
|
|
65654
|
+
get: CancelReasonJS_RejectedElsewhere_getInstance
|
|
65560
65655
|
});
|
|
65561
65656
|
Object.defineProperty($vonage.CancelReasonJS, 'RemoteTimeout', {
|
|
65562
65657
|
configurable: true,
|
|
@@ -66084,6 +66179,7 @@ const CSErrorCodes = clientsdkClientcore_jsExports.vonage.CSErrorCodesJS;
|
|
|
66084
66179
|
const SessionErrorCodes = clientsdkClientcore_jsExports.vonage.SessionErrorCodesJS;
|
|
66085
66180
|
|
|
66086
66181
|
const CancelReason = clientsdkClientcore_jsExports.vonage.CancelReasonJS;
|
|
66182
|
+
const HangupReason = clientsdkClientcore_jsExports.vonage.HangupReasonJS;
|
|
66087
66183
|
const SessionErrorReason = clientsdkClientcore_jsExports.vonage.SessionErrorReasonJS;
|
|
66088
66184
|
const LegStatus = clientsdkClientcore_jsExports.vonage.LegStatusJS;
|
|
66089
66185
|
const setVonageClientLoggingLevel = setDefaultLoggingLevel;
|
|
@@ -66124,6 +66220,7 @@ exports.ChannelType = ChannelType;
|
|
|
66124
66220
|
exports.ClientConfig = ClientConfig;
|
|
66125
66221
|
exports.ConfigRegion = ConfigRegion;
|
|
66126
66222
|
exports.ConversationState = ConversationState;
|
|
66223
|
+
exports.HangupReason = HangupReason;
|
|
66127
66224
|
exports.LegStatus = LegStatus;
|
|
66128
66225
|
exports.LoggingLevel = LoggingLevel;
|
|
66129
66226
|
exports.MemberInvitedEvent = MemberInvitedEvent;
|