@vonage/client-sdk 2.6.0 → 2.6.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.
@@ -34542,7 +34542,7 @@ function requireClientsdkClientcore () {
34542
34542
  initMetadataForClass(ProcessAnswerError, 'ProcessAnswerError', VOID, MediaClientError);
34543
34543
  initMetadataForClass(CreateAnswerError, 'CreateAnswerError', CreateAnswerError, MediaClientError);
34544
34544
  initMetadataForClass(CreateOfferError, 'CreateOfferError', CreateOfferError, MediaClientError);
34545
- initMetadataForClass(VonageError, 'VonageError', VOID, Exception);
34545
+ initMetadataForClass(VonageError, 'VonageError', VonageError, Exception);
34546
34546
  initMetadataForClass(VonageErrorType, 'VonageErrorType', VOID, Enum);
34547
34547
  initMetadataForClass(EventAPIImpl, 'EventAPIImpl');
34548
34548
  initMetadataForCompanion(Companion_151);
@@ -34883,7 +34883,7 @@ function requireClientsdkClientcore () {
34883
34883
  initMetadataForClass(runAfterDelay$1);
34884
34884
  //endregion
34885
34885
  function BuildKonfig() {
34886
- this.t1e_1 = '2.6.0';
34886
+ this.t1e_1 = '2.6.1';
34887
34887
  }
34888
34888
  var BuildKonfig_instance;
34889
34889
  function BuildKonfig_getInstance() {
@@ -85683,6 +85683,11 @@ function requireClientsdkClientcore_js () {
85683
85683
  captureStack(this, VonageErrorJS);
85684
85684
  this.type = map_6(vonageError.q39_1);
85685
85685
  this.code = vonageError.r39_1;
85686
+ this.source = vonageError.s39_1;
85687
+ this.isRetriable = vonageError.t39_1;
85688
+ var tmp = this;
85689
+ var tmp0_safe_receiver = vonageError.u39_1;
85690
+ tmp.retryAfter = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.c3();
85686
85691
  this.kmpCause = vonageError.cause;
85687
85692
  }
85688
85693
  protoOf(VonageErrorJS).e1k = function () {
@@ -85691,7 +85696,16 @@ function requireClientsdkClientcore_js () {
85691
85696
  protoOf(VonageErrorJS).k30 = function () {
85692
85697
  return this.code;
85693
85698
  };
85699
+ protoOf(VonageErrorJS).u1d = function () {
85700
+ return this.source;
85701
+ };
85694
85702
  protoOf(VonageErrorJS).k46 = function () {
85703
+ return this.isRetriable;
85704
+ };
85705
+ protoOf(VonageErrorJS).l46 = function () {
85706
+ return this.retryAfter;
85707
+ };
85708
+ protoOf(VonageErrorJS).m46 = function () {
85695
85709
  return this.kmpCause;
85696
85710
  };
85697
85711
  function VonageErrorTypeJsObject() {
@@ -85701,19 +85715,19 @@ function requireClientsdkClientcore_js () {
85701
85715
  this.INTERNAL_ERROR = 'INTERNAL_ERROR';
85702
85716
  this.UNKNOWN_ERROR = 'UNKNOWN_ERROR';
85703
85717
  }
85704
- protoOf(VonageErrorTypeJsObject).l46 = function () {
85718
+ protoOf(VonageErrorTypeJsObject).n46 = function () {
85705
85719
  return this.CS_ERROR;
85706
85720
  };
85707
- protoOf(VonageErrorTypeJsObject).m46 = function () {
85721
+ protoOf(VonageErrorTypeJsObject).o46 = function () {
85708
85722
  return this.NETWORK_ERROR;
85709
85723
  };
85710
- protoOf(VonageErrorTypeJsObject).n46 = function () {
85724
+ protoOf(VonageErrorTypeJsObject).p46 = function () {
85711
85725
  return this.SESSION_ERROR;
85712
85726
  };
85713
- protoOf(VonageErrorTypeJsObject).o46 = function () {
85727
+ protoOf(VonageErrorTypeJsObject).q46 = function () {
85714
85728
  return this.INTERNAL_ERROR;
85715
85729
  };
85716
- protoOf(VonageErrorTypeJsObject).p46 = function () {
85730
+ protoOf(VonageErrorTypeJsObject).r46 = function () {
85717
85731
  return this.UNKNOWN_ERROR;
85718
85732
  };
85719
85733
  protoOf(VonageErrorTypeJsObject).toString = function () {
@@ -85738,7 +85752,7 @@ function requireClientsdkClientcore_js () {
85738
85752
  extendThrowable(this);
85739
85753
  captureStack(this, MediaClientErrorJS);
85740
85754
  }
85741
- protoOf(MediaClientErrorJS).q46 = function () {
85755
+ protoOf(MediaClientErrorJS).s46 = function () {
85742
85756
  var tmp;
85743
85757
  if (this instanceof PeerConnectionNotFoundJS) {
85744
85758
  tmp = new PeerConnectionNotFound(this.legId);
@@ -85768,18 +85782,18 @@ function requireClientsdkClientcore_js () {
85768
85782
  captureStack(this, PeerConnectionNotFoundJS);
85769
85783
  this.legId = legId;
85770
85784
  }
85771
- protoOf(PeerConnectionNotFoundJS).s46 = function () {
85785
+ protoOf(PeerConnectionNotFoundJS).u46 = function () {
85772
85786
  return this.legId;
85773
85787
  };
85774
85788
  protoOf(PeerConnectionNotFoundJS).r8 = function () {
85775
85789
  return this.legId;
85776
85790
  };
85777
- protoOf(PeerConnectionNotFoundJS).t46 = function (legId) {
85791
+ protoOf(PeerConnectionNotFoundJS).v46 = function (legId) {
85778
85792
  return new PeerConnectionNotFoundJS(legId);
85779
85793
  };
85780
85794
  protoOf(PeerConnectionNotFoundJS).copy = function (legId, $super) {
85781
85795
  legId = legId === VOID ? this.legId : legId;
85782
- return this.t46(legId);
85796
+ return this.v46(legId);
85783
85797
  };
85784
85798
  protoOf(PeerConnectionNotFoundJS).toString = function () {
85785
85799
  return 'PeerConnectionNotFoundJS(legId=' + this.legId + ')';
@@ -85802,18 +85816,18 @@ function requireClientsdkClientcore_js () {
85802
85816
  captureStack(this, TrackNotFoundJS);
85803
85817
  this.legId = legId;
85804
85818
  }
85805
- protoOf(TrackNotFoundJS).s46 = function () {
85819
+ protoOf(TrackNotFoundJS).u46 = function () {
85806
85820
  return this.legId;
85807
85821
  };
85808
85822
  protoOf(TrackNotFoundJS).r8 = function () {
85809
85823
  return this.legId;
85810
85824
  };
85811
- protoOf(TrackNotFoundJS).t46 = function (legId) {
85825
+ protoOf(TrackNotFoundJS).v46 = function (legId) {
85812
85826
  return new TrackNotFoundJS(legId);
85813
85827
  };
85814
85828
  protoOf(TrackNotFoundJS).copy = function (legId, $super) {
85815
85829
  legId = legId === VOID ? this.legId : legId;
85816
- return this.t46(legId);
85830
+ return this.v46(legId);
85817
85831
  };
85818
85832
  protoOf(TrackNotFoundJS).toString = function () {
85819
85833
  return 'TrackNotFoundJS(legId=' + this.legId + ')';
@@ -85836,34 +85850,34 @@ function requireClientsdkClientcore_js () {
85836
85850
  MediaClientErrorJS.call(this);
85837
85851
  captureStack(this, ProcessAnswerErrorJS);
85838
85852
  this.legId = legId;
85839
- this.r46_1 = message;
85853
+ this.t46_1 = message;
85840
85854
  }
85841
- protoOf(ProcessAnswerErrorJS).s46 = function () {
85855
+ protoOf(ProcessAnswerErrorJS).u46 = function () {
85842
85856
  return this.legId;
85843
85857
  };
85844
85858
  protoOf(ProcessAnswerErrorJS).n8 = function () {
85845
- return this.r46_1;
85859
+ return this.t46_1;
85846
85860
  };
85847
85861
  protoOf(ProcessAnswerErrorJS).r8 = function () {
85848
85862
  return this.legId;
85849
85863
  };
85850
85864
  protoOf(ProcessAnswerErrorJS).s8 = function () {
85851
- return this.r46_1;
85865
+ return this.t46_1;
85852
85866
  };
85853
- protoOf(ProcessAnswerErrorJS).u46 = function (legId, message) {
85867
+ protoOf(ProcessAnswerErrorJS).w46 = function (legId, message) {
85854
85868
  return new ProcessAnswerErrorJS(legId, message);
85855
85869
  };
85856
85870
  protoOf(ProcessAnswerErrorJS).copy = function (legId, message, $super) {
85857
85871
  legId = legId === VOID ? this.legId : legId;
85858
- message = message === VOID ? this.r46_1 : message;
85859
- return this.u46(legId, message);
85872
+ message = message === VOID ? this.t46_1 : message;
85873
+ return this.w46(legId, message);
85860
85874
  };
85861
85875
  protoOf(ProcessAnswerErrorJS).toString = function () {
85862
- return 'ProcessAnswerErrorJS(legId=' + this.legId + ', message=' + this.r46_1 + ')';
85876
+ return 'ProcessAnswerErrorJS(legId=' + this.legId + ', message=' + this.t46_1 + ')';
85863
85877
  };
85864
85878
  protoOf(ProcessAnswerErrorJS).hashCode = function () {
85865
85879
  var result = getStringHashCode(this.legId);
85866
- result = imul(result, 31) + (this.r46_1 == null ? 0 : getStringHashCode(this.r46_1)) | 0;
85880
+ result = imul(result, 31) + (this.t46_1 == null ? 0 : getStringHashCode(this.t46_1)) | 0;
85867
85881
  return result;
85868
85882
  };
85869
85883
  protoOf(ProcessAnswerErrorJS).equals = function (other) {
@@ -85874,7 +85888,7 @@ function requireClientsdkClientcore_js () {
85874
85888
  var tmp0_other_with_cast = other instanceof ProcessAnswerErrorJS ? other : THROW_CCE();
85875
85889
  if (!(this.legId === tmp0_other_with_cast.legId))
85876
85890
  return false;
85877
- if (!(this.r46_1 == tmp0_other_with_cast.r46_1))
85891
+ if (!(this.t46_1 == tmp0_other_with_cast.t46_1))
85878
85892
  return false;
85879
85893
  return true;
85880
85894
  };
@@ -85882,26 +85896,26 @@ function requireClientsdkClientcore_js () {
85882
85896
  message = message === VOID ? null : message;
85883
85897
  MediaClientErrorJS.call(this);
85884
85898
  captureStack(this, CreateAnswerErrorJS);
85885
- this.v46_1 = message;
85899
+ this.x46_1 = message;
85886
85900
  }
85887
85901
  protoOf(CreateAnswerErrorJS).n8 = function () {
85888
- return this.v46_1;
85902
+ return this.x46_1;
85889
85903
  };
85890
85904
  protoOf(CreateAnswerErrorJS).r8 = function () {
85891
- return this.v46_1;
85905
+ return this.x46_1;
85892
85906
  };
85893
- protoOf(CreateAnswerErrorJS).w46 = function (message) {
85907
+ protoOf(CreateAnswerErrorJS).y46 = function (message) {
85894
85908
  return new CreateAnswerErrorJS(message);
85895
85909
  };
85896
85910
  protoOf(CreateAnswerErrorJS).copy = function (message, $super) {
85897
- message = message === VOID ? this.v46_1 : message;
85898
- return this.w46(message);
85911
+ message = message === VOID ? this.x46_1 : message;
85912
+ return this.y46(message);
85899
85913
  };
85900
85914
  protoOf(CreateAnswerErrorJS).toString = function () {
85901
- return 'CreateAnswerErrorJS(message=' + this.v46_1 + ')';
85915
+ return 'CreateAnswerErrorJS(message=' + this.x46_1 + ')';
85902
85916
  };
85903
85917
  protoOf(CreateAnswerErrorJS).hashCode = function () {
85904
- return this.v46_1 == null ? 0 : getStringHashCode(this.v46_1);
85918
+ return this.x46_1 == null ? 0 : getStringHashCode(this.x46_1);
85905
85919
  };
85906
85920
  protoOf(CreateAnswerErrorJS).equals = function (other) {
85907
85921
  if (this === other)
@@ -85909,7 +85923,7 @@ function requireClientsdkClientcore_js () {
85909
85923
  if (!(other instanceof CreateAnswerErrorJS))
85910
85924
  return false;
85911
85925
  var tmp0_other_with_cast = other instanceof CreateAnswerErrorJS ? other : THROW_CCE();
85912
- if (!(this.v46_1 == tmp0_other_with_cast.v46_1))
85926
+ if (!(this.x46_1 == tmp0_other_with_cast.x46_1))
85913
85927
  return false;
85914
85928
  return true;
85915
85929
  };
@@ -85917,26 +85931,26 @@ function requireClientsdkClientcore_js () {
85917
85931
  message = message === VOID ? null : message;
85918
85932
  MediaClientErrorJS.call(this);
85919
85933
  captureStack(this, CreateOfferErrorJS);
85920
- this.x46_1 = message;
85934
+ this.z46_1 = message;
85921
85935
  }
85922
85936
  protoOf(CreateOfferErrorJS).n8 = function () {
85923
- return this.x46_1;
85937
+ return this.z46_1;
85924
85938
  };
85925
85939
  protoOf(CreateOfferErrorJS).r8 = function () {
85926
- return this.x46_1;
85940
+ return this.z46_1;
85927
85941
  };
85928
- protoOf(CreateOfferErrorJS).w46 = function (message) {
85942
+ protoOf(CreateOfferErrorJS).y46 = function (message) {
85929
85943
  return new CreateOfferErrorJS(message);
85930
85944
  };
85931
85945
  protoOf(CreateOfferErrorJS).copy = function (message, $super) {
85932
- message = message === VOID ? this.x46_1 : message;
85933
- return this.w46(message);
85946
+ message = message === VOID ? this.z46_1 : message;
85947
+ return this.y46(message);
85934
85948
  };
85935
85949
  protoOf(CreateOfferErrorJS).toString = function () {
85936
- return 'CreateOfferErrorJS(message=' + this.x46_1 + ')';
85950
+ return 'CreateOfferErrorJS(message=' + this.z46_1 + ')';
85937
85951
  };
85938
85952
  protoOf(CreateOfferErrorJS).hashCode = function () {
85939
- return this.x46_1 == null ? 0 : getStringHashCode(this.x46_1);
85953
+ return this.z46_1 == null ? 0 : getStringHashCode(this.z46_1);
85940
85954
  };
85941
85955
  protoOf(CreateOfferErrorJS).equals = function (other) {
85942
85956
  if (this === other)
@@ -85944,7 +85958,7 @@ function requireClientsdkClientcore_js () {
85944
85958
  if (!(other instanceof CreateOfferErrorJS))
85945
85959
  return false;
85946
85960
  var tmp0_other_with_cast = other instanceof CreateOfferErrorJS ? other : THROW_CCE();
85947
- if (!(this.x46_1 == tmp0_other_with_cast.x46_1))
85961
+ if (!(this.z46_1 == tmp0_other_with_cast.z46_1))
85948
85962
  return false;
85949
85963
  return true;
85950
85964
  };
@@ -87052,66 +87066,66 @@ function requireClientsdkClientcore_js () {
87052
87066
  this.coreRegion = coreRegion;
87053
87067
  this.emergencyRegion = emergencyRegion;
87054
87068
  }
87055
- protoOf(CoreClientConfigRegionJS).a47 = function () {
87069
+ protoOf(CoreClientConfigRegionJS).c47 = function () {
87056
87070
  return this.coreRegion;
87057
87071
  };
87058
- protoOf(CoreClientConfigRegionJS).b47 = function () {
87072
+ protoOf(CoreClientConfigRegionJS).d47 = function () {
87059
87073
  return this.emergencyRegion;
87060
87074
  };
87061
87075
  function CoreClientConfigJS(region) {
87062
87076
  region = region === VOID ? get_DEFAULT_REGION() : region;
87063
87077
  this.region = region;
87064
- this.c47_1 = this.region.coreRegion.x37_1;
87065
- this.d47_1 = this.region.coreRegion.y37_1;
87066
- this.e47_1 = '/v2/rtc';
87067
- this.f47_1 = true;
87068
- this.g47_1 = false;
87069
- this.h47_1 = false;
87070
- this.i47_1 = this.region.emergencyRegion.j1h_1;
87071
- this.j47_1 = this.region.emergencyRegion.k1h_1;
87072
- }
87073
- protoOf(CoreClientConfigJS).k47 = function () {
87074
- return this.region;
87075
- };
87076
- protoOf(CoreClientConfigJS).l47 = function (_set____db54di) {
87077
- this.c47_1 = _set____db54di;
87078
- };
87078
+ this.e47_1 = this.region.coreRegion.x37_1;
87079
+ this.f47_1 = this.region.coreRegion.y37_1;
87080
+ this.g47_1 = '/v2/rtc';
87081
+ this.h47_1 = true;
87082
+ this.i47_1 = false;
87083
+ this.j47_1 = false;
87084
+ this.k47_1 = this.region.emergencyRegion.j1h_1;
87085
+ this.l47_1 = this.region.emergencyRegion.k1h_1;
87086
+ }
87079
87087
  protoOf(CoreClientConfigJS).m47 = function () {
87080
- return this.c47_1;
87088
+ return this.region;
87081
87089
  };
87082
87090
  protoOf(CoreClientConfigJS).n47 = function (_set____db54di) {
87083
- this.d47_1 = _set____db54di;
87091
+ this.e47_1 = _set____db54di;
87084
87092
  };
87085
87093
  protoOf(CoreClientConfigJS).o47 = function () {
87086
- return this.d47_1;
87094
+ return this.e47_1;
87087
87095
  };
87088
87096
  protoOf(CoreClientConfigJS).p47 = function (_set____db54di) {
87089
- this.e47_1 = _set____db54di;
87097
+ this.f47_1 = _set____db54di;
87090
87098
  };
87091
87099
  protoOf(CoreClientConfigJS).q47 = function () {
87092
- return this.e47_1;
87100
+ return this.f47_1;
87093
87101
  };
87094
87102
  protoOf(CoreClientConfigJS).r47 = function (_set____db54di) {
87095
- this.f47_1 = _set____db54di;
87103
+ this.g47_1 = _set____db54di;
87096
87104
  };
87097
87105
  protoOf(CoreClientConfigJS).s47 = function () {
87098
- return this.f47_1;
87106
+ return this.g47_1;
87099
87107
  };
87100
87108
  protoOf(CoreClientConfigJS).t47 = function (_set____db54di) {
87101
- this.g47_1 = _set____db54di;
87109
+ this.h47_1 = _set____db54di;
87102
87110
  };
87103
87111
  protoOf(CoreClientConfigJS).u47 = function () {
87104
- return this.g47_1;
87105
- };
87106
- protoOf(CoreClientConfigJS).v47 = function () {
87107
87112
  return this.h47_1;
87108
87113
  };
87114
+ protoOf(CoreClientConfigJS).v47 = function (_set____db54di) {
87115
+ this.i47_1 = _set____db54di;
87116
+ };
87109
87117
  protoOf(CoreClientConfigJS).w47 = function () {
87110
87118
  return this.i47_1;
87111
87119
  };
87112
87120
  protoOf(CoreClientConfigJS).x47 = function () {
87113
87121
  return this.j47_1;
87114
87122
  };
87123
+ protoOf(CoreClientConfigJS).y47 = function () {
87124
+ return this.k47_1;
87125
+ };
87126
+ protoOf(CoreClientConfigJS).z47 = function () {
87127
+ return this.l47_1;
87128
+ };
87115
87129
  function TopicJS(name, tag) {
87116
87130
  this.name = name;
87117
87131
  this.tag = tag;
@@ -87119,7 +87133,7 @@ function requireClientsdkClientcore_js () {
87119
87133
  protoOf(TopicJS).f2 = function () {
87120
87134
  return this.name;
87121
87135
  };
87122
- protoOf(TopicJS).y47 = function () {
87136
+ protoOf(TopicJS).a48 = function () {
87123
87137
  return this.tag;
87124
87138
  };
87125
87139
  protoOf(TopicJS).r8 = function () {
@@ -87128,13 +87142,13 @@ function requireClientsdkClientcore_js () {
87128
87142
  protoOf(TopicJS).s8 = function () {
87129
87143
  return this.tag;
87130
87144
  };
87131
- protoOf(TopicJS).z47 = function (name, tag) {
87145
+ protoOf(TopicJS).b48 = function (name, tag) {
87132
87146
  return new TopicJS(name, tag);
87133
87147
  };
87134
87148
  protoOf(TopicJS).copy = function (name, tag, $super) {
87135
87149
  name = name === VOID ? this.name : name;
87136
87150
  tag = tag === VOID ? this.tag : tag;
87137
- return this.z47(name, tag);
87151
+ return this.b48(name, tag);
87138
87152
  };
87139
87153
  protoOf(TopicJS).toString = function () {
87140
87154
  return 'TopicJS(name=' + this.name + ', tag=' + this.tag + ')';
@@ -87275,10 +87289,10 @@ function requireClientsdkClientcore_js () {
87275
87289
  protoOf(SessionErrorReasonJsObject).b46 = function () {
87276
87290
  return this.EXPIRED_TOKEN;
87277
87291
  };
87278
- protoOf(SessionErrorReasonJsObject).e48 = function () {
87292
+ protoOf(SessionErrorReasonJsObject).g48 = function () {
87279
87293
  return this.TRANSPORT_CLOSED;
87280
87294
  };
87281
- protoOf(SessionErrorReasonJsObject).f48 = function () {
87295
+ protoOf(SessionErrorReasonJsObject).h48 = function () {
87282
87296
  return this.PING_TIMEOUT;
87283
87297
  };
87284
87298
  protoOf(SessionErrorReasonJsObject).toString = function () {
@@ -87717,22 +87731,22 @@ function requireClientsdkClientcore_js () {
87717
87731
  return _this__u8e3s4 == null ? null : equals(_this__u8e3s4, undefined) ? null : _this__u8e3s4;
87718
87732
  }
87719
87733
  function createVonageLoggerJS$1($name, $minLogLevel, $topics, $onLog) {
87720
- this.j48_1 = $onLog;
87721
- this.g48_1 = $name;
87722
- this.h48_1 = $minLogLevel;
87723
- this.i48_1 = $topics;
87734
+ this.l48_1 = $onLog;
87735
+ this.i48_1 = $name;
87736
+ this.j48_1 = $minLogLevel;
87737
+ this.k48_1 = $topics;
87724
87738
  }
87725
87739
  protoOf(createVonageLoggerJS$1).f2 = function () {
87726
- return this.g48_1;
87740
+ return this.i48_1;
87727
87741
  };
87728
87742
  protoOf(createVonageLoggerJS$1).w3q = function () {
87729
- return this.h48_1;
87743
+ return this.j48_1;
87730
87744
  };
87731
87745
  protoOf(createVonageLoggerJS$1).o3q = function () {
87732
- return this.i48_1;
87746
+ return this.k48_1;
87733
87747
  };
87734
87748
  protoOf(createVonageLoggerJS$1).onLog = function (logLevel, topic, message) {
87735
- this.j48_1(logLevel, topic, message);
87749
+ this.l48_1(logLevel, topic, message);
87736
87750
  };
87737
87751
  function vonageLogger$lambda($logger) {
87738
87752
  return function (logLevel, topic, message, _anonymous_parameter_3__qggqen) {
@@ -87821,13 +87835,13 @@ function requireClientsdkClientcore_js () {
87821
87835
  this.ANSWERED = 'ANSWERED';
87822
87836
  this.COMPLETED = 'COMPLETED';
87823
87837
  }
87824
- protoOf(LegStatusJSObject).k48 = function () {
87838
+ protoOf(LegStatusJSObject).m48 = function () {
87825
87839
  return this.RINGING;
87826
87840
  };
87827
- protoOf(LegStatusJSObject).l48 = function () {
87841
+ protoOf(LegStatusJSObject).n48 = function () {
87828
87842
  return this.ANSWERED;
87829
87843
  };
87830
- protoOf(LegStatusJSObject).m48 = function () {
87844
+ protoOf(LegStatusJSObject).o48 = function () {
87831
87845
  return this.COMPLETED;
87832
87846
  };
87833
87847
  protoOf(LegStatusJSObject).toString = function () {
@@ -87851,7 +87865,7 @@ function requireClientsdkClientcore_js () {
87851
87865
  function CallDisconnectReasonJSObject() {
87852
87866
  this.NetworkChange = 'networkChange';
87853
87867
  }
87854
- protoOf(CallDisconnectReasonJSObject).n48 = function () {
87868
+ protoOf(CallDisconnectReasonJSObject).p48 = function () {
87855
87869
  return this.NetworkChange;
87856
87870
  };
87857
87871
  protoOf(CallDisconnectReasonJSObject).toString = function () {
@@ -87879,19 +87893,19 @@ function requireClientsdkClientcore_js () {
87879
87893
  this.LOCAL_HANGUP = 'LOCAL_HANGUP';
87880
87894
  this.MEDIA_TIMEOUT = 'MEDIA_TIMEOUT';
87881
87895
  }
87882
- protoOf(HangupReasonJSObject).o48 = function () {
87896
+ protoOf(HangupReasonJSObject).q48 = function () {
87883
87897
  return this.REMOTE_HANGUP;
87884
87898
  };
87885
- protoOf(HangupReasonJSObject).p48 = function () {
87899
+ protoOf(HangupReasonJSObject).r48 = function () {
87886
87900
  return this.REMOTE_REJECT;
87887
87901
  };
87888
- protoOf(HangupReasonJSObject).q48 = function () {
87902
+ protoOf(HangupReasonJSObject).s48 = function () {
87889
87903
  return this.REMOTE_NO_ANSWER_TIMEOUT;
87890
87904
  };
87891
- protoOf(HangupReasonJSObject).r48 = function () {
87905
+ protoOf(HangupReasonJSObject).t48 = function () {
87892
87906
  return this.LOCAL_HANGUP;
87893
87907
  };
87894
- protoOf(HangupReasonJSObject).s48 = function () {
87908
+ protoOf(HangupReasonJSObject).u48 = function () {
87895
87909
  return this.MEDIA_TIMEOUT;
87896
87910
  };
87897
87911
  protoOf(HangupReasonJSObject).toString = function () {
@@ -88779,13 +88793,13 @@ function requireClientsdkClientcore_js () {
88779
88793
  protoOf(VoiceInviteFromInfoJS).s8 = function () {
88780
88794
  return this.type;
88781
88795
  };
88782
- protoOf(VoiceInviteFromInfoJS).t48 = function (id, type) {
88796
+ protoOf(VoiceInviteFromInfoJS).v48 = function (id, type) {
88783
88797
  return new VoiceInviteFromInfoJS(id, type);
88784
88798
  };
88785
88799
  protoOf(VoiceInviteFromInfoJS).copy = function (id, type, $super) {
88786
88800
  id = id === VOID ? this.id : id;
88787
88801
  type = type === VOID ? this.type : type;
88788
- return this.t48(id, type);
88802
+ return this.v48(id, type);
88789
88803
  };
88790
88804
  protoOf(VoiceInviteFromInfoJS).toString = function () {
88791
88805
  return 'VoiceInviteFromInfoJS(id=' + this.id + ', type=' + this.type + ')';
@@ -88863,41 +88877,41 @@ function requireClientsdkClientcore_js () {
88863
88877
  cause = cause === VOID ? null : cause;
88864
88878
  extendThrowable(this);
88865
88879
  captureStack(this, HttpClientErrorJS);
88866
- this.u48_1 = message;
88867
- this.v48_1 = cause;
88880
+ this.w48_1 = message;
88881
+ this.x48_1 = cause;
88868
88882
  }
88869
88883
  protoOf(HttpClientErrorJS).n8 = function () {
88870
- return this.u48_1;
88884
+ return this.w48_1;
88871
88885
  };
88872
88886
  protoOf(HttpClientErrorJS).o8 = function () {
88873
- return this.v48_1;
88887
+ return this.x48_1;
88874
88888
  };
88875
- protoOf(HttpClientErrorJS).w48 = function () {
88876
- var tmp0_elvis_lhs = this.u48_1;
88889
+ protoOf(HttpClientErrorJS).y48 = function () {
88890
+ var tmp0_elvis_lhs = this.w48_1;
88877
88891
  var tmp = tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs;
88878
- var tmp_0 = this.v48_1;
88892
+ var tmp_0 = this.x48_1;
88879
88893
  return new HTTPClientError(tmp, tmp_0 instanceof Exception ? tmp_0 : null);
88880
88894
  };
88881
88895
  protoOf(HttpClientErrorJS).r8 = function () {
88882
- return this.u48_1;
88896
+ return this.w48_1;
88883
88897
  };
88884
88898
  protoOf(HttpClientErrorJS).s8 = function () {
88885
- return this.v48_1;
88899
+ return this.x48_1;
88886
88900
  };
88887
- protoOf(HttpClientErrorJS).x48 = function (message, cause) {
88901
+ protoOf(HttpClientErrorJS).z48 = function (message, cause) {
88888
88902
  return new HttpClientErrorJS(message, cause);
88889
88903
  };
88890
88904
  protoOf(HttpClientErrorJS).copy = function (message, cause, $super) {
88891
- message = message === VOID ? this.u48_1 : message;
88892
- cause = cause === VOID ? this.v48_1 : cause;
88893
- return this.x48(message, cause);
88905
+ message = message === VOID ? this.w48_1 : message;
88906
+ cause = cause === VOID ? this.x48_1 : cause;
88907
+ return this.z48(message, cause);
88894
88908
  };
88895
88909
  protoOf(HttpClientErrorJS).toString = function () {
88896
- return 'HttpClientErrorJS(message=' + this.u48_1 + ', cause=' + toString_0(this.v48_1) + ')';
88910
+ return 'HttpClientErrorJS(message=' + this.w48_1 + ', cause=' + toString_0(this.x48_1) + ')';
88897
88911
  };
88898
88912
  protoOf(HttpClientErrorJS).hashCode = function () {
88899
- var result = this.u48_1 == null ? 0 : getStringHashCode(this.u48_1);
88900
- result = imul(result, 31) + (this.v48_1 == null ? 0 : hashCode(this.v48_1)) | 0;
88913
+ var result = this.w48_1 == null ? 0 : getStringHashCode(this.w48_1);
88914
+ result = imul(result, 31) + (this.x48_1 == null ? 0 : hashCode(this.x48_1)) | 0;
88901
88915
  return result;
88902
88916
  };
88903
88917
  protoOf(HttpClientErrorJS).equals = function (other) {
@@ -88906,9 +88920,9 @@ function requireClientsdkClientcore_js () {
88906
88920
  if (!(other instanceof HttpClientErrorJS))
88907
88921
  return false;
88908
88922
  var tmp0_other_with_cast = other instanceof HttpClientErrorJS ? other : THROW_CCE();
88909
- if (!(this.u48_1 == tmp0_other_with_cast.u48_1))
88923
+ if (!(this.w48_1 == tmp0_other_with_cast.w48_1))
88910
88924
  return false;
88911
- if (!equals(this.v48_1, tmp0_other_with_cast.v48_1))
88925
+ if (!equals(this.x48_1, tmp0_other_with_cast.x48_1))
88912
88926
  return false;
88913
88927
  return true;
88914
88928
  };
@@ -88919,13 +88933,13 @@ function requireClientsdkClientcore_js () {
88919
88933
  this.body = body;
88920
88934
  this.headers = headers;
88921
88935
  }
88922
- protoOf(HttpClientResponseJS).y48 = function () {
88936
+ protoOf(HttpClientResponseJS).a49 = function () {
88923
88937
  return this.statusCode;
88924
88938
  };
88925
88939
  protoOf(HttpClientResponseJS).h42 = function () {
88926
88940
  return this.body;
88927
88941
  };
88928
- protoOf(HttpClientResponseJS).z48 = function () {
88942
+ protoOf(HttpClientResponseJS).b49 = function () {
88929
88943
  return this.headers;
88930
88944
  };
88931
88945
  protoOf(HttpClientResponseJS).r8 = function () {
@@ -88934,17 +88948,17 @@ function requireClientsdkClientcore_js () {
88934
88948
  protoOf(HttpClientResponseJS).s8 = function () {
88935
88949
  return this.body;
88936
88950
  };
88937
- protoOf(HttpClientResponseJS).a49 = function () {
88951
+ protoOf(HttpClientResponseJS).c49 = function () {
88938
88952
  return this.headers;
88939
88953
  };
88940
- protoOf(HttpClientResponseJS).b49 = function (statusCode, body, headers) {
88954
+ protoOf(HttpClientResponseJS).d49 = function (statusCode, body, headers) {
88941
88955
  return new HttpClientResponseJS(statusCode, body, headers);
88942
88956
  };
88943
88957
  protoOf(HttpClientResponseJS).copy = function (statusCode, body, headers, $super) {
88944
88958
  statusCode = statusCode === VOID ? this.statusCode : statusCode;
88945
88959
  body = body === VOID ? this.body : body;
88946
88960
  headers = headers === VOID ? this.headers : headers;
88947
- return this.b49(statusCode, body, headers);
88961
+ return this.d49(statusCode, body, headers);
88948
88962
  };
88949
88963
  protoOf(HttpClientResponseJS).toString = function () {
88950
88964
  return 'HttpClientResponseJS(statusCode=' + this.statusCode + ', body=' + this.body + ', headers=' + toString_0(this.headers) + ')';
@@ -89003,16 +89017,16 @@ function requireClientsdkClientcore_js () {
89003
89017
  this.RejectedElsewhere = 'RejectedElsewhere';
89004
89018
  this.RemoteTimeout = 'RemoteTimeout';
89005
89019
  }
89006
- protoOf(CancelReasonJSObject).c49 = function () {
89020
+ protoOf(CancelReasonJSObject).e49 = function () {
89007
89021
  return this.RemoteCancel;
89008
89022
  };
89009
- protoOf(CancelReasonJSObject).d49 = function () {
89023
+ protoOf(CancelReasonJSObject).f49 = function () {
89010
89024
  return this.AnsweredElsewhere;
89011
89025
  };
89012
- protoOf(CancelReasonJSObject).e49 = function () {
89026
+ protoOf(CancelReasonJSObject).g49 = function () {
89013
89027
  return this.RejectedElsewhere;
89014
89028
  };
89015
- protoOf(CancelReasonJSObject).f49 = function () {
89029
+ protoOf(CancelReasonJSObject).h49 = function () {
89016
89030
  return this.RemoteTimeout;
89017
89031
  };
89018
89032
  protoOf(CancelReasonJSObject).toString = function () {
@@ -89044,31 +89058,31 @@ function requireClientsdkClientcore_js () {
89044
89058
  this.packet_cnt = packet_cnt;
89045
89059
  this.packet_loss_perc = packet_loss_perc;
89046
89060
  }
89047
- protoOf(RTCQualityJS).g49 = function () {
89061
+ protoOf(RTCQualityJS).i49 = function () {
89048
89062
  return this.mos_score;
89049
89063
  };
89050
- protoOf(RTCQualityJS).h49 = function () {
89064
+ protoOf(RTCQualityJS).j49 = function () {
89051
89065
  return this.quality_percentage;
89052
89066
  };
89053
- protoOf(RTCQualityJS).i49 = function () {
89067
+ protoOf(RTCQualityJS).k49 = function () {
89054
89068
  return this.jitter_min_var;
89055
89069
  };
89056
- protoOf(RTCQualityJS).j49 = function () {
89070
+ protoOf(RTCQualityJS).l49 = function () {
89057
89071
  return this.jitter_max_var;
89058
89072
  };
89059
- protoOf(RTCQualityJS).k49 = function () {
89073
+ protoOf(RTCQualityJS).m49 = function () {
89060
89074
  return this.jitter_loss_rate;
89061
89075
  };
89062
- protoOf(RTCQualityJS).l49 = function () {
89076
+ protoOf(RTCQualityJS).n49 = function () {
89063
89077
  return this.jitter_burst_rate;
89064
89078
  };
89065
- protoOf(RTCQualityJS).m49 = function () {
89079
+ protoOf(RTCQualityJS).o49 = function () {
89066
89080
  return this.flaw_total;
89067
89081
  };
89068
- protoOf(RTCQualityJS).n49 = function () {
89082
+ protoOf(RTCQualityJS).p49 = function () {
89069
89083
  return this.packet_cnt;
89070
89084
  };
89071
- protoOf(RTCQualityJS).o49 = function () {
89085
+ protoOf(RTCQualityJS).q49 = function () {
89072
89086
  return this.packet_loss_perc;
89073
89087
  };
89074
89088
  protoOf(RTCQualityJS).r8 = function () {
@@ -89077,28 +89091,28 @@ function requireClientsdkClientcore_js () {
89077
89091
  protoOf(RTCQualityJS).s8 = function () {
89078
89092
  return this.quality_percentage;
89079
89093
  };
89080
- protoOf(RTCQualityJS).a49 = function () {
89094
+ protoOf(RTCQualityJS).c49 = function () {
89081
89095
  return this.jitter_min_var;
89082
89096
  };
89083
- protoOf(RTCQualityJS).p49 = function () {
89097
+ protoOf(RTCQualityJS).r49 = function () {
89084
89098
  return this.jitter_max_var;
89085
89099
  };
89086
- protoOf(RTCQualityJS).q49 = function () {
89100
+ protoOf(RTCQualityJS).s49 = function () {
89087
89101
  return this.jitter_loss_rate;
89088
89102
  };
89089
- protoOf(RTCQualityJS).r49 = function () {
89103
+ protoOf(RTCQualityJS).t49 = function () {
89090
89104
  return this.jitter_burst_rate;
89091
89105
  };
89092
- protoOf(RTCQualityJS).s49 = function () {
89106
+ protoOf(RTCQualityJS).u49 = function () {
89093
89107
  return this.flaw_total;
89094
89108
  };
89095
- protoOf(RTCQualityJS).t49 = function () {
89109
+ protoOf(RTCQualityJS).v49 = function () {
89096
89110
  return this.packet_cnt;
89097
89111
  };
89098
- protoOf(RTCQualityJS).u49 = function () {
89112
+ protoOf(RTCQualityJS).w49 = function () {
89099
89113
  return this.packet_loss_perc;
89100
89114
  };
89101
- protoOf(RTCQualityJS).v49 = function (mos_score, quality_percentage, jitter_min_var, jitter_max_var, jitter_loss_rate, jitter_burst_rate, flaw_total, packet_cnt, packet_loss_perc) {
89115
+ protoOf(RTCQualityJS).x49 = function (mos_score, quality_percentage, jitter_min_var, jitter_max_var, jitter_loss_rate, jitter_burst_rate, flaw_total, packet_cnt, packet_loss_perc) {
89102
89116
  return new RTCQualityJS(mos_score, quality_percentage, jitter_min_var, jitter_max_var, jitter_loss_rate, jitter_burst_rate, flaw_total, packet_cnt, packet_loss_perc);
89103
89117
  };
89104
89118
  protoOf(RTCQualityJS).copy = function (mos_score, quality_percentage, jitter_min_var, jitter_max_var, jitter_loss_rate, jitter_burst_rate, flaw_total, packet_cnt, packet_loss_perc, $super) {
@@ -89111,7 +89125,7 @@ function requireClientsdkClientcore_js () {
89111
89125
  flaw_total = flaw_total === VOID ? this.flaw_total : flaw_total;
89112
89126
  packet_cnt = packet_cnt === VOID ? this.packet_cnt : packet_cnt;
89113
89127
  packet_loss_perc = packet_loss_perc === VOID ? this.packet_loss_perc : packet_loss_perc;
89114
- return this.v49(mos_score, quality_percentage, jitter_min_var, jitter_max_var, jitter_loss_rate, jitter_burst_rate, flaw_total, packet_cnt, packet_loss_perc);
89128
+ return this.x49(mos_score, quality_percentage, jitter_min_var, jitter_max_var, jitter_loss_rate, jitter_burst_rate, flaw_total, packet_cnt, packet_loss_perc);
89115
89129
  };
89116
89130
  protoOf(RTCQualityJS).toString = function () {
89117
89131
  return 'RTCQualityJS(mos_score=' + this.mos_score + ', quality_percentage=' + this.quality_percentage + ', jitter_min_var=' + this.jitter_min_var + ', jitter_max_var=' + this.jitter_max_var + ', jitter_loss_rate=' + this.jitter_loss_rate + ', jitter_burst_rate=' + this.jitter_burst_rate + ', flaw_total=' + this.flaw_total + ', packet_cnt=' + this.packet_cnt + ', packet_loss_perc=' + this.packet_loss_perc + ')';
@@ -89181,55 +89195,55 @@ function requireClientsdkClientcore_js () {
89181
89195
  this.concealedSamples = concealedSamples;
89182
89196
  this.concealmentEvents = concealmentEvents;
89183
89197
  }
89184
- protoOf(RTCStatsJS).w49 = function () {
89198
+ protoOf(RTCStatsJS).y49 = function () {
89185
89199
  return this.audioRecvPackets;
89186
89200
  };
89187
- protoOf(RTCStatsJS).x49 = function () {
89201
+ protoOf(RTCStatsJS).z49 = function () {
89188
89202
  return this.audioRecvPacketsLost;
89189
89203
  };
89190
- protoOf(RTCStatsJS).y49 = function () {
89204
+ protoOf(RTCStatsJS).a4a = function () {
89191
89205
  return this.audioRecvBytes;
89192
89206
  };
89193
- protoOf(RTCStatsJS).z49 = function () {
89207
+ protoOf(RTCStatsJS).b4a = function () {
89194
89208
  return this.audioRecvJitter;
89195
89209
  };
89196
- protoOf(RTCStatsJS).a4a = function () {
89210
+ protoOf(RTCStatsJS).c4a = function () {
89197
89211
  return this.audioSentPackets;
89198
89212
  };
89199
- protoOf(RTCStatsJS).b4a = function () {
89213
+ protoOf(RTCStatsJS).d4a = function () {
89200
89214
  return this.audioSentBytes;
89201
89215
  };
89202
- protoOf(RTCStatsJS).c4a = function () {
89216
+ protoOf(RTCStatsJS).e4a = function () {
89203
89217
  return this.audioSentPacketsLost;
89204
89218
  };
89205
- protoOf(RTCStatsJS).d4a = function () {
89219
+ protoOf(RTCStatsJS).f4a = function () {
89206
89220
  return this.audioRtt;
89207
89221
  };
89208
- protoOf(RTCStatsJS).e4a = function () {
89222
+ protoOf(RTCStatsJS).g4a = function () {
89209
89223
  return this.audioSentJitter;
89210
89224
  };
89211
- protoOf(RTCStatsJS).f4a = function () {
89225
+ protoOf(RTCStatsJS).h4a = function () {
89212
89226
  return this.echoReturnLoss;
89213
89227
  };
89214
- protoOf(RTCStatsJS).g4a = function () {
89228
+ protoOf(RTCStatsJS).i4a = function () {
89215
89229
  return this.echoReturnLossEnhancement;
89216
89230
  };
89217
- protoOf(RTCStatsJS).h4a = function () {
89231
+ protoOf(RTCStatsJS).j4a = function () {
89218
89232
  return this.audioLevel;
89219
89233
  };
89220
- protoOf(RTCStatsJS).i4a = function () {
89234
+ protoOf(RTCStatsJS).k4a = function () {
89221
89235
  return this.totalAudioEnergy;
89222
89236
  };
89223
- protoOf(RTCStatsJS).j4a = function () {
89237
+ protoOf(RTCStatsJS).l4a = function () {
89224
89238
  return this.totalSamplesSent;
89225
89239
  };
89226
- protoOf(RTCStatsJS).k4a = function () {
89240
+ protoOf(RTCStatsJS).m4a = function () {
89227
89241
  return this.concealedSamples;
89228
89242
  };
89229
- protoOf(RTCStatsJS).l4a = function () {
89243
+ protoOf(RTCStatsJS).n4a = function () {
89230
89244
  return this.concealmentEvents;
89231
89245
  };
89232
- protoOf(RTCStatsJS).m4a = function () {
89246
+ protoOf(RTCStatsJS).o4a = function () {
89233
89247
  var tmp = numberToLong(this.audioRecvPackets);
89234
89248
  var tmp_0 = numberToInt(this.audioRecvPacketsLost);
89235
89249
  var tmp_1 = numberToLong(this.audioRecvBytes);
@@ -89250,49 +89264,49 @@ function requireClientsdkClientcore_js () {
89250
89264
  protoOf(RTCStatsJS).s8 = function () {
89251
89265
  return this.audioRecvPacketsLost;
89252
89266
  };
89253
- protoOf(RTCStatsJS).a49 = function () {
89267
+ protoOf(RTCStatsJS).c49 = function () {
89254
89268
  return this.audioRecvBytes;
89255
89269
  };
89256
- protoOf(RTCStatsJS).p49 = function () {
89270
+ protoOf(RTCStatsJS).r49 = function () {
89257
89271
  return this.audioRecvJitter;
89258
89272
  };
89259
- protoOf(RTCStatsJS).q49 = function () {
89273
+ protoOf(RTCStatsJS).s49 = function () {
89260
89274
  return this.audioSentPackets;
89261
89275
  };
89262
- protoOf(RTCStatsJS).r49 = function () {
89276
+ protoOf(RTCStatsJS).t49 = function () {
89263
89277
  return this.audioSentBytes;
89264
89278
  };
89265
- protoOf(RTCStatsJS).s49 = function () {
89279
+ protoOf(RTCStatsJS).u49 = function () {
89266
89280
  return this.audioSentPacketsLost;
89267
89281
  };
89268
- protoOf(RTCStatsJS).t49 = function () {
89282
+ protoOf(RTCStatsJS).v49 = function () {
89269
89283
  return this.audioRtt;
89270
89284
  };
89271
- protoOf(RTCStatsJS).u49 = function () {
89285
+ protoOf(RTCStatsJS).w49 = function () {
89272
89286
  return this.audioSentJitter;
89273
89287
  };
89274
- protoOf(RTCStatsJS).n4a = function () {
89288
+ protoOf(RTCStatsJS).p4a = function () {
89275
89289
  return this.echoReturnLoss;
89276
89290
  };
89277
- protoOf(RTCStatsJS).o4a = function () {
89291
+ protoOf(RTCStatsJS).q4a = function () {
89278
89292
  return this.echoReturnLossEnhancement;
89279
89293
  };
89280
- protoOf(RTCStatsJS).p4a = function () {
89294
+ protoOf(RTCStatsJS).r4a = function () {
89281
89295
  return this.audioLevel;
89282
89296
  };
89283
- protoOf(RTCStatsJS).q4a = function () {
89297
+ protoOf(RTCStatsJS).s4a = function () {
89284
89298
  return this.totalAudioEnergy;
89285
89299
  };
89286
- protoOf(RTCStatsJS).r4a = function () {
89300
+ protoOf(RTCStatsJS).t4a = function () {
89287
89301
  return this.totalSamplesSent;
89288
89302
  };
89289
- protoOf(RTCStatsJS).s4a = function () {
89303
+ protoOf(RTCStatsJS).u4a = function () {
89290
89304
  return this.concealedSamples;
89291
89305
  };
89292
- protoOf(RTCStatsJS).t4a = function () {
89306
+ protoOf(RTCStatsJS).v4a = function () {
89293
89307
  return this.concealmentEvents;
89294
89308
  };
89295
- protoOf(RTCStatsJS).u4a = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, echoReturnLoss, echoReturnLossEnhancement, audioLevel, totalAudioEnergy, totalSamplesSent, concealedSamples, concealmentEvents) {
89309
+ protoOf(RTCStatsJS).w4a = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, echoReturnLoss, echoReturnLossEnhancement, audioLevel, totalAudioEnergy, totalSamplesSent, concealedSamples, concealmentEvents) {
89296
89310
  return new RTCStatsJS(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, echoReturnLoss, echoReturnLossEnhancement, audioLevel, totalAudioEnergy, totalSamplesSent, concealedSamples, concealmentEvents);
89297
89311
  };
89298
89312
  protoOf(RTCStatsJS).copy = function (audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, echoReturnLoss, echoReturnLossEnhancement, audioLevel, totalAudioEnergy, totalSamplesSent, concealedSamples, concealmentEvents, $super) {
@@ -89312,7 +89326,7 @@ function requireClientsdkClientcore_js () {
89312
89326
  totalSamplesSent = totalSamplesSent === VOID ? this.totalSamplesSent : totalSamplesSent;
89313
89327
  concealedSamples = concealedSamples === VOID ? this.concealedSamples : concealedSamples;
89314
89328
  concealmentEvents = concealmentEvents === VOID ? this.concealmentEvents : concealmentEvents;
89315
- return this.u4a(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, echoReturnLoss, echoReturnLossEnhancement, audioLevel, totalAudioEnergy, totalSamplesSent, concealedSamples, concealmentEvents);
89329
+ return this.w4a(audioRecvPackets, audioRecvPacketsLost, audioRecvBytes, audioRecvJitter, audioSentPackets, audioSentBytes, audioSentPacketsLost, audioRtt, audioSentJitter, echoReturnLoss, echoReturnLossEnhancement, audioLevel, totalAudioEnergy, totalSamplesSent, concealedSamples, concealmentEvents);
89316
89330
  };
89317
89331
  protoOf(RTCStatsJS).toString = function () {
89318
89332
  return 'RTCStatsJS(audioRecvPackets=' + toString(this.audioRecvPackets) + ', audioRecvPacketsLost=' + toString(this.audioRecvPacketsLost) + ', audioRecvBytes=' + toString(this.audioRecvBytes) + ', audioRecvJitter=' + toString(this.audioRecvJitter) + ', audioSentPackets=' + toString(this.audioSentPackets) + ', audioSentBytes=' + toString(this.audioSentBytes) + ', audioSentPacketsLost=' + toString(this.audioSentPacketsLost) + ', audioRtt=' + toString(this.audioRtt) + ', audioSentJitter=' + toString(this.audioSentJitter) + ', echoReturnLoss=' + toString_0(this.echoReturnLoss) + ', echoReturnLossEnhancement=' + toString_0(this.echoReturnLossEnhancement) + ', audioLevel=' + toString(this.audioLevel) + ', totalAudioEnergy=' + toString(this.totalAudioEnergy) + ', totalSamplesSent=' + toString(this.totalSamplesSent) + ', concealedSamples=' + toString(this.concealedSamples) + ', concealmentEvents=' + toString(this.concealmentEvents) + ')';
@@ -89479,7 +89493,7 @@ function requireClientsdkClientcore_js () {
89479
89493
  };
89480
89494
  }
89481
89495
  function HttpClientJSAdapter$1($js) {
89482
- this.v4a_1 = $js;
89496
+ this.x4a_1 = $js;
89483
89497
  }
89484
89498
  protoOf(HttpClientJSAdapter$1).h3s = function (verb, url, headers, body, callback) {
89485
89499
  var tmp = verb.toString();
@@ -89487,7 +89501,7 @@ function requireClientsdkClientcore_js () {
89487
89501
  // Inline function 'kotlin.contracts.contract' call
89488
89502
  // Inline function 'vonage.<no name provided>.request.<anonymous>' call
89489
89503
  var tmp_0 = fromMap(JSON, headers);
89490
- this.v4a_1.request(tmp, url, tmp_0, body, HttpClientJSAdapter$o$request$lambda(callback));
89504
+ this.x4a_1.request(tmp, url, tmp_0, body, HttpClientJSAdapter$o$request$lambda(callback));
89491
89505
  };
89492
89506
  function SocketClientJSAdapter$o$emit$lambda($callback) {
89493
89507
  return function (err, response) {
@@ -89505,11 +89519,11 @@ function requireClientsdkClientcore_js () {
89505
89519
  };
89506
89520
  }
89507
89521
  function SocketClientJSAdapter$adapter$1($js) {
89508
- this.x4a_1 = $js;
89509
- this.w4a_1 = null;
89522
+ this.z4a_1 = $js;
89523
+ this.y4a_1 = null;
89510
89524
  }
89511
89525
  protoOf(SocketClientJSAdapter$adapter$1).l3s = function (_set____db54di) {
89512
- this.w4a_1 = _set____db54di;
89526
+ this.y4a_1 = _set____db54di;
89513
89527
  };
89514
89528
  protoOf(SocketClientJSAdapter$adapter$1).m3s = function (type, msg, callback) {
89515
89529
  var tmp;
@@ -89522,28 +89536,28 @@ function requireClientsdkClientcore_js () {
89522
89536
  tmp = fromMap(JSON, msg);
89523
89537
  }
89524
89538
  var tmp_0 = tmp;
89525
- this.x4a_1.emit(type, tmp_0, SocketClientJSAdapter$o$emit$lambda(callback));
89539
+ this.z4a_1.emit(type, tmp_0, SocketClientJSAdapter$o$emit$lambda(callback));
89526
89540
  };
89527
89541
  protoOf(SocketClientJSAdapter$adapter$1).n3s = function (host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, token, sessionId, query) {
89528
- this.x4a_1.connect(host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, token, sessionId, query);
89542
+ this.z4a_1.connect(host, path, reconnectionAttempts, reconnectionDelay, randomizationFactor, token, sessionId, query);
89529
89543
  };
89530
89544
  protoOf(SocketClientJSAdapter$adapter$1).o3s = function () {
89531
- this.x4a_1.disconnect();
89545
+ this.z4a_1.disconnect();
89532
89546
  };
89533
89547
  protoOf(SocketClientJSAdapter$adapter$1).p3s = function (sessionId, token) {
89534
- this.x4a_1.setConnectParamsSocketConfig(sessionId, token);
89548
+ this.z4a_1.setConnectParamsSocketConfig(sessionId, token);
89535
89549
  };
89536
89550
  protoOf(SocketClientJSAdapter$adapter$1).q3s = function (sessionId) {
89537
- this.x4a_1.setSocketSessionId(sessionId);
89551
+ this.z4a_1.setSocketSessionId(sessionId);
89538
89552
  };
89539
89553
  protoOf(SocketClientJSAdapter$adapter$1).r3s = function (milliseconds, callback) {
89540
- this.x4a_1.startVerifyResponseTimer(milliseconds, callback);
89554
+ this.z4a_1.startVerifyResponseTimer(milliseconds, callback);
89541
89555
  };
89542
89556
  function SocketClientJSAdapter$1($adapter) {
89543
- this.y4a_1 = $adapter;
89557
+ this.a4b_1 = $adapter;
89544
89558
  }
89545
89559
  protoOf(SocketClientJSAdapter$1).didReceiveNewSocketEvent = function (body) {
89546
- var tmp0_safe_receiver = this.y4a_1.w4a_1;
89560
+ var tmp0_safe_receiver = this.a4b_1.y4a_1;
89547
89561
  if (tmp0_safe_receiver == null)
89548
89562
  null;
89549
89563
  else {
@@ -89576,7 +89590,7 @@ function requireClientsdkClientcore_js () {
89576
89590
  var tmp;
89577
89591
  switch (reason) {
89578
89592
  case 'NXMCORE_REASON_SERVER_DISCONNECTED':
89579
- var tmp1_safe_receiver_0 = this.y4a_1.w4a_1;
89593
+ var tmp1_safe_receiver_0 = this.a4b_1.y4a_1;
89580
89594
  var tmp_0;
89581
89595
  if (tmp1_safe_receiver_0 == null) {
89582
89596
  tmp_0 = null;
@@ -89588,7 +89602,7 @@ function requireClientsdkClientcore_js () {
89588
89602
  tmp = tmp_0;
89589
89603
  break;
89590
89604
  case 'NXMCORE_REASON_CLIENT_DISCONNECTED':
89591
- var tmp2_safe_receiver = this.y4a_1.w4a_1;
89605
+ var tmp2_safe_receiver = this.a4b_1.y4a_1;
89592
89606
  var tmp_1;
89593
89607
  if (tmp2_safe_receiver == null) {
89594
89608
  tmp_1 = null;
@@ -89600,7 +89614,7 @@ function requireClientsdkClientcore_js () {
89600
89614
  tmp = tmp_1;
89601
89615
  break;
89602
89616
  case 'NXMCORE_CLIENT_NETWORK_ERROR':
89603
- var tmp3_safe_receiver = this.y4a_1.w4a_1;
89617
+ var tmp3_safe_receiver = this.a4b_1.y4a_1;
89604
89618
  var tmp_2;
89605
89619
  if (tmp3_safe_receiver == null) {
89606
89620
  tmp_2 = null;
@@ -89612,7 +89626,7 @@ function requireClientsdkClientcore_js () {
89612
89626
  tmp = tmp_2;
89613
89627
  break;
89614
89628
  case 'NXMCORE_REASON_PING_TIMEOUT':
89615
- var tmp4_safe_receiver = this.y4a_1.w4a_1;
89629
+ var tmp4_safe_receiver = this.a4b_1.y4a_1;
89616
89630
  var tmp_3;
89617
89631
  if (tmp4_safe_receiver == null) {
89618
89632
  tmp_3 = null;
@@ -89624,7 +89638,7 @@ function requireClientsdkClientcore_js () {
89624
89638
  tmp = tmp_3;
89625
89639
  break;
89626
89640
  default:
89627
- var tmp5_safe_receiver = this.y4a_1.w4a_1;
89641
+ var tmp5_safe_receiver = this.a4b_1.y4a_1;
89628
89642
  var tmp_4;
89629
89643
  if (tmp5_safe_receiver == null) {
89630
89644
  tmp_4 = null;
@@ -89640,120 +89654,120 @@ function requireClientsdkClientcore_js () {
89640
89654
  };
89641
89655
  function MediaClientJSAdapter$o$processAnswer$lambda($closure) {
89642
89656
  return function (it) {
89643
- $closure(it == null ? null : it.q46());
89657
+ $closure(it == null ? null : it.s46());
89644
89658
  return Unit_instance;
89645
89659
  };
89646
89660
  }
89647
89661
  function MediaClientJSAdapter$o$disableMedia$lambda($closure) {
89648
89662
  return function (it) {
89649
- $closure(it == null ? null : it.q46());
89663
+ $closure(it == null ? null : it.s46());
89650
89664
  return Unit_instance;
89651
89665
  };
89652
89666
  }
89653
89667
  function MediaClientJSAdapter$o$mute$lambda($closure) {
89654
89668
  return function (it) {
89655
- $closure(it == null ? null : it.q46());
89669
+ $closure(it == null ? null : it.s46());
89656
89670
  return Unit_instance;
89657
89671
  };
89658
89672
  }
89659
89673
  function MediaClientJSAdapter$o$unmute$lambda($closure) {
89660
89674
  return function (it) {
89661
- $closure(it == null ? null : it.q46());
89675
+ $closure(it == null ? null : it.s46());
89662
89676
  return Unit_instance;
89663
89677
  };
89664
89678
  }
89665
89679
  function MediaClientJSAdapter$o$enableNoiseSuppression$lambda($closure) {
89666
89680
  return function (it) {
89667
- $closure(it == null ? null : it.q46());
89681
+ $closure(it == null ? null : it.s46());
89668
89682
  return Unit_instance;
89669
89683
  };
89670
89684
  }
89671
89685
  function MediaClientJSAdapter$o$disableNoiseSuppression$lambda($closure) {
89672
89686
  return function (it) {
89673
- $closure(it == null ? null : it.q46());
89687
+ $closure(it == null ? null : it.s46());
89674
89688
  return Unit_instance;
89675
89689
  };
89676
89690
  }
89677
89691
  function MediaClientJSAdapter$o$enableEarmuff$lambda($closure) {
89678
89692
  return function (it) {
89679
- $closure(it == null ? null : it.q46());
89693
+ $closure(it == null ? null : it.s46());
89680
89694
  return Unit_instance;
89681
89695
  };
89682
89696
  }
89683
89697
  function MediaClientJSAdapter$o$disableEarmuff$lambda($closure) {
89684
89698
  return function (it) {
89685
- $closure(it == null ? null : it.q46());
89699
+ $closure(it == null ? null : it.s46());
89686
89700
  return Unit_instance;
89687
89701
  };
89688
89702
  }
89689
89703
  function MediaClientJSAdapter$o$enableRtcStatsCollection$lambda($closure) {
89690
89704
  return function (it) {
89691
- $closure(it == null ? null : it.q46());
89705
+ $closure(it == null ? null : it.s46());
89692
89706
  return Unit_instance;
89693
89707
  };
89694
89708
  }
89695
89709
  function MediaClientJSAdapter$adapter$1($js) {
89696
- this.a4b_1 = $js;
89697
- this.z4a_1 = null;
89710
+ this.c4b_1 = $js;
89711
+ this.b4b_1 = null;
89698
89712
  }
89699
89713
  protoOf(MediaClientJSAdapter$adapter$1).d1j = function (_set____db54di) {
89700
- this.z4a_1 = _set____db54di;
89714
+ this.b4b_1 = _set____db54di;
89701
89715
  };
89702
89716
  protoOf(MediaClientJSAdapter$adapter$1).c1j = function () {
89703
- return this.z4a_1;
89717
+ return this.b4b_1;
89704
89718
  };
89705
89719
  protoOf(MediaClientJSAdapter$adapter$1).b1k = function (closure) {
89706
- this.a4b_1.enableMediaOutbound(closure);
89720
+ this.c4b_1.enableMediaOutbound(closure);
89707
89721
  };
89708
- protoOf(MediaClientJSAdapter$adapter$1).b4b = function (rtcId, offerSDP, closure) {
89709
- this.a4b_1.enableMediaInbound(rtcId, offerSDP, closure);
89722
+ protoOf(MediaClientJSAdapter$adapter$1).d4b = function (rtcId, offerSDP, closure) {
89723
+ this.c4b_1.enableMediaInbound(rtcId, offerSDP, closure);
89710
89724
  };
89711
89725
  protoOf(MediaClientJSAdapter$adapter$1).u3s = function (rtcId, offerSDP, closure) {
89712
- return this.b4b(rtcId, offerSDP, closure);
89726
+ return this.d4b(rtcId, offerSDP, closure);
89713
89727
  };
89714
89728
  protoOf(MediaClientJSAdapter$adapter$1).p1j = function (id, sdp, closure) {
89715
- this.a4b_1.processAnswer(id, sdp, MediaClientJSAdapter$o$processAnswer$lambda(closure));
89729
+ this.c4b_1.processAnswer(id, sdp, MediaClientJSAdapter$o$processAnswer$lambda(closure));
89716
89730
  };
89717
89731
  protoOf(MediaClientJSAdapter$adapter$1).a1k = function (id, closure) {
89718
- this.a4b_1.disableMedia(id, MediaClientJSAdapter$o$disableMedia$lambda(closure));
89732
+ this.c4b_1.disableMedia(id, MediaClientJSAdapter$o$disableMedia$lambda(closure));
89719
89733
  };
89720
89734
  protoOf(MediaClientJSAdapter$adapter$1).z1j = function (id, closure) {
89721
- this.a4b_1.mute(id, MediaClientJSAdapter$o$mute$lambda(closure));
89735
+ this.c4b_1.mute(id, MediaClientJSAdapter$o$mute$lambda(closure));
89722
89736
  };
89723
89737
  protoOf(MediaClientJSAdapter$adapter$1).x1j = function (id, closure) {
89724
- this.a4b_1.unmute(id, MediaClientJSAdapter$o$unmute$lambda(closure));
89738
+ this.c4b_1.unmute(id, MediaClientJSAdapter$o$unmute$lambda(closure));
89725
89739
  };
89726
89740
  protoOf(MediaClientJSAdapter$adapter$1).v3s = function (id, closure) {
89727
- this.a4b_1.enableNoiseSuppression(id, MediaClientJSAdapter$o$enableNoiseSuppression$lambda(closure));
89741
+ this.c4b_1.enableNoiseSuppression(id, MediaClientJSAdapter$o$enableNoiseSuppression$lambda(closure));
89728
89742
  };
89729
89743
  protoOf(MediaClientJSAdapter$adapter$1).w3s = function (id, closure) {
89730
- this.a4b_1.disableNoiseSuppression(id, MediaClientJSAdapter$o$disableNoiseSuppression$lambda(closure));
89744
+ this.c4b_1.disableNoiseSuppression(id, MediaClientJSAdapter$o$disableNoiseSuppression$lambda(closure));
89731
89745
  };
89732
89746
  protoOf(MediaClientJSAdapter$adapter$1).v1j = function (id, closure) {
89733
- this.a4b_1.enableEarmuff(id, MediaClientJSAdapter$o$enableEarmuff$lambda(closure));
89747
+ this.c4b_1.enableEarmuff(id, MediaClientJSAdapter$o$enableEarmuff$lambda(closure));
89734
89748
  };
89735
89749
  protoOf(MediaClientJSAdapter$adapter$1).t1j = function (id, closure) {
89736
- this.a4b_1.disableEarmuff(id, MediaClientJSAdapter$o$disableEarmuff$lambda(closure));
89750
+ this.c4b_1.disableEarmuff(id, MediaClientJSAdapter$o$disableEarmuff$lambda(closure));
89737
89751
  };
89738
89752
  protoOf(MediaClientJSAdapter$adapter$1).q1j = function (id, interval, closure) {
89739
- this.a4b_1.enableRtcStatsCollection(id, interval, MediaClientJSAdapter$o$enableRtcStatsCollection$lambda(closure));
89753
+ this.c4b_1.enableRtcStatsCollection(id, interval, MediaClientJSAdapter$o$enableRtcStatsCollection$lambda(closure));
89740
89754
  };
89741
89755
  protoOf(MediaClientJSAdapter$adapter$1).x3s = function (id) {
89742
- return coreConnectionState(this.a4b_1.getMediaConnectionState(id));
89756
+ return coreConnectionState(this.c4b_1.getMediaConnectionState(id));
89743
89757
  };
89744
89758
  function MediaClientJSAdapter$1($adapter) {
89745
- this.c4b_1 = $adapter;
89759
+ this.e4b_1 = $adapter;
89746
89760
  }
89747
89761
  protoOf(MediaClientJSAdapter$1).onRtcStats = function (id, rtcStats) {
89748
- var tmp0_safe_receiver = this.c4b_1.z4a_1;
89762
+ var tmp0_safe_receiver = this.e4b_1.b4b_1;
89749
89763
  if (tmp0_safe_receiver == null)
89750
89764
  null;
89751
89765
  else {
89752
- tmp0_safe_receiver.g1j(id, rtcStats.m4a());
89766
+ tmp0_safe_receiver.g1j(id, rtcStats.o4a());
89753
89767
  }
89754
89768
  };
89755
89769
  protoOf(MediaClientJSAdapter$1).onConnectionChange = function (id, state) {
89756
- var tmp0_safe_receiver = this.c4b_1.z4a_1;
89770
+ var tmp0_safe_receiver = this.e4b_1.b4b_1;
89757
89771
  if (tmp0_safe_receiver == null)
89758
89772
  null;
89759
89773
  else {
@@ -89761,11 +89775,11 @@ function requireClientsdkClientcore_js () {
89761
89775
  }
89762
89776
  };
89763
89777
  protoOf(MediaClientJSAdapter$1).onMediaError = function (id, error) {
89764
- var tmp0_safe_receiver = this.c4b_1.z4a_1;
89778
+ var tmp0_safe_receiver = this.e4b_1.b4b_1;
89765
89779
  if (tmp0_safe_receiver == null)
89766
89780
  null;
89767
89781
  else {
89768
- tmp0_safe_receiver.h1j(id, error.q46());
89782
+ tmp0_safe_receiver.h1j(id, error.s46());
89769
89783
  }
89770
89784
  };
89771
89785
  function invoke(_this__u8e3s4, optionJS) {
@@ -90180,10 +90194,10 @@ function requireClientsdkClientcore_js () {
90180
90194
  this.callId = callId;
90181
90195
  this.reconnectToken = reconnectToken;
90182
90196
  }
90183
- protoOf(EmergencyCallDataJS).d4b = function () {
90197
+ protoOf(EmergencyCallDataJS).f4b = function () {
90184
90198
  return this.callId;
90185
90199
  };
90186
- protoOf(EmergencyCallDataJS).e4b = function () {
90200
+ protoOf(EmergencyCallDataJS).g4b = function () {
90187
90201
  return this.reconnectToken;
90188
90202
  };
90189
90203
  protoOf(EmergencyCallDataJS).r8 = function () {
@@ -90192,13 +90206,13 @@ function requireClientsdkClientcore_js () {
90192
90206
  protoOf(EmergencyCallDataJS).s8 = function () {
90193
90207
  return this.reconnectToken;
90194
90208
  };
90195
- protoOf(EmergencyCallDataJS).z47 = function (callId, reconnectToken) {
90209
+ protoOf(EmergencyCallDataJS).b48 = function (callId, reconnectToken) {
90196
90210
  return new EmergencyCallDataJS(callId, reconnectToken);
90197
90211
  };
90198
90212
  protoOf(EmergencyCallDataJS).copy = function (callId, reconnectToken, $super) {
90199
90213
  callId = callId === VOID ? this.callId : callId;
90200
90214
  reconnectToken = reconnectToken === VOID ? this.reconnectToken : reconnectToken;
90201
- return this.z47(callId, reconnectToken);
90215
+ return this.b48(callId, reconnectToken);
90202
90216
  };
90203
90217
  protoOf(EmergencyCallDataJS).toString = function () {
90204
90218
  return 'EmergencyCallDataJS(callId=' + this.callId + ', reconnectToken=' + this.reconnectToken + ')';
@@ -90352,12 +90366,12 @@ function requireClientsdkClientcore_js () {
90352
90366
  protoOf(Some).r8 = function () {
90353
90367
  return this.value;
90354
90368
  };
90355
- protoOf(Some).f4b = function (value) {
90369
+ protoOf(Some).h4b = function (value) {
90356
90370
  return new Some(value);
90357
90371
  };
90358
90372
  protoOf(Some).copy = function (value, $super) {
90359
90373
  value = value === VOID ? this.value : value;
90360
- return this.f4b(value);
90374
+ return this.h4b(value);
90361
90375
  };
90362
90376
  protoOf(Some).toString = function () {
90363
90377
  return 'Some(value=' + toString_0(this.value) + ')';
@@ -90611,38 +90625,38 @@ function requireClientsdkClientcore_js () {
90611
90625
  defineProp(protoOf(CoreClientConfigRegionJS), 'name', protoOf(CoreClientConfigRegionJS).f2);
90612
90626
  defineProp(protoOf(CoreClientConfigRegionJS), 'ordinal', protoOf(CoreClientConfigRegionJS).g2);
90613
90627
  defineProp(protoOf(CoreClientConfigJS), 'apiUrl', function () {
90614
- return this.m47();
90615
- }, function (value) {
90616
- this.l47(value);
90617
- });
90618
- defineProp(protoOf(CoreClientConfigJS), 'websocketUrl', function () {
90619
90628
  return this.o47();
90620
90629
  }, function (value) {
90621
90630
  this.n47(value);
90622
90631
  });
90623
- defineProp(protoOf(CoreClientConfigJS), 'websocketPath', function () {
90632
+ defineProp(protoOf(CoreClientConfigJS), 'websocketUrl', function () {
90624
90633
  return this.q47();
90625
90634
  }, function (value) {
90626
90635
  this.p47(value);
90627
90636
  });
90628
- defineProp(protoOf(CoreClientConfigJS), 'rtcStatsTelemetry', function () {
90637
+ defineProp(protoOf(CoreClientConfigJS), 'websocketPath', function () {
90629
90638
  return this.s47();
90630
90639
  }, function (value) {
90631
90640
  this.r47(value);
90632
90641
  });
90633
- defineProp(protoOf(CoreClientConfigJS), 'autoReconnectMedia', function () {
90642
+ defineProp(protoOf(CoreClientConfigJS), 'rtcStatsTelemetry', function () {
90634
90643
  return this.u47();
90635
90644
  }, function (value) {
90636
90645
  this.t47(value);
90637
90646
  });
90647
+ defineProp(protoOf(CoreClientConfigJS), 'autoReconnectMedia', function () {
90648
+ return this.w47();
90649
+ }, function (value) {
90650
+ this.v47(value);
90651
+ });
90638
90652
  defineProp(protoOf(CoreClientConfigJS), 'noiseSuppression', function () {
90639
- return this.v47();
90653
+ return this.x47();
90640
90654
  });
90641
90655
  defineProp(protoOf(CoreClientConfigJS), 'emergencyPrimaryRegion', function () {
90642
- return this.w47();
90656
+ return this.y47();
90643
90657
  });
90644
90658
  defineProp(protoOf(CoreClientConfigJS), 'emergencySecondaryRegion', function () {
90645
- return this.x47();
90659
+ return this.z47();
90646
90660
  });
90647
90661
  defineProp(protoOf(Topics), 'name', protoOf(Topics).f2);
90648
90662
  defineProp(protoOf(Topics), 'ordinal', protoOf(Topics).g2);
@@ -90663,7 +90677,7 @@ function requireClientsdkClientcore_js () {
90663
90677
  defineProp(protoOf(HttpClientErrorJS), 'cause', function () {
90664
90678
  return this.o8();
90665
90679
  });
90666
- defineProp(protoOf(HttpClientErrorJS), 'coreError', protoOf(HttpClientErrorJS).w48);
90680
+ defineProp(protoOf(HttpClientErrorJS), 'coreError', protoOf(HttpClientErrorJS).y48);
90667
90681
  protoOf(HttpClientJSAdapter$1).i3s = clear;
90668
90682
  //endregion
90669
90683
  //region block: init