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