@webex/calling 3.0.0-next.4 → 3.0.0-next.6

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.
Files changed (123) hide show
  1. package/CHANGELOG.md +1403 -1403
  2. package/README.md +74 -74
  3. package/dist/module/CallHistory/CallHistory.js +81 -81
  4. package/dist/module/CallHistory/callHistoryFixtures.js +307 -307
  5. package/dist/module/CallHistory/constants.js +9 -9
  6. package/dist/module/CallHistory/types.js +1 -1
  7. package/dist/module/CallSettings/CallSettings.js +65 -65
  8. package/dist/module/CallSettings/UcmBackendConnector.js +100 -100
  9. package/dist/module/CallSettings/WxCallBackendConnector.js +287 -287
  10. package/dist/module/CallSettings/constants.js +11 -11
  11. package/dist/module/CallSettings/testFixtures.js +62 -62
  12. package/dist/module/CallSettings/types.js +1 -1
  13. package/dist/module/CallingClient/CallingClient.js +248 -248
  14. package/dist/module/CallingClient/callRecordFixtures.js +93 -93
  15. package/dist/module/CallingClient/calling/CallerId/index.js +169 -169
  16. package/dist/module/CallingClient/calling/CallerId/types.js +1 -1
  17. package/dist/module/CallingClient/calling/call.js +1658 -1658
  18. package/dist/module/CallingClient/calling/callManager.js +284 -284
  19. package/dist/module/CallingClient/calling/index.js +2 -2
  20. package/dist/module/CallingClient/calling/types.js +53 -53
  21. package/dist/module/CallingClient/callingClientFixtures.js +38 -38
  22. package/dist/module/CallingClient/constants.js +122 -122
  23. package/dist/module/CallingClient/line/index.js +158 -158
  24. package/dist/module/CallingClient/line/types.js +15 -15
  25. package/dist/module/CallingClient/registration/index.js +1 -1
  26. package/dist/module/CallingClient/registration/register.js +507 -507
  27. package/dist/module/CallingClient/registration/registerFixtures.js +28 -28
  28. package/dist/module/CallingClient/registration/types.js +1 -1
  29. package/dist/module/CallingClient/types.js +1 -1
  30. package/dist/module/Contacts/ContactsClient.js +484 -484
  31. package/dist/module/Contacts/constants.js +20 -20
  32. package/dist/module/Contacts/contactFixtures.js +284 -284
  33. package/dist/module/Contacts/types.js +10 -10
  34. package/dist/module/Errors/catalog/CallError.js +26 -26
  35. package/dist/module/Errors/catalog/CallingDeviceError.js +18 -18
  36. package/dist/module/Errors/catalog/ExtendedError.js +10 -10
  37. package/dist/module/Errors/catalog/LineError.js +24 -24
  38. package/dist/module/Errors/index.js +2 -2
  39. package/dist/module/Errors/types.js +48 -48
  40. package/dist/module/Events/impl/index.js +19 -19
  41. package/dist/module/Events/types.js +83 -83
  42. package/dist/module/Logger/index.js +114 -114
  43. package/dist/module/Logger/types.js +25 -25
  44. package/dist/module/Metrics/index.js +232 -232
  45. package/dist/module/Metrics/types.js +37 -37
  46. package/dist/module/SDKConnector/index.js +39 -39
  47. package/dist/module/SDKConnector/types.js +1 -1
  48. package/dist/module/SDKConnector/utils.js +12 -12
  49. package/dist/module/Voicemail/BroadworksBackendConnector.js +291 -291
  50. package/dist/module/Voicemail/UcmBackendConnector.js +279 -279
  51. package/dist/module/Voicemail/Voicemail.js +110 -110
  52. package/dist/module/Voicemail/WxCallBackendConnector.js +279 -279
  53. package/dist/module/Voicemail/constants.js +29 -29
  54. package/dist/module/Voicemail/types.js +1 -1
  55. package/dist/module/Voicemail/voicemailFixture.js +510 -510
  56. package/dist/module/api.js +6 -6
  57. package/dist/module/common/Utils.js +802 -802
  58. package/dist/module/common/constants.js +41 -41
  59. package/dist/module/common/index.js +1 -1
  60. package/dist/module/common/testUtil.js +938 -938
  61. package/dist/module/common/types.js +57 -57
  62. package/dist/module/index.js +8 -8
  63. package/dist/types/CallHistory/CallHistory.d.ts +17 -17
  64. package/dist/types/CallHistory/callHistoryFixtures.d.ts +94 -94
  65. package/dist/types/CallHistory/constants.d.ts +9 -9
  66. package/dist/types/CallHistory/types.d.ts +18 -18
  67. package/dist/types/CallSettings/CallSettings.d.ts +19 -19
  68. package/dist/types/CallSettings/UcmBackendConnector.d.ts +19 -19
  69. package/dist/types/CallSettings/WxCallBackendConnector.d.ts +21 -21
  70. package/dist/types/CallSettings/constants.d.ts +11 -11
  71. package/dist/types/CallSettings/testFixtures.d.ts +15 -15
  72. package/dist/types/CallSettings/types.d.ts +107 -107
  73. package/dist/types/CallingClient/CallingClient.d.ts +35 -35
  74. package/dist/types/CallingClient/callRecordFixtures.d.ts +3 -3
  75. package/dist/types/CallingClient/calling/CallerId/index.d.ts +17 -17
  76. package/dist/types/CallingClient/calling/CallerId/types.d.ts +41 -41
  77. package/dist/types/CallingClient/calling/call.d.ts +96 -96
  78. package/dist/types/CallingClient/calling/callManager.d.ts +25 -25
  79. package/dist/types/CallingClient/calling/index.d.ts +2 -2
  80. package/dist/types/CallingClient/calling/types.d.ts +206 -206
  81. package/dist/types/CallingClient/callingClientFixtures.d.ts +18 -18
  82. package/dist/types/CallingClient/constants.d.ts +122 -122
  83. package/dist/types/CallingClient/line/index.d.ts +43 -43
  84. package/dist/types/CallingClient/line/types.d.ts +55 -55
  85. package/dist/types/CallingClient/registration/index.d.ts +1 -1
  86. package/dist/types/CallingClient/registration/register.d.ts +64 -64
  87. package/dist/types/CallingClient/registration/registerFixtures.d.ts +28 -28
  88. package/dist/types/CallingClient/registration/types.d.ts +20 -20
  89. package/dist/types/CallingClient/types.d.ts +29 -29
  90. package/dist/types/Contacts/ContactsClient.d.ts +26 -26
  91. package/dist/types/Contacts/constants.d.ts +19 -19
  92. package/dist/types/Contacts/contactFixtures.d.ts +280 -280
  93. package/dist/types/Contacts/types.d.ts +72 -72
  94. package/dist/types/Errors/catalog/CallError.d.ts +11 -11
  95. package/dist/types/Errors/catalog/CallingDeviceError.d.ts +10 -10
  96. package/dist/types/Errors/catalog/ExtendedError.d.ts +6 -6
  97. package/dist/types/Errors/catalog/LineError.d.ts +10 -10
  98. package/dist/types/Errors/index.d.ts +2 -2
  99. package/dist/types/Errors/types.d.ts +60 -60
  100. package/dist/types/Events/impl/index.d.ts +8 -8
  101. package/dist/types/Events/types.d.ts +288 -288
  102. package/dist/types/Logger/index.d.ts +12 -12
  103. package/dist/types/Logger/types.d.ts +25 -25
  104. package/dist/types/Metrics/index.d.ts +5 -5
  105. package/dist/types/Metrics/types.d.ts +42 -42
  106. package/dist/types/SDKConnector/index.d.ts +12 -12
  107. package/dist/types/SDKConnector/types.d.ts +128 -128
  108. package/dist/types/SDKConnector/utils.d.ts +5 -5
  109. package/dist/types/Voicemail/BroadworksBackendConnector.d.ts +27 -27
  110. package/dist/types/Voicemail/UcmBackendConnector.d.ts +34 -34
  111. package/dist/types/Voicemail/Voicemail.d.ts +27 -27
  112. package/dist/types/Voicemail/WxCallBackendConnector.d.ts +23 -23
  113. package/dist/types/Voicemail/constants.d.ts +29 -29
  114. package/dist/types/Voicemail/types.d.ts +133 -133
  115. package/dist/types/Voicemail/voicemailFixture.d.ts +417 -417
  116. package/dist/types/api.d.ts +16 -16
  117. package/dist/types/common/Utils.d.ts +34 -34
  118. package/dist/types/common/constants.d.ts +41 -41
  119. package/dist/types/common/index.d.ts +1 -1
  120. package/dist/types/common/testUtil.d.ts +3611 -3611
  121. package/dist/types/common/types.d.ts +191 -191
  122. package/dist/types/index.d.ts +8 -8
  123. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,1403 +1,1403 @@
1
- # [1.66.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.65.1...v1.66.0) (2023-05-09)
2
-
3
-
4
- ### Features
5
-
6
- * **calling-sdk:** defer connection restore with mobius on keepalive failure until call is cleared ([#233](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/233)) ([6a04829](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6a04829c45b8ea048abc54a5d37c42b7c92a4f40))
7
-
8
- ## [1.65.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.65.0...v1.65.1) (2023-04-17)
9
-
10
-
11
- ### Bug Fixes
12
-
13
- * **call:** enable localAudioTrack before dialing ([#232](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/232)) ([88c1909](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/88c1909705e413bf4b6d3adaadd103edc6f71b73))
14
-
15
- # [1.65.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.64.1...v1.65.0) (2023-04-12)
16
-
17
-
18
- ### Features
19
-
20
- * adding intermediate events for RECONNECTING and RECONNECTED when keepalive is retried ([#231](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/231)) ([24ffa25](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/24ffa2511d079e309e74d564276fa510a9a72f2d))
21
-
22
- ## [1.64.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.64.0...v1.64.1) (2023-04-05)
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * **calling-sdk:** fix for roap timeout due to out of order offer request received ([#229](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/229)) ([fa82acf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fa82acfb40e33dacaa6f8ae553b55b32fef0cbe3))
28
-
29
- # [1.64.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.63.1...v1.64.0) (2023-03-30)
30
-
31
-
32
- ### Features
33
-
34
- * **metrics:** calling metrics in amplitude ([#228](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/228)) ([8b60bed](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8b60bedf85d2790832d86725624c99ce5b0606d0))
35
-
36
- ## [1.63.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.63.0...v1.63.1) (2023-03-24)
37
-
38
-
39
- ### Bug Fixes
40
-
41
- * **media:** update to internal-media-core for latest ts-sdp fix ([#227](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/227)) ([651dbdb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/651dbdb82bd6a33e075cba701fec4925c981dc00))
42
-
43
- # [1.63.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.62.1...v1.63.0) (2023-03-24)
44
-
45
-
46
- ### Features
47
-
48
- * **disaster-recovery:** failback flow ([#223](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/223)) ([26ee104](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/26ee104ee3e4837c986188c1e6a84e1fee68d402))
49
-
50
- ## [1.62.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.62.0...v1.62.1) (2023-03-16)
51
-
52
-
53
- ### Bug Fixes
54
-
55
- * **voicemail:** removed offset in voicemail ([#224](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/224)) ([4e9ae9c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4e9ae9c0bd6daa66e2f2248fb3866a6db13b10ef))
56
-
57
- # [1.62.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.61.0...v1.62.0) (2023-03-14)
58
-
59
-
60
- ### Features
61
-
62
- * **contacts-sdk:** added get contacts api ([#219](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/219)) ([5288cb7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5288cb7a9c9d57ce1060195a01d090bb7ab9d709))
63
-
64
- # [1.61.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.60.1...v1.61.0) (2023-02-28)
65
-
66
-
67
- ### Features
68
-
69
- * **call-settings:** call forward and voicemail setting support ([#221](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/221)) ([fd476c7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fd476c727eba3d7d7e27ba97e7ccfe1a1b293b61))
70
-
71
- ## [1.60.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.60.0...v1.60.1) (2023-02-23)
72
-
73
-
74
- ### Bug Fixes
75
-
76
- * add userExternalId in CallingPartyInfo type for contact resolution ([#220](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/220)) ([d88d1ae](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d88d1aea28f200d2506c94a74865d258ceeb34a7))
77
-
78
- # [1.60.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.59.0...v1.60.0) (2023-02-22)
79
-
80
-
81
- ### Features
82
-
83
- * **call-settings:** dnd and call waiting ([#217](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/217)) ([8fb06e2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8fb06e25ec3dad61593d4dd5e7c4fb18ed627dba))
84
-
85
- # [1.59.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.58.2...v1.59.0) (2023-02-22)
86
-
87
-
88
- ### Features
89
-
90
- * **disaster-recovery:** failover flow ([8dca386](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8dca386b6a8ccec5711c17d86db174ac045f8381))
91
-
92
- ## [1.58.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.58.1...v1.58.2) (2023-02-17)
93
-
94
-
95
- ### Bug Fixes
96
-
97
- * **voicemail:** fix pagination in samples page ([#218](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/218)) ([a622177](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a6221778ce71160675969bc6ada18c1cd12cd6af))
98
-
99
- ## [1.58.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.58.0...v1.58.1) (2023-02-14)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * **call:** call.ts unit tests for coverage ([#214](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/214)) ([25bc095](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/25bc09570712cba226a64df878060838f791fff7))
105
-
106
- # [1.58.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.57.0...v1.58.0) (2023-02-14)
107
-
108
-
109
- ### Features
110
-
111
- * **voicemail:** fetching voicemail transcript ([#215](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/215)) ([2752864](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2752864a465f0301337150d1c6804effeca0f058))
112
-
113
- # [1.57.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.56.0...v1.57.0) (2023-02-07)
114
-
115
-
116
- ### Features
117
-
118
- * **voicemail:** contact resolution for voicemail sender ([#212](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/212)) ([8bf09af](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8bf09af8076ddbe0204cb6717b14517993bb9305))
119
-
120
- # [1.56.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.55.0...v1.56.0) (2023-02-03)
121
-
122
-
123
- ### Features
124
-
125
- * **CallSettings:** created a hook for Call Settings ([#213](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/213)) ([9429010](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/94290108dc906726bf6342750be4bd5acf515cd0))
126
-
127
- # [1.55.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.54.0...v1.55.0) (2023-02-01)
128
-
129
-
130
- ### Features
131
-
132
- * **voicemail:** voicemail pagination implementation ([#184](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/184)) ([efef47c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/efef47c161f6ae25b63f168086f54174a03f8d0c))
133
-
134
- # [1.54.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.10...v1.54.0) (2023-01-30)
135
-
136
-
137
- ### Features
138
-
139
- * **contacts:** add hook for contacts client ([#211](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/211)) ([e21a29d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e21a29dabaa7f361a3799e1b72b6f87064abb79c))
140
-
141
- ## [1.53.10](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.9...v1.53.10) (2023-01-17)
142
-
143
-
144
- ### Bug Fixes
145
-
146
- * **calling client:** fix unit tests and coverage ([#208](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/208)) ([3a49639](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3a49639da1f6c06bdd6df7fc75e12ef355e9d9e8))
147
-
148
- ## [1.53.9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.8...v1.53.9) (2023-01-17)
149
-
150
-
151
- ### Bug Fixes
152
-
153
- * **calling-sdk:** added-export-for-transfer-type ([#210](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/210)) ([138160d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/138160d00621ce727fd593e84b44db691444bfd6))
154
-
155
- ## [1.53.8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.7...v1.53.8) (2023-01-13)
156
-
157
-
158
- ### Bug Fixes
159
-
160
- * **call-history:** call history notifications ([#209](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/209)) ([f8367ed](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f8367ed5d738b31875b4fa3aedc0ff0ddc9dc0a5))
161
-
162
- ## [1.53.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.6...v1.53.7) (2023-01-12)
163
-
164
-
165
- ### Bug Fixes
166
-
167
- * **code coverage:** Addition of code coverage plugins and checks ([#207](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/207)) ([1dfcf42](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1dfcf422c1e7559e89111d2fe36a3ff731aab97f))
168
-
169
- ## [1.53.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.5...v1.53.6) (2023-01-10)
170
-
171
-
172
- ### Bug Fixes
173
-
174
- * **callmanager:** fix callManager UT to run independently ([#206](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/206)) ([e58e79f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e58e79f3ef879ae6997f41301363c1d14e79c3d0))
175
-
176
- ## [1.53.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.4...v1.53.5) (2023-01-10)
177
-
178
-
179
- ### Bug Fixes
180
-
181
- * **transfer:** call transfer unit tests ([#202](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/202)) ([b92e5ba](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b92e5bac7cb2ffedf2fd43279bbe9ded7bef0ba6))
182
-
183
- ## [1.53.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.3...v1.53.4) (2023-01-05)
184
-
185
-
186
- ### Bug Fixes
187
-
188
- * **voicemail:** ucm voicemail content response schema changes ([#204](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/204)) ([9318cf2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9318cf2c308f1d24d2d02233ecccb48b8a5d0509))
189
-
190
- ## [1.53.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.2...v1.53.3) (2023-01-05)
191
-
192
-
193
- ### Bug Fixes
194
-
195
- * **calling-sdk:** fix multiple incoming call events generated ([#205](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/205)) ([7d1b054](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7d1b05421c4dbb3d24fdb54862cb5b79b0245bcd))
196
-
197
- ## [1.53.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.1...v1.53.2) (2023-01-04)
198
-
199
-
200
- ### Bug Fixes
201
-
202
- * **calling-sdk:** race condition in call disconnect causing an exception ([#203](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/203)) ([4c332d3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4c332d3fb9abf5ebd7dc0840466ac24905b7d529))
203
-
204
- ## [1.53.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.0...v1.53.1) (2022-12-21)
205
-
206
-
207
- ### Bug Fixes
208
-
209
- * **voicemail:** ucm voicemail list read key should accept empty object ([#201](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/201)) ([2919627](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2919627c0329a9275fdb83cae9c78812d5fd9232))
210
-
211
- # [1.53.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.52.1...v1.53.0) (2022-12-21)
212
-
213
-
214
- ### Features
215
-
216
- * **contact-center:** get call quality stats during the call ([#198](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/198)) ([68eddf6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/68eddf681dc6c29603b9dc34bdd61736eabf2b14))
217
-
218
- ## [1.52.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.52.0...v1.52.1) (2022-12-20)
219
-
220
-
221
- ### Bug Fixes
222
-
223
- * ucm voicemail list update ([#199](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/199)) ([fecdac1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fecdac1d39124041e67a0781a0dbe27a248a366c))
224
-
225
- # [1.52.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.51.2...v1.52.0) (2022-12-19)
226
-
227
-
228
- ### Features
229
-
230
- * add consult transfer and blind transfer support ([e2b0b19](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e2b0b199a7ef5f745f0cc71f71250ace6dcd61a6))
231
- * **transfer:** added metric for transfer ([2ea377d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2ea377d114804e284f9593d3a747a2f4cac89db3))
232
- * **transfer:** merge conflicts ([eaeffd3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eaeffd3d6796f5100031fd923b2802c4200df75d))
233
- * **transfer:** merge conflicts ([56e026d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/56e026dba0c7f484f89d7eb387918f93d57ef961))
234
- * **transfer:** minor comments ([2f678c4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2f678c4dc3580a3f6c36715316248218902ab4c0))
235
- * **transfer:** review comments ([8852b5f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8852b5fff33786ba3aa97e8938676b822aaa7dc0))
236
- * **transfer:** review comments ([361b610](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/361b61051cd6b3dc4c622eb23e65d9f50c8e5ae9))
237
- * **transfer:** transfer review comments ([5e36c9a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5e36c9a4edd9167c085976f40a03beab6a402357))
238
-
239
- ## [1.51.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.51.1...v1.51.2) (2022-12-16)
240
-
241
-
242
- ### Bug Fixes
243
-
244
- * **calling-sdk:** minor fix after web-calling-sdk pwd change ([#195](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/195)) ([00e0103](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/00e0103db7fe6e51ce74a86b892a25298e496bcc))
245
-
246
- ## [1.51.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.51.0...v1.51.1) (2022-12-16)
247
-
248
-
249
- ### Bug Fixes
250
-
251
- * **calling-sdk:** remove json stringify ([#194](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/194)) ([4dd7a6a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4dd7a6a585bddeb4419350751601e7d3ca75beaa))
252
-
253
- # [1.51.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.50.0...v1.51.0) (2022-12-15)
254
-
255
-
256
- ### Bug Fixes
257
-
258
- * build after merge with main ([743b013](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/743b01336adcd276d87c760c02df8eea8afc0043))
259
-
260
-
261
- ### Features
262
-
263
- * **contact-center:** reporting ([ce87da1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ce87da1e53b21b1f801ec0e460a535da87c0d170))
264
-
265
- # [1.50.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.49.0...v1.50.0) (2022-12-15)
266
-
267
-
268
- ### Bug Fixes
269
-
270
- * **commitlint:** fix commitlint body length and emitted object ([#192](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/192)) ([218020d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/218020d57438729e826bca30ea4f39cca578f563))
271
- * remove spaces from dialled number while making call ([0c4faf6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0c4faf600a0bf835cfda7d65bb3a740e94c4dcf1))
272
- * remove spaces from dialled number while making call ([c7fd8d8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c7fd8d85245cc37bc005ecac37f4efda6f13dbea))
273
-
274
-
275
- ### Features
276
-
277
- * **contact-center:** call handling changes ([35a8619](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/35a8619f4dfe85f16a914035119890e629fd58c4))
278
-
279
- # [1.49.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.5...v1.49.0) (2022-12-14)
280
-
281
-
282
- ### Features
283
-
284
- * **calling-sdk:** release commitlint issue and contactcenter reg ([#188](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/188)) ([4cf374e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4cf374e966743dd4835f4412ace59b0e9ada5423))
285
- * **contact-center:** registration flow ([#187](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/187)) ([d5d3be4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d5d3be4469c2e6bb53c843a62ad9bfc06c20ef26))
286
-
287
- ## [1.48.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.4...v1.48.5) (2022-11-30)
288
-
289
-
290
- ### Bug Fixes
291
-
292
- * adding $ in ucm vm response object ([c7872a8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c7872a8d4ae85ff8daef273f7f92d547ca409d39))
293
- * code rebase and updating version ([f11d469](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f11d46927920563fe9cddfd52321527570eb037c))
294
-
295
- ## [1.48.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.3...v1.48.4) (2022-11-17)
296
-
297
-
298
- ### Bug Fixes
299
-
300
- * change put to post for hold/resume requests ([#180](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/180)) ([ddd7d47](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ddd7d4743fc6386c843a387e13efc6fda7c15151))
301
-
302
- ## [1.48.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.2...v1.48.3) (2022-11-15)
303
-
304
-
305
- ### Bug Fixes
306
-
307
- * **calling-sdk:** new constants used in chrome v107 for statsreport ([#181](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/181)) ([15c1468](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/15c14684a65dbcd45f268a946c52a316b6127897))
308
-
309
- ## [1.48.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.1...v1.48.2) (2022-11-11)
310
-
311
-
312
- ### Bug Fixes
313
-
314
- * **calling-sdk:** check jenkins file changes ([#176](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/176)) ([2f46a42](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2f46a42148389ba069c44c59f000299bfe32a0b9))
315
- * **calling-sdk:** troubleshooting jenkins file ([#177](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/177)) ([448f21c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/448f21c49b71be856ee8b37d0c21c6b2b5c6c841))
316
- * **calling-sdk:** update jenkins and semantic-release to use main ([#178](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/178)) ([5a1df4e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5a1df4e6708e3cc2e88a7f16c6fc6dcbbc42ae04))
317
- * **description:** minor changes to test main branch ([#175](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/175)) ([263c673](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/263c6732dd91a15e1e1283416fb7b511a2b12c09))
318
-
319
- ## [1.48.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.0...v1.48.1) (2022-11-10)
320
-
321
-
322
- ### Bug Fixes
323
-
324
- * add discovery support through ip address ([#174](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/174)) ([5d8ecd9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5d8ecd9e0718d535a2d7bfcf437735e3d39b2acd))
325
-
326
- # [1.48.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.47.0...v1.48.0) (2022-11-08)
327
-
328
-
329
- ### Features
330
-
331
- * **voicemail:** ucm backend connector ([#165](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/165)) ([09a9e2a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/09a9e2a4809b09ca8ed17159e4297fb882bd0b61))
332
-
333
- # [1.47.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.10...v1.47.0) (2022-11-02)
334
-
335
-
336
- ### Features
337
-
338
- * add support for sdk config to add region and country details ([#170](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/170)) ([f1f2985](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f1f29852304e1fc7a208b05f1e5e29498dd8f337))
339
-
340
- ## [1.46.10](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.9...v1.46.10) (2022-10-21)
341
-
342
-
343
- ### Bug Fixes
344
-
345
- * **calling-sdk:** special char stripped from final call string ([#169](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/169)) ([7aa602a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7aa602a953b60e668d761446d43308522c1fe44b))
346
-
347
- ## [1.46.9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.8...v1.46.9) (2022-10-19)
348
-
349
-
350
- ### Bug Fixes
351
-
352
- * updated dummy stats with zeroed values ([#167](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/167)) ([2ca1a7a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2ca1a7a110e9947ad9ba92e777e6c3be54de73a2))
353
-
354
- ## [1.46.8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.7...v1.46.8) (2022-10-18)
355
-
356
-
357
- ### Bug Fixes
358
-
359
- * trigger sleep handling if there is no active call on the browser ([#164](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/164)) ([59a1d3a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/59a1d3a4c94cc191176238f068945c82ad6513f2))
360
-
361
- ## [1.46.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.6...v1.46.7) (2022-10-17)
362
-
363
-
364
- ### Bug Fixes
365
-
366
- * **errormessage:** minor ui message change when client is unregistered ([#166](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/166)) ([e549bfe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e549bfe0c893aef62ffb4e9e3811125c60f250a0))
367
-
368
- ## [1.46.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.5...v1.46.6) (2022-10-13)
369
-
370
-
371
- ### Bug Fixes
372
-
373
- * add logic to clone webex object per test file ([#163](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/163)) ([2230255](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2230255a8de328baf521c1a24fa739d47dea03d0))
374
-
375
- ## [1.46.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.4...v1.46.5) (2022-10-12)
376
-
377
-
378
- ### Bug Fixes
379
-
380
- * voicemail sorting unittests addition with more test data, call-86293 ([f7e4596](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f7e4596fa5e08c6b56f715052a75ef8cf1e70f0f))
381
-
382
- ## [1.46.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.3...v1.46.4) (2022-10-11)
383
-
384
-
385
- ### Bug Fixes
386
-
387
- * modified strings into constants CALL-77125 ([79d5b9e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/79d5b9e6ecc3a7df084ac8bfff5f0434c03f8971))
388
- * removing await from the init ([e269403](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e269403ba31f87e1b81505a8f3d5f0071e0bb085))
389
- * resolved the conflicts ([4d1da52](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4d1da526ee40c06ba577c14c96dfef8338edbd36))
390
- * review comments addressed CALL-77125 ([95503a9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/95503a9f612620dcb80f7b02f884d8c57188c042))
391
- * sorting and unittest implementation CALL-77125 ([65fc737](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/65fc737a80b68b2e896846bee7ef58467f448140))
392
- * syncing with the master ([8055708](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8055708958da83f5a396d06164755c82f03a80cd))
393
- * updated status message string as constants ([be6d5fe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/be6d5fe7fbc8515902f50c0abce5749716ff4cc7))
394
- * voicemail test mock body changes CALL-77125 ([d02d9e1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d02d9e158de061dff8c5b19b00a3eedb52517e71))
395
-
396
- ## [1.46.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.2...v1.46.3) (2022-10-10)
397
-
398
-
399
- ### Bug Fixes
400
-
401
- * **byemetrics:** catch exception while parsing metrics ([#161](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/161)) ([39e1b96](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/39e1b96a9750fa36c8b003f4df064ba791189910))
402
-
403
- ## [1.46.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.1...v1.46.2) (2022-10-10)
404
-
405
-
406
- ### Bug Fixes
407
-
408
- * **publish:** minor fix to retrigger publish ([#160](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/160)) ([b209c3e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b209c3ef52054d1fb325a239863a6a8628e63993))
409
-
410
- ## [1.46.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.0...v1.46.1) (2022-10-10)
411
-
412
-
413
- ### Bug Fixes
414
-
415
- * **regex:** regex misses * ([#159](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/159)) ([37ae051](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/37ae051a4c3e24008e0220084a4cbb10792156f1))
416
-
417
- # [1.46.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.45.3...v1.46.0) (2022-10-06)
418
-
419
-
420
- ### Features
421
-
422
- * **call-metrics:** add call metrics to calling-sdk ([#158](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/158)) ([9959fbe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9959fbec0fbf7d1bb41c8b9deb0022ea9ea450d8))
423
-
424
- ## [1.45.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.45.2...v1.45.3) (2022-10-04)
425
-
426
-
427
- ### Bug Fixes
428
-
429
- * added exception messages for Broadworks voicemail CALL-84282 ([4350b98](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4350b986f4a3cccd9e60a1bef0859bdec7d6910f))
430
- * added unit testcase for voicemail broadworks ([8b8983d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8b8983d72dabe486c32ce331daa06eb7b49a06f8))
431
- * addressed review comments related to exception and comments description CALL-84282 ([49d1085](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/49d10859cead796a914727858ff4cacc70592f45))
432
- * exception handled for userid undefined case CALL-84282 ([006976a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/006976a3ee8d0c0a76c0b2dcac59babed77c1fdd))
433
- * exporting sort and sortby with common files CALL-84282 ([e65a8fc](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e65a8fc9202cb242f97d6b8a2ee61c7116352a7b))
434
- * interface and class restructure for Voicemail SDK CALL-84282 ([79e8ebb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/79e8ebb11039713449b78c5ce6ef9f53ad69595a))
435
- * lint errors fixed CALL-84282 ([3eb606a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3eb606aa8f9fd7ad997f6f7358bc26b0d67253e0))
436
- * merging the master ([8316575](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8316575607c26c8b6a01318a8e7c4dfe681c035b))
437
- * removed environment dependency from the sample js file CALL-84282 ([96ab7a9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/96ab7a953f9994b641b201cefe7203349a0d69ef))
438
- * removed file structure details from callhistory CALL-84282 ([2260c8b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2260c8b27d27bc415f5a35ae68789bc9e0c2c506))
439
- * removed the unwanted code CALL-84282 ([bd78e20](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bd78e203a2bcc555a4eef7a205a71c437ecfb461))
440
- * removing test files from the PR CALL-84282 ([e2798b4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e2798b419e9c552b73833f67be85fd0126ad0925))
441
- * review comments addressed CALL-84282 ([1708d75](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1708d759316663e880c9da0fc934917880bef882))
442
- * version updated for calling client constants file CALL-84282 ([9801e17](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9801e170c6f5562d41f43dc44c6eef53f273e18c))
443
- * voicemail SDK redesign exception handled for broadworks CALL-84282 ([83bafa9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/83bafa925abea4df749ffea8192b2bf8e7f0a714))
444
- * voicemail SDK redesign for webex calling CALL-84282 ([9b7aaa9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9b7aaa9aaaca5c6f2bceb3864cffac42c6ae3e5c))
445
- * voicemail sdk revamp ([ab1de60](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ab1de600f6bfeedfce9755789eb733317b007c33))
446
- * voicmail rewamp of tn work CALL-84282 ([5514d6f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5514d6f7ae1d4585ff4030f5407987262b335355))
447
-
448
- ## [1.45.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.45.1...v1.45.2) (2022-10-03)
449
-
450
-
451
- ### Bug Fixes
452
-
453
- * correct the improper typing in bye stats ([#156](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/156)) ([33478e1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/33478e151335919ad33a2584df1f9deebde2c506))
454
-
455
- ## [1.45.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.45.0...v1.45.1) (2022-09-27)
456
-
457
-
458
- ### Bug Fixes
459
-
460
- * **calling-sdk:** emit unregister and connecting events ([#154](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/154)) ([45aaf1b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/45aaf1b62013f7fa2368f9baa5d46d90059cee08))
461
-
462
- # [1.45.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.44.1...v1.45.0) (2022-09-26)
463
-
464
-
465
- ### Features
466
-
467
- * **metrics:** add registration metrics to the calling-sdk ([#152](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/152)) ([302a4ba](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/302a4bac5d5df6f394dcaa19796161d497b9a129))
468
-
469
- ## [1.44.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.44.0...v1.44.1) (2022-09-26)
470
-
471
-
472
- ### Bug Fixes
473
-
474
- * **recent_session:** drop spark sessions when received from janus ([#153](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/153)) ([424b3aa](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/424b3aa8516be778c7987c291cb73d7aea5a7226))
475
-
476
- # [1.44.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.43.0...v1.44.0) (2022-09-26)
477
-
478
-
479
- ### Features
480
-
481
- * add bye stats for call disconnection ([#151](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/151)) ([be80a6c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/be80a6c129b1bb83fff3ebeac0ff20b058a7246c))
482
-
483
- # [1.43.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.12...v1.43.0) (2022-09-20)
484
-
485
-
486
- ### Features
487
-
488
- * add the support of delayed offer handling ([#149](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/149)) ([cd40194](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/cd40194d3e8a0ddc67f012fbefcb1438b4fb90c7))
489
-
490
- ## [1.42.12](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.11...v1.42.12) (2022-09-19)
491
-
492
-
493
- ### Bug Fixes
494
-
495
- * **call-error:** fix call error object interface ([#150](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/150)) ([51b3d7d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/51b3d7d6c43678366dde747918cb825750685df2))
496
-
497
- ## [1.42.11](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.10...v1.42.11) (2022-09-19)
498
-
499
-
500
- ### Bug Fixes
501
-
502
- * added index.min.js call-79972 ([6cd3dd5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6cd3dd51169c536df9b9396036fd63de59103053))
503
- * addressed review comment call:79972 ([d1700b4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d1700b4bf69724c8259781075fc82973b36f27dc))
504
- * addressed review comments call-79972 ([477dc63](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/477dc637787419f5e5c30e58c0c308260e46e515))
505
- * addressed the review comments call:79972 ([bc2f0be](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc2f0be3dcb1e1b331d61d68a4485bdf22bbda54))
506
- * reloved conflicts ([eee052f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eee052fb7eb38014f9d8eb7015ee6471a81ddfd0))
507
- * updated the version ([722f0b4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/722f0b468d9275b3253044ccc5a8d9e93ea4dfd6))
508
-
509
- ## [1.42.10](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.9...v1.42.10) (2022-09-16)
510
-
511
-
512
- ### Bug Fixes
513
-
514
- * **errormessage:** correct error messages approved by UX team ([#148](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/148)) ([60c77e6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/60c77e6d41b6955c420f7d0614d624a9d96041b4))
515
-
516
- ## [1.42.9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.8...v1.42.9) (2022-09-15)
517
-
518
-
519
- ### Bug Fixes
520
-
521
- * handle supplementary services timeout scenarios ([#147](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/147)) ([6807b94](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6807b94978574a57a79f49c673bff211ca602346))
522
-
523
- ## [1.42.8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.7...v1.42.8) (2022-09-13)
524
-
525
-
526
- ### Bug Fixes
527
-
528
- * discard events from the state machine ([#145](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/145)) ([5c5e94b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5c5e94b74a5b9e28dd7a9fdfe84d94cb1340d3af))
529
-
530
- ## [1.42.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.6...v1.42.7) (2022-09-13)
531
-
532
-
533
- ### Bug Fixes
534
-
535
- * **calling-sdk:** minor change to trigger publish ([#144](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/144)) ([47a6c7a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/47a6c7af78ef686ab36b59928e109b9f6dc17e1a))
536
-
537
- ## [1.42.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.5...v1.42.6) (2022-09-08)
538
-
539
-
540
- ### Bug Fixes
541
-
542
- * user forbidden error results in registration with primary and backup both ([#141](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/141)) ([ec6561b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ec6561bfb542b9ea3c0cdcc8f54c97d8275f6b9d))
543
-
544
- ## [1.42.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.4...v1.42.5) (2022-09-07)
545
-
546
-
547
- ### Bug Fixes
548
-
549
- * handle re registration after sleep or network flaps ([#139](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/139)) ([081bd76](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/081bd7618b4288f05f26d7e6552923a49d5fde9f))
550
-
551
- ## [1.42.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.3...v1.42.4) (2022-09-07)
552
-
553
-
554
- ### Bug Fixes
555
-
556
- * adding a log message if init is not invoked CALL-82975 ([4baf742](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4baf7428acaf9c95e9e0a3c6940dd87a3e524195))
557
- * adding loggers and addressed review comments CALL-82975 ([5e1eb14](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5e1eb146bc07c8e9bcbeadc2f611de43e557b27d))
558
- * addressed review comments CALL-82975 ([bc1b33a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc1b33a4213913d68b2cf54ebd6ed576691160d1))
559
- * fixed the indentation issue CALL-82975 ([dd22765](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dd22765fb7578bacbee1ae318b3f80e856f56054))
560
- * loginfo added and review comments addressed CALL-82975 ([9704469](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/97044699bdee60a2daf2843ecd05d8fdf5aced9a))
561
- * removed commented line CALL-82975 ([c23bfc3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c23bfc39c445c9a27b8f98b9386111ec289da2aa))
562
- * removed unwanted code CALL-82975 ([58059c3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/58059c3d1f77bd98ba37db641eb6643a745eb6ce))
563
- * review comments addressed CALL-82975 ([d91270b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d91270b793a6a093a46466ce7096b92d2a4b7bd8))
564
-
565
-
566
- ### Reverts
567
-
568
- * Revert "fix: adding loggers and addressed review comments CALL-82975" ([20c78c4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/20c78c43595b66757b2f278ba40764411bd63013))
569
-
570
- ## [1.42.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.2...v1.42.3) (2022-09-05)
571
-
572
-
573
- ### Bug Fixes
574
-
575
- * add coverage and getter for log level ([c1a1935](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c1a193591c4e52ce0958f6988535c6d693c1f19f))
576
- * add coverage and getter for log level ([dcba53f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dcba53f8b670948c10d93bdff2961e1fe5eb8ef0))
577
-
578
- ## [1.42.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.1...v1.42.2) (2022-09-05)
579
-
580
-
581
- ### Bug Fixes
582
-
583
- * **calling-sdk:** Do not keep all dependencies at bleeding edge. Fix all versions of dependencies. ([#138](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/138)) ([57b8874](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/57b88748fb8491b5ee2b52df01773e66f856fa49))
584
-
585
- ## [1.42.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.0...v1.42.1) (2022-09-01)
586
-
587
-
588
- ### Bug Fixes
589
-
590
- * changing the init void to promise type ([e3b5bb9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e3b5bb94114913dff4584933ba23e4aa761d71fa))
591
- * changing the init void to promise type ([5ba2b12](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5ba2b123c009f5b5d47395f5fe296e6b7fd81426))
592
-
593
- # [1.42.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.41.0...v1.42.0) (2022-09-01)
594
-
595
-
596
- ### Features
597
-
598
- * added public method init to the IVoicemail type ([d09041f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d09041ff07b260cc74f8d1d0c2058e788ff0827d))
599
- * resolved merge conflicts ([d10134a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d10134a81d841f6130ae92f41f8ce1562b7652bc))
600
-
601
- # [1.41.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.40.0...v1.41.0) (2022-09-01)
602
-
603
-
604
- ### Features
605
-
606
- * add custom logger for calling sdk ([98f55ea](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/98f55ea7a32113f41c3f216780631251d0fb9835))
607
- * add custom logger for calling sdk ([b7c1259](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b7c1259daed17977eb32e8e30ef4787e71d304b3))
608
- * add custom logger for calling sdk ([bf6d457](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bf6d4572e9166b216824890b0b7508347790861e))
609
- * add custom logger for calling sdk ([532a308](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/532a308f02477580bb06ecc31c6a9eb6f891bdee))
610
- * add custom logger for calling sdk ([1c0919d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1c0919dfc785d31acf53b8be8c2e1dd90aaf6917))
611
-
612
- # [1.40.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.4...v1.40.0) (2022-08-30)
613
-
614
-
615
- ### Features
616
-
617
- * added code changes for voicemail methods ([a6ded5b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a6ded5b288f0e03f904221008650268c1da81dff))
618
- * added code for enviornment based webexapi ([22e1401](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/22e140137eef0bce4c6f03d80de96768fc0aa6f9))
619
- * added code voicemail content, read, unread, delete ([a064570](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a064570d8b509cb6856d7884d207250308ce59c7))
620
- * addressing review comments recieved ([6594e05](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6594e054e24f94900ed648210ce6931d40372d94))
621
- * addressing review comments recieved in the PR and demo ([92edafe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/92edafe5b40ec2657edf11bd6dff9c37f46ad875))
622
- * addressing review comments recieved in the PR and demo ([45e8889](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/45e8889393610479e807f81938f48674467714c2))
623
- * resolving the conflict index js file ([e27145a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e27145a9df67c322d128e5464cf5cc40a1bc8973))
624
- * review comments addressed ([38c59bf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/38c59bf1dd3112fe7957c2174bb1b4565641f9bd))
625
- * review comments addressed ([112b295](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/112b295685e4da3ca7638bd188b9affde34fcba5))
626
- * voicemail changes ([c0de10b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c0de10b48bf4dda545f541b0e984e5ac09ac462c))
627
- * voiceMail content implementation changes ([d70368b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d70368b248a63fa7e94e8c936ae5c51e5c4a5b2c))
628
- * voiceMail implementation changes ([e616637](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e616637e07e4b2a103920906cb524bdaf8cee171))
629
- * voiceMail implementation changes ([6092af7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6092af77349c6fa2c984727d074d93d6c17fdde3))
630
- * voiceMail sample output display on console changes ([d3b1b11](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d3b1b1133a76c2c811104c1d3e4864083b677e01))
631
- * voicemail sdk changes to detect callingbackend ([0353c43](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0353c437e3fd0b4eb26469a849b28f2c9dcf0737))
632
- * voicemail sdk implementation CALL-79067 ([6a0bf55](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6a0bf555923d37ad967445fb4a00e1eec23ed71f))
633
- * voicemail sdk implementation CALL-79067 ([8f314af](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8f314afec73b84c8ab37e608e0e1f55db81398aa))
634
- * voicemail sdk implementation CALL-79067 ([38bda66](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/38bda6654f0fdc44489e54a7a5595b2754b20cef))
635
- * voicemail sdk minor changes ([45e9b65](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/45e9b659b9ac1e04ee923e7bfb5fa99b48591e91))
636
- * voicemail sdk type definition changes ([a0d12e4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a0d12e4fdfb094a8d696cdf7d223c80f9a7a1f99))
637
- * voiceMail status code implementation ([4c065e3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4c065e322417eb26f64517c5fc4514d78e232f69))
638
- * voicmail sdk implementation ([a95b6b0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a95b6b05fc0dbdaa36e0f9f4d06be8d8f723e01f))
639
- * voicmail sdk implementation changes ([9f8f7ee](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9f8f7ee36cfdfbeedf23caad3b7479bf0f8ab8d6))
640
-
641
- ## [1.39.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.3...v1.39.4) (2022-08-26)
642
-
643
-
644
- ### Bug Fixes
645
-
646
- * rollback version injector plugin ([d2dd23f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d2dd23f3fbc9190890eb18488663893e0c71831f))
647
-
648
- ## [1.39.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.2...v1.39.3) (2022-08-24)
649
-
650
-
651
- ### Bug Fixes
652
-
653
- * **versioning:** put in temporary fix via plugin ([#127](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/127)) ([815be31](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/815be314b00e4da1a091f387e870f9f32a7ab4a1))
654
-
655
- ## [1.39.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.1...v1.39.2) (2022-08-23)
656
-
657
-
658
- ### Bug Fixes
659
-
660
- * choose same mobius server for calling and registration ([9c351b6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9c351b609610e834b61d077cfd452d6328dff7ee))
661
- * choose same mobius server for calling and registration ([28899dd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/28899dd176b2903ecc1056f77943b86756f971d5))
662
- * choose same mobius server for calling and registration ([9c6797b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9c6797b664374041dd3775088bd9731296a867f2))
663
- * choose same mobius server for calling and registration ([d36d7b5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d36d7b5ad4733940714af20532f744855e354105))
664
- * choose same mobius server for calling and registration ([7fb71af](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7fb71afa10429796c756a788625a54cb9df3bf17))
665
- * choose same mobius server for calling and registration ([b729ca8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b729ca81f869845bf847caac188fc4f9d9859534))
666
- * choose same mobius server for calling and registration ([2f2d388](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2f2d388aea535b26bc32f561c417d2cef97bd109))
667
- * choose same mobius server for calling and registration ([1daaaef](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1daaaefeffdfd9ef9972194a1d57505fdc9b69ff))
668
- * choose same mobius server for calling and registration ([d51d611](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d51d61193fbe8bdfcf41887312525efbca10901b))
669
- * choose same mobius server for calling and registration ([ab715fd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ab715fd5062dc045cd79a5927c9b0a4e0e73c170))
670
- * choose same mobius server for calling and registration ([038e4c4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/038e4c4c4649bcdea576a7bc6a6736284037fe02))
671
- * choose same mobius server for calling and registration ([8aaa1da](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8aaa1daa4c53b57b59e28d85d4c500af0bde347f))
672
- * choose same mobius server for calling and registration ([38c333b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/38c333bdf2861c1661b1e1b2ffda65a89e76b68e))
673
-
674
- ## [1.39.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.0...v1.39.1) (2022-08-18)
675
-
676
-
677
- ### Bug Fixes
678
-
679
- * **calling-sdk:** use clientRegion instead of region code for mobius discovery ([#118](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/118)) ([76ca65e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/76ca65eb543bcda9e5940db28e7c0fd2919b049c))
680
-
681
- # [1.39.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.9...v1.39.0) (2022-08-18)
682
-
683
-
684
- ### Features
685
-
686
- * send sdk version in requests ([1eeccbd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1eeccbd8f496dc4b05e1c711c116ad34e622a293))
687
-
688
- ## [1.38.9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.8...v1.38.9) (2022-08-17)
689
-
690
-
691
- ### Bug Fixes
692
-
693
- * **calling-sdk:** export disposition and other call record types ([#117](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/117)) ([57240b1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/57240b1d8f156f82627e183cf9a69082ce1ac3d3))
694
-
695
- ## [1.38.8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.7...v1.38.8) (2022-08-16)
696
-
697
-
698
- ### Bug Fixes
699
-
700
- * **calling-sdk:** links is not an array ([#116](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/116)) ([82b3be2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/82b3be22de420a54fa35f0b8fd660e2dc63dd52c))
701
-
702
- ## [1.38.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.6...v1.38.7) (2022-08-16)
703
-
704
-
705
- ### Bug Fixes
706
-
707
- * handle cors case when either region info or region based mobius url query fails ([8c1a0b3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8c1a0b30b4d88454c1b3fca728ffb2ed5727eb4a))
708
- * handle cors case when either region info or region based mobius url query fails ([ab6a237](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ab6a237eea91d456deb6ca786abacab2f638763c))
709
-
710
- ## [1.38.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.5...v1.38.6) (2022-08-16)
711
-
712
-
713
- ### Bug Fixes
714
-
715
- * **calling-sdk:** fix types and ut for call session event ([#114](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/114)) ([b02555d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b02555d22b4ff3e8fa970a9dc77648baa39c2586))
716
-
717
- ## [1.38.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.4...v1.38.5) (2022-08-15)
718
-
719
-
720
- ### Bug Fixes
721
-
722
- * add support of multiple mobius instances ([#113](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/113)) ([8737497](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8737497df0464decdb5f5bfdcdf9a9af0e9fe728))
723
-
724
- ## [1.38.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.3...v1.38.4) (2022-08-10)
725
-
726
-
727
- ### Bug Fixes
728
-
729
- * handle early media case ([7eef795](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7eef7956c6ee50b6b608e97f7c1bc592ed33d9d8))
730
-
731
- ## [1.38.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.2...v1.38.3) (2022-08-10)
732
-
733
-
734
- ### Bug Fixes
735
-
736
- * **calling-sdk:** fix regex to keep the leading + ([#111](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/111)) ([d15416a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d15416a51a32adc72680fa28dcc3b1c5656675a4))
737
-
738
- ## [1.38.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.1...v1.38.2) (2022-08-09)
739
-
740
-
741
- ### Bug Fixes
742
-
743
- * send sig_alerting instead of sig_progress ([faa2ca4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/faa2ca45f8f8b51a32bb9ba43034a7159023b13e))
744
-
745
- ## [1.38.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.0...v1.38.1) (2022-08-09)
746
-
747
-
748
- ### Bug Fixes
749
-
750
- * **calling-sdk:** add error event for call object ([911a079](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/911a079483df35534d6285058f4839861e80a555))
751
-
752
- # [1.38.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.37.1...v1.38.0) (2022-08-05)
753
-
754
-
755
- ### Features
756
-
757
- * callhistory sdk type and unit test review comments addressed call-76176 ([4a0235b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4a0235bf8ee1dd8b503b6959245719cc1c0b1a61))
758
- * callhistory sdk type related review comments addressed call-76176 ([0663dd6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0663dd62be00f113d16109bd53e9a41294eb8db4))
759
- * callhistory sdk unit test and response object implementation call-76176 ([742571e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/742571ea6fba484137f7797feeaed8a1b8162f69))
760
- * callhistory sdk unit test implementation call-76176 ([47ba83d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/47ba83d41b6e4d33f121f4a468a062b0d467648d))
761
- * callhistory sdk unit test review comments addressed call-76176 ([2492781](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2492781dfe7d0fcbe870596a3d7def0e20ab225a))
762
- * callhistory sdk unit test review comments addressed call-76176 ([237c9fa](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/237c9fa34cd914b5ce9ae34bca95b2eba7d25022))
763
- * callhistory sdk unit test review comments addressed call-76176 ([9f0526b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9f0526b9f3ddda2f125403eff0770a0355a7c594))
764
- * callhistory sdk unit test review comments addressed call-76176 ([64cb14f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/64cb14fa1b456f25c9ebc432ad37d030e14ddef3))
765
- * callhistory sdk unit test review comments addressed call-76176 ([a82c09c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a82c09c1e9d2e9960fcde99788032d0a49d1e92d))
766
-
767
- ## [1.37.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.37.0...v1.37.1) (2022-08-05)
768
-
769
-
770
- ### Bug Fixes
771
-
772
- * add two stage emission for callerId updates ([0b70e61](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0b70e61429470fab30712bc101f8f4d7eb9daf56))
773
- * add two stage emission for callerId updates ([c3d7f7d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c3d7f7d7a7b85a065ebcbf5e3d6e7997fb66fe1e))
774
-
775
- # [1.37.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.36.0...v1.37.0) (2022-08-02)
776
-
777
-
778
- ### Features
779
-
780
- * add unit tests for call related errors ([c0ae3f0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c0ae3f060f0208b11419e9b1e0f45b0c1b253c05))
781
- * add unit tests for call related errors ([deff708](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/deff70836e354d32ab91e99c2e2eb790b038f2b7))
782
- * add unit tests for call related errors ([e1fbed9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e1fbed9064f1624157ec6f5e1d66b0bed58fbbf4))
783
- * add unit tests for call related errors ([1c3a02e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1c3a02e73ad25d0ea9eb2d044d2a38c666dcb20b))
784
- * add unit tests for call related errors ([20cb5cb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/20cb5cbb4923a5b4d47738a46202d304b363d726))
785
-
786
- # [1.36.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.35.1...v1.36.0) (2022-08-02)
787
-
788
-
789
- ### Features
790
-
791
- * added default error code for callhistory sdk call-76176 ([947116a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/947116a738e1175f8d885827480508f75baf59ba))
792
- * callhistory sdk implementation call-76176 ([7832c42](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7832c42106f43f6b34208c58eee6b1b9e8eb038e))
793
- * minor change call-76176 ([a6e69bd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a6e69bd3eabbe524e8a667afda0965461de58559))
794
- * review comments addressed for callhistory sdk call-76176 ([5c06867](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5c068676442a6e5bcb78606211336a7c9533f005))
795
- * review comments addressed for callhistory sdk call-76176 ([3e69503](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3e69503a9c7b3faebd5e5ce7708c663b8ee616f6))
796
- * review comments addressed for callhistory sdk event typecall-76176 ([149447f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/149447f943f159e6e78faa51a81ef99a671cc0df))
797
-
798
- ## [1.35.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.35.0...v1.35.1) (2022-08-01)
799
-
800
-
801
- ### Bug Fixes
802
-
803
- * send roap_error to mobius ([#105](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/105)) ([5640aa8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5640aa827a480f77f82b6a2b88f68b1213e5b7c7))
804
-
805
- # [1.35.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.34.0...v1.35.0) (2022-07-28)
806
-
807
-
808
- ### Features
809
-
810
- * **calling-sdk:** add codeowners file ([#103](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/103)) ([7f3ec94](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7f3ec94c0595f1bc3acf13d0301bb13800e5a61c))
811
-
812
- # [1.34.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.4...v1.34.0) (2022-07-26)
813
-
814
-
815
- ### Features
816
-
817
- * define various entry points for different features ([1a27c0a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1a27c0a02ecc0b47dc542c60f96ce781e66b2722))
818
-
819
- ## [1.33.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.3...v1.33.4) (2022-07-25)
820
-
821
-
822
- ### Bug Fixes
823
-
824
- * avoid waiting for remote to close channel ([d167524](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d1675242b3eabe3ec5969fcdd789912ac78bf416))
825
- * avoid waiting for remote to close channel ([d1a6db4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d1a6db4ffd5412f9e64d933e295d69c95ba839d8))
826
-
827
- ## [1.33.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.2...v1.33.3) (2022-07-25)
828
-
829
-
830
- ### Bug Fixes
831
-
832
- * **calling-sdk:** assumption in client region info. use default url ([#100](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/100)) ([2d54bfe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2d54bfea5c0381adc06fc9ecb86e701afbc9dbbc))
833
-
834
- ## [1.33.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.1...v1.33.2) (2022-07-25)
835
-
836
-
837
- ### Bug Fixes
838
-
839
- * send id along with avatarId ([428171e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/428171e7eff95ae4cc72e85ae4b7fee3985d69a9))
840
- * send id along with avatarId ([0ffaa55](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0ffaa550d96c7a79a9b1ff10932845672950b38e))
841
- * send id along with avatarId ([dfa5c8f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dfa5c8f36f1d71ed530ae8164b2d865d98a0be17))
842
-
843
- ## [1.33.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.0...v1.33.1) (2022-07-21)
844
-
845
-
846
- ### Bug Fixes
847
-
848
- * **calling-sdk:** keepalive tolerance and expose on, off methods to web client ([#97](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/97)) ([424f9c5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/424f9c529b6e711110ef0fb8b421e0a54c43a516))
849
-
850
- # [1.33.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.32.2...v1.33.0) (2022-07-19)
851
-
852
-
853
- ### Features
854
-
855
- * add support for call related error handling ([c9d9e11](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c9d9e11af1697ea8aa36d8172ca1a2f61317935e))
856
- * add support for call related error handling ([84abb91](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/84abb91760a5089f86be01cf437a47890be6485c))
857
- * add support for call related error handling ([5f48b77](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5f48b774cf52387efb115c4e78883b82e7227e51))
858
- * add support for call related error handling ([82ee72c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/82ee72c7fd2d5e072e626af4fc2343ae7bf29bc0))
859
- * add support for call related error handling ([eaf81f3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eaf81f3c7372d88a4baaefe90187341a3bf6e844))
860
- * add support for call related error handling ([f83ef60](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f83ef6025b788fc369f2335a4b1a8379e49bba2b))
861
- * add support for call related error handling ([1e059e5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1e059e5cc053d70e9389cac1f203c52558f75de5))
862
-
863
- ## [1.32.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.32.1...v1.32.2) (2022-07-18)
864
-
865
-
866
- ### Bug Fixes
867
-
868
- * initialize statemachine only once ([f2dcd9d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f2dcd9d404a67bf174885ac2c6742b54bc289ecf))
869
- * initialize statemachine only once ([ff7a39a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ff7a39a597d93316b028998e4426c272f82a67fc))
870
- * initialize statemachine only once ([3f3105f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3f3105f6c3293b057c461ef271988299319df68a))
871
-
872
- ## [1.32.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.32.0...v1.32.1) (2022-07-13)
873
-
874
-
875
- ### Bug Fixes
876
-
877
- * **calling-sdk:** use fetch for delete device, bypass js-sdk to override cisco-device-url ([#94](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/94)) ([5139158](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5139158c8ec45bfed90d178eceb26d47d01e19f4))
878
-
879
- # [1.32.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.31.2...v1.32.0) (2022-07-13)
880
-
881
-
882
- ### Features
883
-
884
- * add support for session refresh ([019b0a7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/019b0a755c267174212cec190caffde25b099f4b))
885
- * add support for session refresh ([243c6a8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/243c6a830d40769d1a507fd4649571d2918fc3ab))
886
- * add support for session refresh ([2e85095](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2e85095dbf5dfffd01a0d73c720da54a82ee1847))
887
- * add support for session refresh ([5e18dbc](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5e18dbc221da27071fbff48d89d742aea44c0267))
888
- * add support for session refresh ([8bb7b86](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8bb7b86dd6c2e7aac974bccb347f236693126511))
889
-
890
- ## [1.31.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.31.1...v1.31.2) (2022-07-11)
891
-
892
-
893
- ### Bug Fixes
894
-
895
- * callerid update fails for production users ([6a23c75](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6a23c75f7aebcb90e1f3aeb54b0aba4904ec1da2))
896
- * callerid update fails for production users ([fce2823](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fce28235de13b317b8d19d8573e72660454e5787))
897
- * callerid update fails for production users ([0ec1f9d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0ec1f9df834b01313cf54956d321d96373bb757a))
898
- * callerid update fails for production users ([3527d3d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3527d3df4e1d36024211c0927e954ac3157b4dd4))
899
-
900
- ## [1.31.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.31.0...v1.31.1) (2022-07-08)
901
-
902
-
903
- ### Bug Fixes
904
-
905
- * **calling-sdk:** duplicate cisco-device-url fields in requests and incorrect url for 403 ([#86](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/86)) ([c227a8e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c227a8ec38f370ba62611ae53792fb43357d2023))
906
-
907
- # [1.31.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.7...v1.31.0) (2022-07-07)
908
-
909
-
910
- ### Features
911
-
912
- * add support for dtmf ([cf4f80e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/cf4f80ea3f7a08588315adfb73e5cf44009bc508))
913
- * add support for dtmf ([81f1d56](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/81f1d5664d44f28cb21b25d017a719ac88b41bf9))
914
- * add support for dtmf ([c97d039](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c97d039cbe3d8b3154681b4b194d7f08f12d8041))
915
-
916
- ## [1.30.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.6...v1.30.7) (2022-06-24)
917
-
918
-
919
- ### Bug Fixes
920
-
921
- * **calling-sdk:** cleanup file fix permission ([#83](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/83)) ([de6ccd9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/de6ccd92bad64a517950ff16075700157efa878f))
922
-
923
- ## [1.30.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.5...v1.30.6) (2022-06-24)
924
-
925
-
926
- ### Bug Fixes
927
-
928
- * **calling-sdk:** pipeline fix cleanup echo ([#82](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/82)) ([03087b2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/03087b27a7f488f5e5a0ad1ddc4e88945a7eda9f))
929
-
930
- ## [1.30.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.4...v1.30.5) (2022-06-24)
931
-
932
-
933
- ### Bug Fixes
934
-
935
- * **calling-sdk:** pipeline fix jenkinsfile ([#81](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/81)) ([ff981ef](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ff981efb082e75762e2bf696564334de133bde4a))
936
-
937
- ## [1.30.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.3...v1.30.4) (2022-06-24)
938
-
939
-
940
- ### Bug Fixes
941
-
942
- * **calling-sdk:** fix pipeline cleanup script ([#80](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/80)) ([8cb8bb0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8cb8bb007d0688a808ed4a111e786676cf052a4c))
943
-
944
- ## [1.30.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.2...v1.30.3) (2022-06-24)
945
-
946
-
947
- ### Bug Fixes
948
-
949
- * **calling-sdk:** pipeline failure test after credential changes ([#79](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/79)) ([1dae3d9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1dae3d9eac2c183ec788c0e76a5bd786bb3820fb))
950
-
951
- ## [1.30.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.1...v1.30.2) (2022-06-22)
952
-
953
-
954
- ### Bug Fixes
955
-
956
- * **calling-sdk:** minor change for pipeline failure ([#78](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/78)) ([7e5d08a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7e5d08a25ee55617422e248be51813b3cb48aab3))
957
-
958
- ## [1.30.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.0...v1.30.1) (2022-06-21)
959
-
960
-
961
- ### Bug Fixes
962
-
963
- * **calling-sdk:** minor change for pipeline failure retry ([#77](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/77)) ([994f399](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/994f399464c7580f63f543e237a3527e0ad3f49b))
964
-
965
- # [1.30.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.29.1...v1.30.0) (2022-06-20)
966
-
967
-
968
- ### Features
969
-
970
- * **calling-sdk:** add discovery and server selection through catalog ([#76](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/76)) ([42881d4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/42881d4e91ce6d9d5c9e9b572f834713a4e7507b))
971
-
972
- ## [1.29.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.29.0...v1.29.1) (2022-06-20)
973
-
974
-
975
- ### Bug Fixes
976
-
977
- * **calling-sdk:** change mediaconnection class name due to webrtc-core 1.20.1 ([#75](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/75)) ([4f9c2f6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4f9c2f69dec4a8483d90c81f409b880635722426))
978
-
979
- # [1.29.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.28.0...v1.29.0) (2022-06-16)
980
-
981
-
982
- ### Features
983
-
984
- * add correlationId instead of callId ([b163812](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b1638124ebbd304f6a5b8465669e82710da97502))
985
- * add correlationId instead of callId ([45ff4e3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/45ff4e3a2013f362179ec119278ecf2e19545498))
986
-
987
- # [1.28.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.27.0...v1.28.0) (2022-06-16)
988
-
989
-
990
- ### Features
991
-
992
- * reinvite handling ([606b229](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/606b229d21af0b39fce3be644ab41d48a926dc0e))
993
- * reinvite handling ([e8bc7c3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e8bc7c3216f10540ec2e06f8d2a7291d35031e72))
994
- * reinvite handling ([59f65d3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/59f65d39c992576e90838ad408f07dfaf4107ba3))
995
- * reinvite handling ([da31617](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/da31617e5c48adf937d743e774b2b80f879e6039))
996
- * reinvite handling ([189d409](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/189d409889b2350fc20f2030d57bb24485f77009))
997
- * reinvite handling ([e84f297](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e84f2973a7563ace4ae6ae90d8651969870108a3))
998
-
999
- # [1.27.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.26.0...v1.27.0) (2022-06-13)
1000
-
1001
-
1002
- ### Features
1003
-
1004
- * **calling-sdk:** implement mute functionality on calls ([#71](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/71)) ([6da9fb8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6da9fb81d7d5209817c7a8a0ea306e4910792007))
1005
-
1006
- # [1.26.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.25.0...v1.26.0) (2022-06-09)
1007
-
1008
-
1009
- ### Features
1010
-
1011
- * add CallerId support ([55ac12a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/55ac12afdc7272fa0ca47aa63dc3ac4b44873383))
1012
- * add CallerId support ([35fbd5a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/35fbd5a1371b2657a5326922cf17abea452ec833))
1013
- * add support for callerId ([c7ffeb3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c7ffeb37cb5b1663f944accc67fd669ea1b5a4a0))
1014
- * add support for callerId ([23dc8be](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/23dc8be7024c0c976a7ee2a128d6846c08d7b395))
1015
- * add support for callerId ([1ac5a08](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1ac5a08bfe552abe87a0e9930d56ad4ada1aade3))
1016
- * add support for calllerId ([af81d82](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/af81d82dd98580a144c3f4563cf25064b4e867a5))
1017
- * support two stage caller id ([df127cf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/df127cfba746fd0cb240931aa5f2f211a48b38f8))
1018
-
1019
- # [1.25.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.24.0...v1.25.0) (2022-06-08)
1020
-
1021
-
1022
- ### Features
1023
-
1024
- * remove video mlines patch ([b429109](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b429109f1c7c98a448846c3bb60af4bccae8d382))
1025
-
1026
- # [1.24.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.23.0...v1.24.0) (2022-06-03)
1027
-
1028
-
1029
- ### Features
1030
-
1031
- * more coverage related tests ([d552ada](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d552adaddb1579bc8f67d8031975586b3697ab3d))
1032
- * unit tests for incoming call ([b9246aa](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b9246aaf8017155fbc34f90bf376c306a1b3505d))
1033
- * unit tests for incoming call ([85d4656](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/85d46564843d478fc6ce292ed53fba433e24a4ec))
1034
- * unit tests for incoming call ([f930f42](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f930f42397a430b1e639675bac29adf2ea56b8cb))
1035
- * unit tests for incoming call ([2dd9880](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2dd9880b098cb1a46b7bfc7234b78843c44fcd4f))
1036
- * unit tests for incoming call with media ([703413e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/703413ec0a058fa752bc759648c0e174f47ff93a))
1037
- * unit tests for incoming call with media ([c92832d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c92832dede23c3a087e1a505f2d8a0133de4243f))
1038
-
1039
- # [1.23.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.22.0...v1.23.0) (2022-06-02)
1040
-
1041
-
1042
- ### Features
1043
-
1044
- * **calling-sdk:** emit user recent session ([c519a63](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c519a63b3e30542e6e364fb71b139b94a15a809e))
1045
- * **calling-sdk:** emit user recent session ([d2ecf5d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d2ecf5ddb87a5c70c1edffe3d5e9e8439c24cbc3))
1046
- * **calling-sdk:** emit user recent session ([dedf281](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dedf28172d5f2535ca0fa8abd5d50ae64b56687f))
1047
-
1048
- # [1.22.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.21.0...v1.22.0) (2022-05-31)
1049
-
1050
-
1051
- ### Features
1052
-
1053
- * incoming call ([e9a3c3b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e9a3c3b57c8ff0bd9024e71fbc0086602ae07655))
1054
- * incoming call ([4c29067](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4c290674465da8a61a9c46a22c285afd4c9e7dd7))
1055
- * incoming call ([6700e1c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6700e1c9c3742a236b2429f7e8b8e90e99ba8b55))
1056
- * incoming call with media ([243e00c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/243e00c82a8441e25f904f80e972b872c8ffa35d))
1057
- * incoming Call with media ([d2d27e6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d2d27e6767b651fc6c75f118ef5e277afdff44a2))
1058
- * incoming Call with media ([6ba3ddf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6ba3ddfcad343d96dd7e4225582915911145a738))
1059
- * incoming call with media handling ([bc4e74e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc4e74e29b564cf82d9227225276b3a6f19b472d))
1060
- * incoming Call with media handling ([fde2f06](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fde2f06897f91169d7b35e2eaa3e2effa499230c))
1061
- * incoming Call with media handling ([b8943f4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b8943f45ebc84dfae5ba09b4747486e7d4734031))
1062
-
1063
- # [1.21.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.20.0...v1.21.0) (2022-05-20)
1064
-
1065
-
1066
- ### Features
1067
-
1068
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([b1d47ca](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b1d47ca7ce4890fabde58aca82b20a2a5d8b1314))
1069
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([f9138b9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f9138b9e7f5543cd138d06cd56980cdbd4261956))
1070
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([93dfa77](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/93dfa774e0617f3130650a2cddf52d7dac0da923))
1071
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([ebfeaff](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ebfeaff245f7d0f64548584aea25c83b257c7474))
1072
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([a298c33](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a298c3300ea485acde1950edeb0ee855a3f3bd47))
1073
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([fe06d86](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fe06d86008b3da8a363aa051133e1419005fae93))
1074
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([3f2b0ae](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3f2b0ae566850461a7b326e4bb7f7e58ba8d7278))
1075
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([77d9e10](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/77d9e101a2bf5ec10aeb7e4f773a08997065485f))
1076
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([0c2d180](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0c2d1802957b2e732b0e4f22e64edabc40218fd5))
1077
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([1d02852](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1d02852106a9d5213905d245013b7bb3dffdc54d))
1078
- * **calling-sdk:** ut and code for 404 Error response in keep alive ([61738e3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/61738e3f43725b9813d830cb0273cf8a92efb0ca))
1079
- * outbound call state machine related changes ([1e3e54b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1e3e54b21fb0e82346eddf422f8a17e69a2cd7cd))
1080
- * outbound call state machine related changes ([52cf68d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/52cf68d7c5f7f42040f75fc5fb5c062d1ab74344))
1081
- * outbound call state machine related changes ([8de1d50](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8de1d50bbc85849bd6e5074bb126f253d2eaadff))
1082
- * outbound call state machine related changes ([7037714](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/70377147b4f8ed254d7a72311a85561f879e9407))
1083
-
1084
- # [1.20.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.6...v1.20.0) (2022-05-16)
1085
-
1086
-
1087
- ### Features
1088
-
1089
- * fix timer leaks with jest ([c85d2c5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c85d2c505e83b74c689c85c4ac0b0fca5357c0ff))
1090
-
1091
- ## [1.19.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.5...v1.19.6) (2022-05-13)
1092
-
1093
-
1094
- ### Bug Fixes
1095
-
1096
- * **calling-sdk:** remove type module and revert to module.exports ([#64](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/64)) ([411dbff](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/411dbff763df6d0c603ed911dea1fe59dd5cbef6))
1097
-
1098
- ## [1.19.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.4...v1.19.5) (2022-05-10)
1099
-
1100
-
1101
- ### Bug Fixes
1102
-
1103
- * **calling-sdk:** sanitise number ([#62](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/62)) ([7abb498](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7abb498a5c10c8d12c3733195509263557f8c313))
1104
-
1105
- ## [1.19.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.3...v1.19.4) (2022-05-10)
1106
-
1107
-
1108
- ### Bug Fixes
1109
-
1110
- * **calling-sdk:** expose correlation id in interface ([#61](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/61)) ([62a1bb7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/62a1bb7c1a0dc581d707873eda2b2376ef85cc92))
1111
-
1112
- ## [1.19.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.2...v1.19.3) (2022-05-09)
1113
-
1114
-
1115
- ### Bug Fixes
1116
-
1117
- * **calling-sdk:** expose correlation id to web app ([#60](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/60)) ([5a804fa](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5a804fa947241c0393d0d062d2b69c78cc9e2914))
1118
-
1119
- ## [1.19.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.1...v1.19.2) (2022-05-06)
1120
-
1121
-
1122
- ### Bug Fixes
1123
-
1124
- * **calling-sdk:** update index.min.js for testing by other teams ([0ad5b16](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0ad5b16bd8d47b2d177e179f0c55358155ae79f5))
1125
-
1126
- ## [1.19.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.0...v1.19.1) (2022-05-04)
1127
-
1128
-
1129
- ### Bug Fixes
1130
-
1131
- * **calling-sdk:** ideviceinfo missing export ([#58](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/58)) ([784cc61](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/784cc61081ff10fa4eaf419d584636fef85a0937))
1132
-
1133
- # [1.19.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.18.3...v1.19.0) (2022-05-02)
1134
-
1135
-
1136
- ### Features
1137
-
1138
- * **calling-sdk:** outgoing call disconnect added for demo ([#55](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/55)) ([fb355df](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fb355dfe60b326877b887e6bf3dc250549af7523))
1139
-
1140
- ## [1.18.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.18.2...v1.18.3) (2022-05-02)
1141
-
1142
-
1143
- ### Bug Fixes
1144
-
1145
- * **calling-sdk:** update to babel config to use webrtc core ([#54](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/54)) ([bfd93ea](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bfd93ea35f071b3796449a269db3f97e9e248ede))
1146
-
1147
- ## [1.18.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.18.1...v1.18.2) (2022-04-29)
1148
-
1149
-
1150
- ### Bug Fixes
1151
-
1152
- * **calling-sdk:** handle 403 with error code 101 ([#52](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/52)) ([11139da](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/11139dacf3de13bcbf955c25adf9409f5ee3e6b5))
1153
-
1154
- ## [1.18.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.18.0...v1.18.1) (2022-04-26)
1155
-
1156
-
1157
- ### Bug Fixes
1158
-
1159
- * **calling-sdk:** fix function names in call object and remove unneeded func ([#50](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/50)) ([7beb932](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7beb93277a38547abf8dd4453ad1d721a820c9c8))
1160
-
1161
- # [1.18.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.17.0...v1.18.0) (2022-04-25)
1162
-
1163
-
1164
- ### Features
1165
-
1166
- * **calling-sdk:** remove CallDetails and callorigin. use calldetails only ([#47](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/47)) ([6094205](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6094205f630f51e1ecb70ebcc03f122cc3ae89b2))
1167
-
1168
- # [1.17.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.16.0...v1.17.0) (2022-04-22)
1169
-
1170
-
1171
- ### Features
1172
-
1173
- * add log levels ([49e5695](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/49e5695cd78309e5fa784e0f1723091f52342b9f))
1174
- * add log levels ([d8b6bc2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d8b6bc210c526ef840f4e2170dcdd1d94fd87fe9))
1175
- * add log levels ([e5c85d0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e5c85d0717d7216eb00d7aeacd8ce9d89d448d79))
1176
- * add timestamps to log ([7f7823b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7f7823b8f99c87a0f70546454652db341cda05b3))
1177
- * add timestamps to log ([fb723ce](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fb723ce81d1a4d1257b34ab91262cbac035ef364))
1178
- * add various log levels ([4e4007a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4e4007a147ad368653d4189f4d67fc0fc2ee4e5c))
1179
- * add various log levels ([3603593](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3603593af076c92a42b59e5199546f771e1b8ff2))
1180
-
1181
- # [1.16.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.15.0...v1.16.0) (2022-04-19)
1182
-
1183
-
1184
- ### Features
1185
-
1186
- * event related testcases ([eb3cfb9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eb3cfb9f49b7e76fde0abd822f837173064f367d))
1187
-
1188
- # [1.15.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.14.0...v1.15.0) (2022-04-19)
1189
-
1190
-
1191
- ### Features
1192
-
1193
- * **calling-sdk:** modify devicetype to accept multiple sip addresses ([#41](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/41)) ([6a326d6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6a326d6e0541fa354759411e2fb645a147e43786))
1194
-
1195
- # [1.14.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.13.0...v1.14.0) (2022-04-12)
1196
-
1197
-
1198
- ### Features
1199
-
1200
- * add 403 case ([5f1a287](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5f1a2875472722b33cbd5a47d167793f45194236))
1201
- * add 403 cases ([517f4d8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/517f4d8ac67922ff69792b5dca29e21064a9b89b))
1202
- * add 403 cases ([90b51c9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/90b51c9ed520c1406d34e514a741666f0f01de55))
1203
- * add unit test ([0a01d32](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0a01d329dcb736e0c2c8360c1844c6f3b8a3cb7c))
1204
- * add unit test ([1ee4032](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1ee4032ac4a4c1d42c76dd3fe8b13b7499d844e8))
1205
-
1206
- # [1.13.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.12.0...v1.13.0) (2022-04-11)
1207
-
1208
-
1209
- ### Features
1210
-
1211
- * 310965 Implement keepalive flow for calling SDK ([058350c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/058350cc187d17b5b5c4c37b16df7670c1241279))
1212
- * keepalive and unit tests ([b66215a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b66215abaaa5c64e2844374da033c1fc8bc2e1f5))
1213
- * keepalive and unit tests ([145ba16](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/145ba16d492683c74d6ff00da7ed456e7d3478b9))
1214
- * keepalive and unit tests ([f0df024](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f0df0249ba6e3734fc3b989847795a99adf5cb27))
1215
- * keepalive implementation ([bc20faf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc20faf640295972d8c9403664194788b79b14d1))
1216
- * keepalive implementation ([2faeff6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2faeff6578d47e6117cd3167b82a069081516005))
1217
- * removing dead code ([0d32391](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0d3239163d0770d4b27ced766f63a12819d84d03))
1218
-
1219
- # [1.12.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.11.0...v1.12.0) (2022-04-11)
1220
-
1221
-
1222
- ### Features
1223
-
1224
- * add unit test for 401 case ([558ce6b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/558ce6b43bee5784cd5fbaf0d3cf5029cc0624d7))
1225
-
1226
- # [1.11.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.10.0...v1.11.0) (2022-04-08)
1227
-
1228
-
1229
- ### Features
1230
-
1231
- * **calling-sdk:** unit test cases for create device and delete device ([bc334e5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc334e56df8e347cedb45341bb0c7afbbff061f4))
1232
- * **calling-sdk:** unit test cases for create device and delete device ([ded141d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ded141d8d9a234e30735048ddd1524f02a5a6cdb))
1233
- * **calling-sdk:** unit test cases for create device and delete device ([c2a8d00](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c2a8d00d0b13e249d2d4d24ae7511a65eeae20e0))
1234
- * **calling-sdk:** unit test cases for create device and delete device ([84289ed](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/84289edaf8600b233d924f485cd7488941a944d6))
1235
- * **calling-sdk:** unit test cases for create device and delete device ([cc3a93d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/cc3a93dcd00baffc337623d04355b139e91def64))
1236
- * **calling-sdk:** unit test cases for create device and delete device ([00603fb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/00603fb89ff5c47eb610b21a080d8a5368f9f6ac))
1237
- * **calling-sdk:** unit test cases for create device and delete device ([a383f80](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a383f80fa75beaebb160252295f13a033e1d50f0))
1238
- * **calling-sdk:** unit test cases for create device and delete device ([b0df206](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b0df206362083ee6ea46217f0feea8415b1640af))
1239
-
1240
- # [1.10.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.9.0...v1.10.0) (2022-04-07)
1241
-
1242
-
1243
- ### Features
1244
-
1245
- * add 503 handling for registration ([f64247f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f64247fea9ac598370578d3fac5637c34b0c4633))
1246
- * add unit test ([20d81d4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/20d81d49806672ae8492f1c082c9e584c204e590))
1247
- * dead code removal ([3d9fe58](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3d9fe586e78da3a00c5e601ce07be43203e1c46e))
1248
- * handle 401 error case for registration flows ([757f1f1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/757f1f14e961145c0ab99165cca62b8f7ff5747f))
1249
- * merge conflict ([eec252e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eec252ea510f52aafe43b82b84b018a1e7b3d4b8))
1250
- * merge conflict ([4eb5959](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4eb59596afe9940e7840c1ae7cb78c0333adeae2))
1251
- * review comments ([b310d92](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b310d926c31c4652397b76f746dc2a3c2be54010))
1252
- * review comments ([0164cb0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0164cb07957acc9ae1445fe9718ea027f29dcc1a))
1253
-
1254
- # [1.9.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.8.0...v1.9.0) (2022-04-05)
1255
-
1256
-
1257
- ### Features
1258
-
1259
- * **calling-sdk:** adding cjs to rollup output ([#34](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/34)) ([4457311](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/445731163ea58d17b235165d92399826aae8ed36))
1260
-
1261
- # [1.8.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.7.0...v1.8.0) (2022-04-01)
1262
-
1263
-
1264
- ### Features
1265
-
1266
- * **calling-sdk:** fixing more path issues in imports ([#32](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/32)) ([40eda08](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/40eda083d7e258d52a48fcfbeea1f53db9c8fd8f))
1267
-
1268
- # [1.7.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.6.1...v1.7.0) (2022-03-31)
1269
-
1270
-
1271
- ### Features
1272
-
1273
- * **calling-sdk:** fix import of types in registration and sdkconnector ([#31](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/31)) ([0cfbcf0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0cfbcf0b0d29f64157ad23318ad58910fe5164da))
1274
-
1275
- ## [1.6.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.6.0...v1.6.1) (2022-03-30)
1276
-
1277
-
1278
- ### Bug Fixes
1279
-
1280
- * **rollup:** fix rollup config ([1a50959](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1a50959102d066f4a5ee39124a26293d8a3a95d8))
1281
-
1282
- # [1.6.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.5.0...v1.6.0) (2022-03-30)
1283
-
1284
-
1285
- ### Features
1286
-
1287
- * **calling-sdk:** fix samples to include registration after media changes ([#28](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/28)) ([316d81f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/316d81f768e5cdd0c61a6255ce10a94a4514b9f5))
1288
-
1289
- # [1.5.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.4.0...v1.5.0) (2022-03-29)
1290
-
1291
-
1292
- ### Bug Fixes
1293
-
1294
- * **test:** fix tests and add jest ([34623f5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/34623f5e4d419be3c910b732faf08bec706a36b7))
1295
- * **test:** fix tests and add jest ([9d16fdb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9d16fdbeb0736fe6c171d9d1b7c3619c1a9a1b1d))
1296
- * **test:** fix tests and add jest ([fd10d8a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fd10d8a970874a5763e4ebcbce6c24403528ae9e))
1297
- * **test:** fix tests and add jest ([cf01cc4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/cf01cc4e7f7a2bffc20bea5461d9732871cf1a5e))
1298
- * **test:** fix tests and add jest ([44d8b65](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/44d8b657c5a294d89e2863193c53acc9b8186c86))
1299
-
1300
-
1301
- ### Features
1302
-
1303
- * **media:** samples media ([044c341](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/044c341943ccf2f79631d2925e110d072e2b879b))
1304
- * **sdp:** add media connection sdp to samples ([5598cda](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5598cda3fd9cd144f5f5c6fb99145b40df84150b))
1305
-
1306
- # [1.4.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.3.0...v1.4.0) (2022-03-29)
1307
-
1308
-
1309
- ### Features
1310
-
1311
- * 313675 Investigate state machine implementation for calls ([7a80c48](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7a80c4861edbfd11d703ef3573be1d913c528552))
1312
- * add media state machine and add in-dialog call object update handling ([17c58cb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/17c58cb3e86fe8a42816c502eba0f78fea86ecca))
1313
- * add media_offer_request ([9d1c45e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9d1c45e86a11dc4d900fb069a02fcf312d9e51c1))
1314
- * added usage ([e035986](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e0359862d641f1b7bfbde69f00326f6f8a10e12c))
1315
- * addressed review comments ([ed412e9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ed412e93869bf29aa20653b2ff5c51020d8e6308))
1316
- * minor fix in merge conflict ([522c129](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/522c1299c7d7453e16330ed3eea906d257f1f4e0))
1317
- * naming correction ([e77d39b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e77d39beb993ccaa657c640f65de6f95f30867f6))
1318
- * naming correction 2 ([1e6cbaf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1e6cbafeea25897b5cb3ffcbbbf0fb33f546d799))
1319
- * remove call_proceeding ([85c7eb5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/85c7eb56cb68ee239eb163369de2fe33c4d8f818))
1320
- * resolve merge conflict ([c3274b2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c3274b248e4100dbc835ea38e26df6e93b744cbf))
1321
- * review comments 2 ([0886ca5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0886ca5877d14fdf402dabdf659afbc3d585408c))
1322
-
1323
- # [1.3.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.2.0...v1.3.0) (2022-03-24)
1324
-
1325
-
1326
- ### Features
1327
-
1328
- * **calling-sdk:** registration and mobius server discovery ([#25](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/25)) ([c346686](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c3466867339cc7a2b38fafa4d816f9ebc0e6267f))
1329
-
1330
- # [1.2.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.1.0...v1.2.0) (2022-03-17)
1331
-
1332
-
1333
- ### Features
1334
-
1335
- * **docs:** add typedocs and code doc requirement ([a8b293d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a8b293d94d4ca66c4017d0c5230627e45d1acae3))
1336
- * **docs:** add typedocs and code doc requirement ([772f448](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/772f448a210e8de58ac63df7708a24782860a8b6))
1337
-
1338
- # [1.1.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.0.2...v1.1.0) (2022-03-16)
1339
-
1340
-
1341
- ### Bug Fixes
1342
-
1343
- * **pipeline:** add static analysis to pipeline ([5e98cc6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5e98cc6cfb3dd6201466e52e6100aa91073a0b67))
1344
- * **pipeline:** add static analysis to pipeline ([db6b693](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/db6b693847c2240188695f8daf7385ad137e762c))
1345
- * **pipeline:** add static analysis to pipeline ([2f1a206](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2f1a2060ef7204e30984089f9d34e56e87037974))
1346
- * **pipeline:** add static analysis to pipeline ([0c36cdd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0c36cddbf6523576ecedf3b9a7188a31fc590bdd))
1347
- * **pipeline:** add static analysis to pipeline ([591108c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/591108c409395d444d89b0699d5abbb10be2f268))
1348
-
1349
-
1350
- ### Features
1351
-
1352
- * **prettier:** add prettier and lint fixes ([75d93c3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/75d93c3af3fd2b89aeee63804b3e026292552e81))
1353
- * **spelling:** add spellchecker ([9d875f7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9d875f742035e7c6e8801d13fcea6068f384e8a9))
1354
-
1355
- ## [1.0.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.0.1...v1.0.2) (2022-03-08)
1356
-
1357
-
1358
- ### Bug Fixes
1359
-
1360
- * add options to run samples on intergation env ([#19](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/19)) ([d041534](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d0415341ced8b9ece040f73a7c97ce59ebaacaa8))
1361
-
1362
- ## [1.0.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.0.0...v1.0.1) (2022-03-07)
1363
-
1364
-
1365
- ### Bug Fixes
1366
-
1367
- * **release:** fix ci release try2 ([d6f2ac2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d6f2ac249b514e4c847dea45f49e15ce9af43b52))
1368
-
1369
- # 1.0.0 (2022-03-07)
1370
-
1371
-
1372
- ### Bug Fixes
1373
-
1374
- * **build:** added rollup for bundling ([9469257](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/94692577700730f943f2b64b9026e9fac02ad5b1))
1375
- * **events:** add internal mercury events ([37fed5f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/37fed5f286316ccac6df5dee206e700192a84023))
1376
- * **events:** add internal mercury events ([8c50bb7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8c50bb7788d357bd5dfde9cfaae8c6a952e3f404))
1377
- * **pipeline:** remove github token ([9df985c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9df985c3c1b87bf419ce1aa5caad63f3ee5f5096))
1378
- * **publish:** try fixing github token again ([ac87d3d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ac87d3d2e6511fcf095cca85141f8b3484c85044))
1379
-
1380
-
1381
- ### Features
1382
-
1383
- * **connector:** set up basic stubs for connector and prove out ([fb32e0d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fb32e0d60d6f576cfb7bac0cd42711ce94ea5ed8))
1384
- * **connector:** set up basic stubs for connector and prove out ([06f2c58](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/06f2c58283568d4ee59acba1ec336a6ee4a48c79))
1385
- * **events:** add eventing infra ([bede96c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bede96cc85f112400a9b248235eefab2ee3dfbb7))
1386
- * **events:** fix log ([7065093](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7065093d4c39ef23d764a2895297568549f2b151))
1387
- * **events:** fix logging ([00f331d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/00f331d38a28f6ee135a1eb63cb774b4ee4c749b))
1388
- * **events:** fix logging ([a704af8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a704af87404e76474a89e5621968822bf62fcdac))
1389
- * **example:** test example connection ([efa2fa9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/efa2fa97d92d12e5c64184b8a0485e51a25ea976))
1390
- * **husky:** checks ([0cf8660](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0cf866031fc3ea791a0b2bd4256a538f982ae5e1))
1391
- * **lint:** eslint ([b9138fe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b9138fe04422d5547ba20966e16ff22990b37126))
1392
- * **pipeline:** publish, pipeline ([0d6c940](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0d6c940e6eabd45c108bff3f3e6324182975abe4))
1393
- * **pipeline:** publish, pipeline ([f4961a7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f4961a75f7312d53a12cc17f0e94cc2fd4427db7))
1394
- * **pipeline:** publish, pipeline ([eb7f97a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eb7f97a877fdb1cd3008af5884d81cb6bfe0f43c))
1395
- * **pipeline:** publish, pipeline ([7d14053](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7d1405374855eead32be951bd0fad764148def67))
1396
- * **pipeline:** publish, pipeline ([890d2cc](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/890d2ccfa00ff9e93c5e6efcc71213e8c5276643))
1397
- * **pipeline:** publish, pipeline ([4cec578](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4cec578c04df31b5d1610cb9bbf03df786588556))
1398
- * **pipeline:** publish, pipeline ([f1afb62](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f1afb6284278bdf3570d5020e319b7565f723b9c))
1399
- * **pipeline:** publish, pipeline ([74e1e5c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/74e1e5cfe9549d5186198cbc7a565e5bacb18be2))
1400
- * **pipeline:** publish, pipeline ([8e9a009](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8e9a0090758099d3b3a17557e197a10588b8158c))
1401
- * **publish:** docs, misc publish pieces ([3a1c4f3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3a1c4f3df9642d8491542e5efaca44029d32511f))
1402
- * **publish:** setup npmrc to publish ([ac5c2ae](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ac5c2ae5ef5e99b3ac0de995b7a0296edb5bd472))
1403
- * **typescript:** typescript setup ([dbc8bbb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dbc8bbbeefdfb8e8cfb83b16729dff95a9076df3))
1
+ # [1.66.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.65.1...v1.66.0) (2023-05-09)
2
+
3
+
4
+ ### Features
5
+
6
+ * **calling-sdk:** defer connection restore with mobius on keepalive failure until call is cleared ([#233](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/233)) ([6a04829](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6a04829c45b8ea048abc54a5d37c42b7c92a4f40))
7
+
8
+ ## [1.65.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.65.0...v1.65.1) (2023-04-17)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **call:** enable localAudioTrack before dialing ([#232](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/232)) ([88c1909](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/88c1909705e413bf4b6d3adaadd103edc6f71b73))
14
+
15
+ # [1.65.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.64.1...v1.65.0) (2023-04-12)
16
+
17
+
18
+ ### Features
19
+
20
+ * adding intermediate events for RECONNECTING and RECONNECTED when keepalive is retried ([#231](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/231)) ([24ffa25](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/24ffa2511d079e309e74d564276fa510a9a72f2d))
21
+
22
+ ## [1.64.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.64.0...v1.64.1) (2023-04-05)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **calling-sdk:** fix for roap timeout due to out of order offer request received ([#229](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/229)) ([fa82acf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fa82acfb40e33dacaa6f8ae553b55b32fef0cbe3))
28
+
29
+ # [1.64.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.63.1...v1.64.0) (2023-03-30)
30
+
31
+
32
+ ### Features
33
+
34
+ * **metrics:** calling metrics in amplitude ([#228](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/228)) ([8b60bed](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8b60bedf85d2790832d86725624c99ce5b0606d0))
35
+
36
+ ## [1.63.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.63.0...v1.63.1) (2023-03-24)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * **media:** update to internal-media-core for latest ts-sdp fix ([#227](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/227)) ([651dbdb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/651dbdb82bd6a33e075cba701fec4925c981dc00))
42
+
43
+ # [1.63.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.62.1...v1.63.0) (2023-03-24)
44
+
45
+
46
+ ### Features
47
+
48
+ * **disaster-recovery:** failback flow ([#223](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/223)) ([26ee104](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/26ee104ee3e4837c986188c1e6a84e1fee68d402))
49
+
50
+ ## [1.62.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.62.0...v1.62.1) (2023-03-16)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * **voicemail:** removed offset in voicemail ([#224](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/224)) ([4e9ae9c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4e9ae9c0bd6daa66e2f2248fb3866a6db13b10ef))
56
+
57
+ # [1.62.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.61.0...v1.62.0) (2023-03-14)
58
+
59
+
60
+ ### Features
61
+
62
+ * **contacts-sdk:** added get contacts api ([#219](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/219)) ([5288cb7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5288cb7a9c9d57ce1060195a01d090bb7ab9d709))
63
+
64
+ # [1.61.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.60.1...v1.61.0) (2023-02-28)
65
+
66
+
67
+ ### Features
68
+
69
+ * **call-settings:** call forward and voicemail setting support ([#221](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/221)) ([fd476c7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fd476c727eba3d7d7e27ba97e7ccfe1a1b293b61))
70
+
71
+ ## [1.60.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.60.0...v1.60.1) (2023-02-23)
72
+
73
+
74
+ ### Bug Fixes
75
+
76
+ * add userExternalId in CallingPartyInfo type for contact resolution ([#220](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/220)) ([d88d1ae](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d88d1aea28f200d2506c94a74865d258ceeb34a7))
77
+
78
+ # [1.60.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.59.0...v1.60.0) (2023-02-22)
79
+
80
+
81
+ ### Features
82
+
83
+ * **call-settings:** dnd and call waiting ([#217](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/217)) ([8fb06e2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8fb06e25ec3dad61593d4dd5e7c4fb18ed627dba))
84
+
85
+ # [1.59.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.58.2...v1.59.0) (2023-02-22)
86
+
87
+
88
+ ### Features
89
+
90
+ * **disaster-recovery:** failover flow ([8dca386](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8dca386b6a8ccec5711c17d86db174ac045f8381))
91
+
92
+ ## [1.58.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.58.1...v1.58.2) (2023-02-17)
93
+
94
+
95
+ ### Bug Fixes
96
+
97
+ * **voicemail:** fix pagination in samples page ([#218](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/218)) ([a622177](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a6221778ce71160675969bc6ada18c1cd12cd6af))
98
+
99
+ ## [1.58.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.58.0...v1.58.1) (2023-02-14)
100
+
101
+
102
+ ### Bug Fixes
103
+
104
+ * **call:** call.ts unit tests for coverage ([#214](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/214)) ([25bc095](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/25bc09570712cba226a64df878060838f791fff7))
105
+
106
+ # [1.58.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.57.0...v1.58.0) (2023-02-14)
107
+
108
+
109
+ ### Features
110
+
111
+ * **voicemail:** fetching voicemail transcript ([#215](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/215)) ([2752864](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2752864a465f0301337150d1c6804effeca0f058))
112
+
113
+ # [1.57.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.56.0...v1.57.0) (2023-02-07)
114
+
115
+
116
+ ### Features
117
+
118
+ * **voicemail:** contact resolution for voicemail sender ([#212](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/212)) ([8bf09af](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8bf09af8076ddbe0204cb6717b14517993bb9305))
119
+
120
+ # [1.56.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.55.0...v1.56.0) (2023-02-03)
121
+
122
+
123
+ ### Features
124
+
125
+ * **CallSettings:** created a hook for Call Settings ([#213](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/213)) ([9429010](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/94290108dc906726bf6342750be4bd5acf515cd0))
126
+
127
+ # [1.55.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.54.0...v1.55.0) (2023-02-01)
128
+
129
+
130
+ ### Features
131
+
132
+ * **voicemail:** voicemail pagination implementation ([#184](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/184)) ([efef47c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/efef47c161f6ae25b63f168086f54174a03f8d0c))
133
+
134
+ # [1.54.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.10...v1.54.0) (2023-01-30)
135
+
136
+
137
+ ### Features
138
+
139
+ * **contacts:** add hook for contacts client ([#211](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/211)) ([e21a29d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e21a29dabaa7f361a3799e1b72b6f87064abb79c))
140
+
141
+ ## [1.53.10](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.9...v1.53.10) (2023-01-17)
142
+
143
+
144
+ ### Bug Fixes
145
+
146
+ * **calling client:** fix unit tests and coverage ([#208](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/208)) ([3a49639](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3a49639da1f6c06bdd6df7fc75e12ef355e9d9e8))
147
+
148
+ ## [1.53.9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.8...v1.53.9) (2023-01-17)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * **calling-sdk:** added-export-for-transfer-type ([#210](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/210)) ([138160d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/138160d00621ce727fd593e84b44db691444bfd6))
154
+
155
+ ## [1.53.8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.7...v1.53.8) (2023-01-13)
156
+
157
+
158
+ ### Bug Fixes
159
+
160
+ * **call-history:** call history notifications ([#209](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/209)) ([f8367ed](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f8367ed5d738b31875b4fa3aedc0ff0ddc9dc0a5))
161
+
162
+ ## [1.53.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.6...v1.53.7) (2023-01-12)
163
+
164
+
165
+ ### Bug Fixes
166
+
167
+ * **code coverage:** Addition of code coverage plugins and checks ([#207](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/207)) ([1dfcf42](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1dfcf422c1e7559e89111d2fe36a3ff731aab97f))
168
+
169
+ ## [1.53.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.5...v1.53.6) (2023-01-10)
170
+
171
+
172
+ ### Bug Fixes
173
+
174
+ * **callmanager:** fix callManager UT to run independently ([#206](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/206)) ([e58e79f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e58e79f3ef879ae6997f41301363c1d14e79c3d0))
175
+
176
+ ## [1.53.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.4...v1.53.5) (2023-01-10)
177
+
178
+
179
+ ### Bug Fixes
180
+
181
+ * **transfer:** call transfer unit tests ([#202](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/202)) ([b92e5ba](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b92e5bac7cb2ffedf2fd43279bbe9ded7bef0ba6))
182
+
183
+ ## [1.53.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.3...v1.53.4) (2023-01-05)
184
+
185
+
186
+ ### Bug Fixes
187
+
188
+ * **voicemail:** ucm voicemail content response schema changes ([#204](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/204)) ([9318cf2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9318cf2c308f1d24d2d02233ecccb48b8a5d0509))
189
+
190
+ ## [1.53.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.2...v1.53.3) (2023-01-05)
191
+
192
+
193
+ ### Bug Fixes
194
+
195
+ * **calling-sdk:** fix multiple incoming call events generated ([#205](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/205)) ([7d1b054](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7d1b05421c4dbb3d24fdb54862cb5b79b0245bcd))
196
+
197
+ ## [1.53.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.1...v1.53.2) (2023-01-04)
198
+
199
+
200
+ ### Bug Fixes
201
+
202
+ * **calling-sdk:** race condition in call disconnect causing an exception ([#203](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/203)) ([4c332d3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4c332d3fb9abf5ebd7dc0840466ac24905b7d529))
203
+
204
+ ## [1.53.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.53.0...v1.53.1) (2022-12-21)
205
+
206
+
207
+ ### Bug Fixes
208
+
209
+ * **voicemail:** ucm voicemail list read key should accept empty object ([#201](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/201)) ([2919627](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2919627c0329a9275fdb83cae9c78812d5fd9232))
210
+
211
+ # [1.53.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.52.1...v1.53.0) (2022-12-21)
212
+
213
+
214
+ ### Features
215
+
216
+ * **contact-center:** get call quality stats during the call ([#198](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/198)) ([68eddf6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/68eddf681dc6c29603b9dc34bdd61736eabf2b14))
217
+
218
+ ## [1.52.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.52.0...v1.52.1) (2022-12-20)
219
+
220
+
221
+ ### Bug Fixes
222
+
223
+ * ucm voicemail list update ([#199](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/199)) ([fecdac1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fecdac1d39124041e67a0781a0dbe27a248a366c))
224
+
225
+ # [1.52.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.51.2...v1.52.0) (2022-12-19)
226
+
227
+
228
+ ### Features
229
+
230
+ * add consult transfer and blind transfer support ([e2b0b19](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e2b0b199a7ef5f745f0cc71f71250ace6dcd61a6))
231
+ * **transfer:** added metric for transfer ([2ea377d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2ea377d114804e284f9593d3a747a2f4cac89db3))
232
+ * **transfer:** merge conflicts ([eaeffd3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eaeffd3d6796f5100031fd923b2802c4200df75d))
233
+ * **transfer:** merge conflicts ([56e026d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/56e026dba0c7f484f89d7eb387918f93d57ef961))
234
+ * **transfer:** minor comments ([2f678c4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2f678c4dc3580a3f6c36715316248218902ab4c0))
235
+ * **transfer:** review comments ([8852b5f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8852b5fff33786ba3aa97e8938676b822aaa7dc0))
236
+ * **transfer:** review comments ([361b610](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/361b61051cd6b3dc4c622eb23e65d9f50c8e5ae9))
237
+ * **transfer:** transfer review comments ([5e36c9a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5e36c9a4edd9167c085976f40a03beab6a402357))
238
+
239
+ ## [1.51.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.51.1...v1.51.2) (2022-12-16)
240
+
241
+
242
+ ### Bug Fixes
243
+
244
+ * **calling-sdk:** minor fix after web-calling-sdk pwd change ([#195](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/195)) ([00e0103](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/00e0103db7fe6e51ce74a86b892a25298e496bcc))
245
+
246
+ ## [1.51.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.51.0...v1.51.1) (2022-12-16)
247
+
248
+
249
+ ### Bug Fixes
250
+
251
+ * **calling-sdk:** remove json stringify ([#194](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/194)) ([4dd7a6a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4dd7a6a585bddeb4419350751601e7d3ca75beaa))
252
+
253
+ # [1.51.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.50.0...v1.51.0) (2022-12-15)
254
+
255
+
256
+ ### Bug Fixes
257
+
258
+ * build after merge with main ([743b013](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/743b01336adcd276d87c760c02df8eea8afc0043))
259
+
260
+
261
+ ### Features
262
+
263
+ * **contact-center:** reporting ([ce87da1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ce87da1e53b21b1f801ec0e460a535da87c0d170))
264
+
265
+ # [1.50.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.49.0...v1.50.0) (2022-12-15)
266
+
267
+
268
+ ### Bug Fixes
269
+
270
+ * **commitlint:** fix commitlint body length and emitted object ([#192](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/192)) ([218020d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/218020d57438729e826bca30ea4f39cca578f563))
271
+ * remove spaces from dialled number while making call ([0c4faf6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0c4faf600a0bf835cfda7d65bb3a740e94c4dcf1))
272
+ * remove spaces from dialled number while making call ([c7fd8d8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c7fd8d85245cc37bc005ecac37f4efda6f13dbea))
273
+
274
+
275
+ ### Features
276
+
277
+ * **contact-center:** call handling changes ([35a8619](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/35a8619f4dfe85f16a914035119890e629fd58c4))
278
+
279
+ # [1.49.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.5...v1.49.0) (2022-12-14)
280
+
281
+
282
+ ### Features
283
+
284
+ * **calling-sdk:** release commitlint issue and contactcenter reg ([#188](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/188)) ([4cf374e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4cf374e966743dd4835f4412ace59b0e9ada5423))
285
+ * **contact-center:** registration flow ([#187](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/187)) ([d5d3be4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d5d3be4469c2e6bb53c843a62ad9bfc06c20ef26))
286
+
287
+ ## [1.48.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.4...v1.48.5) (2022-11-30)
288
+
289
+
290
+ ### Bug Fixes
291
+
292
+ * adding $ in ucm vm response object ([c7872a8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c7872a8d4ae85ff8daef273f7f92d547ca409d39))
293
+ * code rebase and updating version ([f11d469](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f11d46927920563fe9cddfd52321527570eb037c))
294
+
295
+ ## [1.48.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.3...v1.48.4) (2022-11-17)
296
+
297
+
298
+ ### Bug Fixes
299
+
300
+ * change put to post for hold/resume requests ([#180](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/180)) ([ddd7d47](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ddd7d4743fc6386c843a387e13efc6fda7c15151))
301
+
302
+ ## [1.48.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.2...v1.48.3) (2022-11-15)
303
+
304
+
305
+ ### Bug Fixes
306
+
307
+ * **calling-sdk:** new constants used in chrome v107 for statsreport ([#181](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/181)) ([15c1468](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/15c14684a65dbcd45f268a946c52a316b6127897))
308
+
309
+ ## [1.48.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.1...v1.48.2) (2022-11-11)
310
+
311
+
312
+ ### Bug Fixes
313
+
314
+ * **calling-sdk:** check jenkins file changes ([#176](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/176)) ([2f46a42](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2f46a42148389ba069c44c59f000299bfe32a0b9))
315
+ * **calling-sdk:** troubleshooting jenkins file ([#177](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/177)) ([448f21c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/448f21c49b71be856ee8b37d0c21c6b2b5c6c841))
316
+ * **calling-sdk:** update jenkins and semantic-release to use main ([#178](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/178)) ([5a1df4e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5a1df4e6708e3cc2e88a7f16c6fc6dcbbc42ae04))
317
+ * **description:** minor changes to test main branch ([#175](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/175)) ([263c673](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/263c6732dd91a15e1e1283416fb7b511a2b12c09))
318
+
319
+ ## [1.48.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.48.0...v1.48.1) (2022-11-10)
320
+
321
+
322
+ ### Bug Fixes
323
+
324
+ * add discovery support through ip address ([#174](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/174)) ([5d8ecd9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5d8ecd9e0718d535a2d7bfcf437735e3d39b2acd))
325
+
326
+ # [1.48.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.47.0...v1.48.0) (2022-11-08)
327
+
328
+
329
+ ### Features
330
+
331
+ * **voicemail:** ucm backend connector ([#165](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/165)) ([09a9e2a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/09a9e2a4809b09ca8ed17159e4297fb882bd0b61))
332
+
333
+ # [1.47.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.10...v1.47.0) (2022-11-02)
334
+
335
+
336
+ ### Features
337
+
338
+ * add support for sdk config to add region and country details ([#170](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/170)) ([f1f2985](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f1f29852304e1fc7a208b05f1e5e29498dd8f337))
339
+
340
+ ## [1.46.10](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.9...v1.46.10) (2022-10-21)
341
+
342
+
343
+ ### Bug Fixes
344
+
345
+ * **calling-sdk:** special char stripped from final call string ([#169](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/169)) ([7aa602a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7aa602a953b60e668d761446d43308522c1fe44b))
346
+
347
+ ## [1.46.9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.8...v1.46.9) (2022-10-19)
348
+
349
+
350
+ ### Bug Fixes
351
+
352
+ * updated dummy stats with zeroed values ([#167](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/167)) ([2ca1a7a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2ca1a7a110e9947ad9ba92e777e6c3be54de73a2))
353
+
354
+ ## [1.46.8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.7...v1.46.8) (2022-10-18)
355
+
356
+
357
+ ### Bug Fixes
358
+
359
+ * trigger sleep handling if there is no active call on the browser ([#164](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/164)) ([59a1d3a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/59a1d3a4c94cc191176238f068945c82ad6513f2))
360
+
361
+ ## [1.46.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.6...v1.46.7) (2022-10-17)
362
+
363
+
364
+ ### Bug Fixes
365
+
366
+ * **errormessage:** minor ui message change when client is unregistered ([#166](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/166)) ([e549bfe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e549bfe0c893aef62ffb4e9e3811125c60f250a0))
367
+
368
+ ## [1.46.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.5...v1.46.6) (2022-10-13)
369
+
370
+
371
+ ### Bug Fixes
372
+
373
+ * add logic to clone webex object per test file ([#163](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/163)) ([2230255](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2230255a8de328baf521c1a24fa739d47dea03d0))
374
+
375
+ ## [1.46.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.4...v1.46.5) (2022-10-12)
376
+
377
+
378
+ ### Bug Fixes
379
+
380
+ * voicemail sorting unittests addition with more test data, call-86293 ([f7e4596](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f7e4596fa5e08c6b56f715052a75ef8cf1e70f0f))
381
+
382
+ ## [1.46.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.3...v1.46.4) (2022-10-11)
383
+
384
+
385
+ ### Bug Fixes
386
+
387
+ * modified strings into constants CALL-77125 ([79d5b9e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/79d5b9e6ecc3a7df084ac8bfff5f0434c03f8971))
388
+ * removing await from the init ([e269403](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e269403ba31f87e1b81505a8f3d5f0071e0bb085))
389
+ * resolved the conflicts ([4d1da52](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4d1da526ee40c06ba577c14c96dfef8338edbd36))
390
+ * review comments addressed CALL-77125 ([95503a9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/95503a9f612620dcb80f7b02f884d8c57188c042))
391
+ * sorting and unittest implementation CALL-77125 ([65fc737](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/65fc737a80b68b2e896846bee7ef58467f448140))
392
+ * syncing with the master ([8055708](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8055708958da83f5a396d06164755c82f03a80cd))
393
+ * updated status message string as constants ([be6d5fe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/be6d5fe7fbc8515902f50c0abce5749716ff4cc7))
394
+ * voicemail test mock body changes CALL-77125 ([d02d9e1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d02d9e158de061dff8c5b19b00a3eedb52517e71))
395
+
396
+ ## [1.46.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.2...v1.46.3) (2022-10-10)
397
+
398
+
399
+ ### Bug Fixes
400
+
401
+ * **byemetrics:** catch exception while parsing metrics ([#161](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/161)) ([39e1b96](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/39e1b96a9750fa36c8b003f4df064ba791189910))
402
+
403
+ ## [1.46.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.1...v1.46.2) (2022-10-10)
404
+
405
+
406
+ ### Bug Fixes
407
+
408
+ * **publish:** minor fix to retrigger publish ([#160](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/160)) ([b209c3e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b209c3ef52054d1fb325a239863a6a8628e63993))
409
+
410
+ ## [1.46.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.46.0...v1.46.1) (2022-10-10)
411
+
412
+
413
+ ### Bug Fixes
414
+
415
+ * **regex:** regex misses * ([#159](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/159)) ([37ae051](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/37ae051a4c3e24008e0220084a4cbb10792156f1))
416
+
417
+ # [1.46.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.45.3...v1.46.0) (2022-10-06)
418
+
419
+
420
+ ### Features
421
+
422
+ * **call-metrics:** add call metrics to calling-sdk ([#158](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/158)) ([9959fbe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9959fbec0fbf7d1bb41c8b9deb0022ea9ea450d8))
423
+
424
+ ## [1.45.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.45.2...v1.45.3) (2022-10-04)
425
+
426
+
427
+ ### Bug Fixes
428
+
429
+ * added exception messages for Broadworks voicemail CALL-84282 ([4350b98](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4350b986f4a3cccd9e60a1bef0859bdec7d6910f))
430
+ * added unit testcase for voicemail broadworks ([8b8983d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8b8983d72dabe486c32ce331daa06eb7b49a06f8))
431
+ * addressed review comments related to exception and comments description CALL-84282 ([49d1085](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/49d10859cead796a914727858ff4cacc70592f45))
432
+ * exception handled for userid undefined case CALL-84282 ([006976a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/006976a3ee8d0c0a76c0b2dcac59babed77c1fdd))
433
+ * exporting sort and sortby with common files CALL-84282 ([e65a8fc](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e65a8fc9202cb242f97d6b8a2ee61c7116352a7b))
434
+ * interface and class restructure for Voicemail SDK CALL-84282 ([79e8ebb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/79e8ebb11039713449b78c5ce6ef9f53ad69595a))
435
+ * lint errors fixed CALL-84282 ([3eb606a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3eb606aa8f9fd7ad997f6f7358bc26b0d67253e0))
436
+ * merging the master ([8316575](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8316575607c26c8b6a01318a8e7c4dfe681c035b))
437
+ * removed environment dependency from the sample js file CALL-84282 ([96ab7a9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/96ab7a953f9994b641b201cefe7203349a0d69ef))
438
+ * removed file structure details from callhistory CALL-84282 ([2260c8b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2260c8b27d27bc415f5a35ae68789bc9e0c2c506))
439
+ * removed the unwanted code CALL-84282 ([bd78e20](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bd78e203a2bcc555a4eef7a205a71c437ecfb461))
440
+ * removing test files from the PR CALL-84282 ([e2798b4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e2798b419e9c552b73833f67be85fd0126ad0925))
441
+ * review comments addressed CALL-84282 ([1708d75](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1708d759316663e880c9da0fc934917880bef882))
442
+ * version updated for calling client constants file CALL-84282 ([9801e17](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9801e170c6f5562d41f43dc44c6eef53f273e18c))
443
+ * voicemail SDK redesign exception handled for broadworks CALL-84282 ([83bafa9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/83bafa925abea4df749ffea8192b2bf8e7f0a714))
444
+ * voicemail SDK redesign for webex calling CALL-84282 ([9b7aaa9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9b7aaa9aaaca5c6f2bceb3864cffac42c6ae3e5c))
445
+ * voicemail sdk revamp ([ab1de60](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ab1de600f6bfeedfce9755789eb733317b007c33))
446
+ * voicmail rewamp of tn work CALL-84282 ([5514d6f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5514d6f7ae1d4585ff4030f5407987262b335355))
447
+
448
+ ## [1.45.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.45.1...v1.45.2) (2022-10-03)
449
+
450
+
451
+ ### Bug Fixes
452
+
453
+ * correct the improper typing in bye stats ([#156](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/156)) ([33478e1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/33478e151335919ad33a2584df1f9deebde2c506))
454
+
455
+ ## [1.45.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.45.0...v1.45.1) (2022-09-27)
456
+
457
+
458
+ ### Bug Fixes
459
+
460
+ * **calling-sdk:** emit unregister and connecting events ([#154](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/154)) ([45aaf1b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/45aaf1b62013f7fa2368f9baa5d46d90059cee08))
461
+
462
+ # [1.45.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.44.1...v1.45.0) (2022-09-26)
463
+
464
+
465
+ ### Features
466
+
467
+ * **metrics:** add registration metrics to the calling-sdk ([#152](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/152)) ([302a4ba](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/302a4bac5d5df6f394dcaa19796161d497b9a129))
468
+
469
+ ## [1.44.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.44.0...v1.44.1) (2022-09-26)
470
+
471
+
472
+ ### Bug Fixes
473
+
474
+ * **recent_session:** drop spark sessions when received from janus ([#153](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/153)) ([424b3aa](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/424b3aa8516be778c7987c291cb73d7aea5a7226))
475
+
476
+ # [1.44.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.43.0...v1.44.0) (2022-09-26)
477
+
478
+
479
+ ### Features
480
+
481
+ * add bye stats for call disconnection ([#151](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/151)) ([be80a6c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/be80a6c129b1bb83fff3ebeac0ff20b058a7246c))
482
+
483
+ # [1.43.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.12...v1.43.0) (2022-09-20)
484
+
485
+
486
+ ### Features
487
+
488
+ * add the support of delayed offer handling ([#149](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/149)) ([cd40194](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/cd40194d3e8a0ddc67f012fbefcb1438b4fb90c7))
489
+
490
+ ## [1.42.12](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.11...v1.42.12) (2022-09-19)
491
+
492
+
493
+ ### Bug Fixes
494
+
495
+ * **call-error:** fix call error object interface ([#150](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/150)) ([51b3d7d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/51b3d7d6c43678366dde747918cb825750685df2))
496
+
497
+ ## [1.42.11](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.10...v1.42.11) (2022-09-19)
498
+
499
+
500
+ ### Bug Fixes
501
+
502
+ * added index.min.js call-79972 ([6cd3dd5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6cd3dd51169c536df9b9396036fd63de59103053))
503
+ * addressed review comment call:79972 ([d1700b4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d1700b4bf69724c8259781075fc82973b36f27dc))
504
+ * addressed review comments call-79972 ([477dc63](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/477dc637787419f5e5c30e58c0c308260e46e515))
505
+ * addressed the review comments call:79972 ([bc2f0be](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc2f0be3dcb1e1b331d61d68a4485bdf22bbda54))
506
+ * reloved conflicts ([eee052f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eee052fb7eb38014f9d8eb7015ee6471a81ddfd0))
507
+ * updated the version ([722f0b4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/722f0b468d9275b3253044ccc5a8d9e93ea4dfd6))
508
+
509
+ ## [1.42.10](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.9...v1.42.10) (2022-09-16)
510
+
511
+
512
+ ### Bug Fixes
513
+
514
+ * **errormessage:** correct error messages approved by UX team ([#148](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/148)) ([60c77e6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/60c77e6d41b6955c420f7d0614d624a9d96041b4))
515
+
516
+ ## [1.42.9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.8...v1.42.9) (2022-09-15)
517
+
518
+
519
+ ### Bug Fixes
520
+
521
+ * handle supplementary services timeout scenarios ([#147](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/147)) ([6807b94](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6807b94978574a57a79f49c673bff211ca602346))
522
+
523
+ ## [1.42.8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.7...v1.42.8) (2022-09-13)
524
+
525
+
526
+ ### Bug Fixes
527
+
528
+ * discard events from the state machine ([#145](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/145)) ([5c5e94b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5c5e94b74a5b9e28dd7a9fdfe84d94cb1340d3af))
529
+
530
+ ## [1.42.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.6...v1.42.7) (2022-09-13)
531
+
532
+
533
+ ### Bug Fixes
534
+
535
+ * **calling-sdk:** minor change to trigger publish ([#144](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/144)) ([47a6c7a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/47a6c7af78ef686ab36b59928e109b9f6dc17e1a))
536
+
537
+ ## [1.42.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.5...v1.42.6) (2022-09-08)
538
+
539
+
540
+ ### Bug Fixes
541
+
542
+ * user forbidden error results in registration with primary and backup both ([#141](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/141)) ([ec6561b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ec6561bfb542b9ea3c0cdcc8f54c97d8275f6b9d))
543
+
544
+ ## [1.42.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.4...v1.42.5) (2022-09-07)
545
+
546
+
547
+ ### Bug Fixes
548
+
549
+ * handle re registration after sleep or network flaps ([#139](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/139)) ([081bd76](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/081bd7618b4288f05f26d7e6552923a49d5fde9f))
550
+
551
+ ## [1.42.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.3...v1.42.4) (2022-09-07)
552
+
553
+
554
+ ### Bug Fixes
555
+
556
+ * adding a log message if init is not invoked CALL-82975 ([4baf742](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4baf7428acaf9c95e9e0a3c6940dd87a3e524195))
557
+ * adding loggers and addressed review comments CALL-82975 ([5e1eb14](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5e1eb146bc07c8e9bcbeadc2f611de43e557b27d))
558
+ * addressed review comments CALL-82975 ([bc1b33a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc1b33a4213913d68b2cf54ebd6ed576691160d1))
559
+ * fixed the indentation issue CALL-82975 ([dd22765](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dd22765fb7578bacbee1ae318b3f80e856f56054))
560
+ * loginfo added and review comments addressed CALL-82975 ([9704469](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/97044699bdee60a2daf2843ecd05d8fdf5aced9a))
561
+ * removed commented line CALL-82975 ([c23bfc3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c23bfc39c445c9a27b8f98b9386111ec289da2aa))
562
+ * removed unwanted code CALL-82975 ([58059c3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/58059c3d1f77bd98ba37db641eb6643a745eb6ce))
563
+ * review comments addressed CALL-82975 ([d91270b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d91270b793a6a093a46466ce7096b92d2a4b7bd8))
564
+
565
+
566
+ ### Reverts
567
+
568
+ * Revert "fix: adding loggers and addressed review comments CALL-82975" ([20c78c4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/20c78c43595b66757b2f278ba40764411bd63013))
569
+
570
+ ## [1.42.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.2...v1.42.3) (2022-09-05)
571
+
572
+
573
+ ### Bug Fixes
574
+
575
+ * add coverage and getter for log level ([c1a1935](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c1a193591c4e52ce0958f6988535c6d693c1f19f))
576
+ * add coverage and getter for log level ([dcba53f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dcba53f8b670948c10d93bdff2961e1fe5eb8ef0))
577
+
578
+ ## [1.42.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.1...v1.42.2) (2022-09-05)
579
+
580
+
581
+ ### Bug Fixes
582
+
583
+ * **calling-sdk:** Do not keep all dependencies at bleeding edge. Fix all versions of dependencies. ([#138](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/138)) ([57b8874](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/57b88748fb8491b5ee2b52df01773e66f856fa49))
584
+
585
+ ## [1.42.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.42.0...v1.42.1) (2022-09-01)
586
+
587
+
588
+ ### Bug Fixes
589
+
590
+ * changing the init void to promise type ([e3b5bb9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e3b5bb94114913dff4584933ba23e4aa761d71fa))
591
+ * changing the init void to promise type ([5ba2b12](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5ba2b123c009f5b5d47395f5fe296e6b7fd81426))
592
+
593
+ # [1.42.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.41.0...v1.42.0) (2022-09-01)
594
+
595
+
596
+ ### Features
597
+
598
+ * added public method init to the IVoicemail type ([d09041f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d09041ff07b260cc74f8d1d0c2058e788ff0827d))
599
+ * resolved merge conflicts ([d10134a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d10134a81d841f6130ae92f41f8ce1562b7652bc))
600
+
601
+ # [1.41.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.40.0...v1.41.0) (2022-09-01)
602
+
603
+
604
+ ### Features
605
+
606
+ * add custom logger for calling sdk ([98f55ea](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/98f55ea7a32113f41c3f216780631251d0fb9835))
607
+ * add custom logger for calling sdk ([b7c1259](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b7c1259daed17977eb32e8e30ef4787e71d304b3))
608
+ * add custom logger for calling sdk ([bf6d457](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bf6d4572e9166b216824890b0b7508347790861e))
609
+ * add custom logger for calling sdk ([532a308](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/532a308f02477580bb06ecc31c6a9eb6f891bdee))
610
+ * add custom logger for calling sdk ([1c0919d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1c0919dfc785d31acf53b8be8c2e1dd90aaf6917))
611
+
612
+ # [1.40.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.4...v1.40.0) (2022-08-30)
613
+
614
+
615
+ ### Features
616
+
617
+ * added code changes for voicemail methods ([a6ded5b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a6ded5b288f0e03f904221008650268c1da81dff))
618
+ * added code for enviornment based webexapi ([22e1401](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/22e140137eef0bce4c6f03d80de96768fc0aa6f9))
619
+ * added code voicemail content, read, unread, delete ([a064570](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a064570d8b509cb6856d7884d207250308ce59c7))
620
+ * addressing review comments recieved ([6594e05](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6594e054e24f94900ed648210ce6931d40372d94))
621
+ * addressing review comments recieved in the PR and demo ([92edafe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/92edafe5b40ec2657edf11bd6dff9c37f46ad875))
622
+ * addressing review comments recieved in the PR and demo ([45e8889](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/45e8889393610479e807f81938f48674467714c2))
623
+ * resolving the conflict index js file ([e27145a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e27145a9df67c322d128e5464cf5cc40a1bc8973))
624
+ * review comments addressed ([38c59bf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/38c59bf1dd3112fe7957c2174bb1b4565641f9bd))
625
+ * review comments addressed ([112b295](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/112b295685e4da3ca7638bd188b9affde34fcba5))
626
+ * voicemail changes ([c0de10b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c0de10b48bf4dda545f541b0e984e5ac09ac462c))
627
+ * voiceMail content implementation changes ([d70368b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d70368b248a63fa7e94e8c936ae5c51e5c4a5b2c))
628
+ * voiceMail implementation changes ([e616637](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e616637e07e4b2a103920906cb524bdaf8cee171))
629
+ * voiceMail implementation changes ([6092af7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6092af77349c6fa2c984727d074d93d6c17fdde3))
630
+ * voiceMail sample output display on console changes ([d3b1b11](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d3b1b1133a76c2c811104c1d3e4864083b677e01))
631
+ * voicemail sdk changes to detect callingbackend ([0353c43](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0353c437e3fd0b4eb26469a849b28f2c9dcf0737))
632
+ * voicemail sdk implementation CALL-79067 ([6a0bf55](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6a0bf555923d37ad967445fb4a00e1eec23ed71f))
633
+ * voicemail sdk implementation CALL-79067 ([8f314af](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8f314afec73b84c8ab37e608e0e1f55db81398aa))
634
+ * voicemail sdk implementation CALL-79067 ([38bda66](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/38bda6654f0fdc44489e54a7a5595b2754b20cef))
635
+ * voicemail sdk minor changes ([45e9b65](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/45e9b659b9ac1e04ee923e7bfb5fa99b48591e91))
636
+ * voicemail sdk type definition changes ([a0d12e4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a0d12e4fdfb094a8d696cdf7d223c80f9a7a1f99))
637
+ * voiceMail status code implementation ([4c065e3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4c065e322417eb26f64517c5fc4514d78e232f69))
638
+ * voicmail sdk implementation ([a95b6b0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a95b6b05fc0dbdaa36e0f9f4d06be8d8f723e01f))
639
+ * voicmail sdk implementation changes ([9f8f7ee](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9f8f7ee36cfdfbeedf23caad3b7479bf0f8ab8d6))
640
+
641
+ ## [1.39.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.3...v1.39.4) (2022-08-26)
642
+
643
+
644
+ ### Bug Fixes
645
+
646
+ * rollback version injector plugin ([d2dd23f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d2dd23f3fbc9190890eb18488663893e0c71831f))
647
+
648
+ ## [1.39.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.2...v1.39.3) (2022-08-24)
649
+
650
+
651
+ ### Bug Fixes
652
+
653
+ * **versioning:** put in temporary fix via plugin ([#127](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/127)) ([815be31](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/815be314b00e4da1a091f387e870f9f32a7ab4a1))
654
+
655
+ ## [1.39.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.1...v1.39.2) (2022-08-23)
656
+
657
+
658
+ ### Bug Fixes
659
+
660
+ * choose same mobius server for calling and registration ([9c351b6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9c351b609610e834b61d077cfd452d6328dff7ee))
661
+ * choose same mobius server for calling and registration ([28899dd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/28899dd176b2903ecc1056f77943b86756f971d5))
662
+ * choose same mobius server for calling and registration ([9c6797b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9c6797b664374041dd3775088bd9731296a867f2))
663
+ * choose same mobius server for calling and registration ([d36d7b5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d36d7b5ad4733940714af20532f744855e354105))
664
+ * choose same mobius server for calling and registration ([7fb71af](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7fb71afa10429796c756a788625a54cb9df3bf17))
665
+ * choose same mobius server for calling and registration ([b729ca8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b729ca81f869845bf847caac188fc4f9d9859534))
666
+ * choose same mobius server for calling and registration ([2f2d388](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2f2d388aea535b26bc32f561c417d2cef97bd109))
667
+ * choose same mobius server for calling and registration ([1daaaef](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1daaaefeffdfd9ef9972194a1d57505fdc9b69ff))
668
+ * choose same mobius server for calling and registration ([d51d611](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d51d61193fbe8bdfcf41887312525efbca10901b))
669
+ * choose same mobius server for calling and registration ([ab715fd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ab715fd5062dc045cd79a5927c9b0a4e0e73c170))
670
+ * choose same mobius server for calling and registration ([038e4c4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/038e4c4c4649bcdea576a7bc6a6736284037fe02))
671
+ * choose same mobius server for calling and registration ([8aaa1da](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8aaa1daa4c53b57b59e28d85d4c500af0bde347f))
672
+ * choose same mobius server for calling and registration ([38c333b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/38c333bdf2861c1661b1e1b2ffda65a89e76b68e))
673
+
674
+ ## [1.39.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.39.0...v1.39.1) (2022-08-18)
675
+
676
+
677
+ ### Bug Fixes
678
+
679
+ * **calling-sdk:** use clientRegion instead of region code for mobius discovery ([#118](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/118)) ([76ca65e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/76ca65eb543bcda9e5940db28e7c0fd2919b049c))
680
+
681
+ # [1.39.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.9...v1.39.0) (2022-08-18)
682
+
683
+
684
+ ### Features
685
+
686
+ * send sdk version in requests ([1eeccbd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1eeccbd8f496dc4b05e1c711c116ad34e622a293))
687
+
688
+ ## [1.38.9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.8...v1.38.9) (2022-08-17)
689
+
690
+
691
+ ### Bug Fixes
692
+
693
+ * **calling-sdk:** export disposition and other call record types ([#117](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/117)) ([57240b1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/57240b1d8f156f82627e183cf9a69082ce1ac3d3))
694
+
695
+ ## [1.38.8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.7...v1.38.8) (2022-08-16)
696
+
697
+
698
+ ### Bug Fixes
699
+
700
+ * **calling-sdk:** links is not an array ([#116](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/116)) ([82b3be2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/82b3be22de420a54fa35f0b8fd660e2dc63dd52c))
701
+
702
+ ## [1.38.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.6...v1.38.7) (2022-08-16)
703
+
704
+
705
+ ### Bug Fixes
706
+
707
+ * handle cors case when either region info or region based mobius url query fails ([8c1a0b3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8c1a0b30b4d88454c1b3fca728ffb2ed5727eb4a))
708
+ * handle cors case when either region info or region based mobius url query fails ([ab6a237](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ab6a237eea91d456deb6ca786abacab2f638763c))
709
+
710
+ ## [1.38.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.5...v1.38.6) (2022-08-16)
711
+
712
+
713
+ ### Bug Fixes
714
+
715
+ * **calling-sdk:** fix types and ut for call session event ([#114](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/114)) ([b02555d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b02555d22b4ff3e8fa970a9dc77648baa39c2586))
716
+
717
+ ## [1.38.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.4...v1.38.5) (2022-08-15)
718
+
719
+
720
+ ### Bug Fixes
721
+
722
+ * add support of multiple mobius instances ([#113](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/113)) ([8737497](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8737497df0464decdb5f5bfdcdf9a9af0e9fe728))
723
+
724
+ ## [1.38.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.3...v1.38.4) (2022-08-10)
725
+
726
+
727
+ ### Bug Fixes
728
+
729
+ * handle early media case ([7eef795](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7eef7956c6ee50b6b608e97f7c1bc592ed33d9d8))
730
+
731
+ ## [1.38.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.2...v1.38.3) (2022-08-10)
732
+
733
+
734
+ ### Bug Fixes
735
+
736
+ * **calling-sdk:** fix regex to keep the leading + ([#111](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/111)) ([d15416a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d15416a51a32adc72680fa28dcc3b1c5656675a4))
737
+
738
+ ## [1.38.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.1...v1.38.2) (2022-08-09)
739
+
740
+
741
+ ### Bug Fixes
742
+
743
+ * send sig_alerting instead of sig_progress ([faa2ca4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/faa2ca45f8f8b51a32bb9ba43034a7159023b13e))
744
+
745
+ ## [1.38.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.38.0...v1.38.1) (2022-08-09)
746
+
747
+
748
+ ### Bug Fixes
749
+
750
+ * **calling-sdk:** add error event for call object ([911a079](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/911a079483df35534d6285058f4839861e80a555))
751
+
752
+ # [1.38.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.37.1...v1.38.0) (2022-08-05)
753
+
754
+
755
+ ### Features
756
+
757
+ * callhistory sdk type and unit test review comments addressed call-76176 ([4a0235b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4a0235bf8ee1dd8b503b6959245719cc1c0b1a61))
758
+ * callhistory sdk type related review comments addressed call-76176 ([0663dd6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0663dd62be00f113d16109bd53e9a41294eb8db4))
759
+ * callhistory sdk unit test and response object implementation call-76176 ([742571e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/742571ea6fba484137f7797feeaed8a1b8162f69))
760
+ * callhistory sdk unit test implementation call-76176 ([47ba83d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/47ba83d41b6e4d33f121f4a468a062b0d467648d))
761
+ * callhistory sdk unit test review comments addressed call-76176 ([2492781](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2492781dfe7d0fcbe870596a3d7def0e20ab225a))
762
+ * callhistory sdk unit test review comments addressed call-76176 ([237c9fa](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/237c9fa34cd914b5ce9ae34bca95b2eba7d25022))
763
+ * callhistory sdk unit test review comments addressed call-76176 ([9f0526b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9f0526b9f3ddda2f125403eff0770a0355a7c594))
764
+ * callhistory sdk unit test review comments addressed call-76176 ([64cb14f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/64cb14fa1b456f25c9ebc432ad37d030e14ddef3))
765
+ * callhistory sdk unit test review comments addressed call-76176 ([a82c09c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a82c09c1e9d2e9960fcde99788032d0a49d1e92d))
766
+
767
+ ## [1.37.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.37.0...v1.37.1) (2022-08-05)
768
+
769
+
770
+ ### Bug Fixes
771
+
772
+ * add two stage emission for callerId updates ([0b70e61](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0b70e61429470fab30712bc101f8f4d7eb9daf56))
773
+ * add two stage emission for callerId updates ([c3d7f7d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c3d7f7d7a7b85a065ebcbf5e3d6e7997fb66fe1e))
774
+
775
+ # [1.37.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.36.0...v1.37.0) (2022-08-02)
776
+
777
+
778
+ ### Features
779
+
780
+ * add unit tests for call related errors ([c0ae3f0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c0ae3f060f0208b11419e9b1e0f45b0c1b253c05))
781
+ * add unit tests for call related errors ([deff708](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/deff70836e354d32ab91e99c2e2eb790b038f2b7))
782
+ * add unit tests for call related errors ([e1fbed9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e1fbed9064f1624157ec6f5e1d66b0bed58fbbf4))
783
+ * add unit tests for call related errors ([1c3a02e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1c3a02e73ad25d0ea9eb2d044d2a38c666dcb20b))
784
+ * add unit tests for call related errors ([20cb5cb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/20cb5cbb4923a5b4d47738a46202d304b363d726))
785
+
786
+ # [1.36.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.35.1...v1.36.0) (2022-08-02)
787
+
788
+
789
+ ### Features
790
+
791
+ * added default error code for callhistory sdk call-76176 ([947116a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/947116a738e1175f8d885827480508f75baf59ba))
792
+ * callhistory sdk implementation call-76176 ([7832c42](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7832c42106f43f6b34208c58eee6b1b9e8eb038e))
793
+ * minor change call-76176 ([a6e69bd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a6e69bd3eabbe524e8a667afda0965461de58559))
794
+ * review comments addressed for callhistory sdk call-76176 ([5c06867](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5c068676442a6e5bcb78606211336a7c9533f005))
795
+ * review comments addressed for callhistory sdk call-76176 ([3e69503](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3e69503a9c7b3faebd5e5ce7708c663b8ee616f6))
796
+ * review comments addressed for callhistory sdk event typecall-76176 ([149447f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/149447f943f159e6e78faa51a81ef99a671cc0df))
797
+
798
+ ## [1.35.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.35.0...v1.35.1) (2022-08-01)
799
+
800
+
801
+ ### Bug Fixes
802
+
803
+ * send roap_error to mobius ([#105](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/105)) ([5640aa8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5640aa827a480f77f82b6a2b88f68b1213e5b7c7))
804
+
805
+ # [1.35.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.34.0...v1.35.0) (2022-07-28)
806
+
807
+
808
+ ### Features
809
+
810
+ * **calling-sdk:** add codeowners file ([#103](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/103)) ([7f3ec94](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7f3ec94c0595f1bc3acf13d0301bb13800e5a61c))
811
+
812
+ # [1.34.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.4...v1.34.0) (2022-07-26)
813
+
814
+
815
+ ### Features
816
+
817
+ * define various entry points for different features ([1a27c0a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1a27c0a02ecc0b47dc542c60f96ce781e66b2722))
818
+
819
+ ## [1.33.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.3...v1.33.4) (2022-07-25)
820
+
821
+
822
+ ### Bug Fixes
823
+
824
+ * avoid waiting for remote to close channel ([d167524](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d1675242b3eabe3ec5969fcdd789912ac78bf416))
825
+ * avoid waiting for remote to close channel ([d1a6db4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d1a6db4ffd5412f9e64d933e295d69c95ba839d8))
826
+
827
+ ## [1.33.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.2...v1.33.3) (2022-07-25)
828
+
829
+
830
+ ### Bug Fixes
831
+
832
+ * **calling-sdk:** assumption in client region info. use default url ([#100](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/100)) ([2d54bfe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2d54bfea5c0381adc06fc9ecb86e701afbc9dbbc))
833
+
834
+ ## [1.33.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.1...v1.33.2) (2022-07-25)
835
+
836
+
837
+ ### Bug Fixes
838
+
839
+ * send id along with avatarId ([428171e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/428171e7eff95ae4cc72e85ae4b7fee3985d69a9))
840
+ * send id along with avatarId ([0ffaa55](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0ffaa550d96c7a79a9b1ff10932845672950b38e))
841
+ * send id along with avatarId ([dfa5c8f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dfa5c8f36f1d71ed530ae8164b2d865d98a0be17))
842
+
843
+ ## [1.33.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.33.0...v1.33.1) (2022-07-21)
844
+
845
+
846
+ ### Bug Fixes
847
+
848
+ * **calling-sdk:** keepalive tolerance and expose on, off methods to web client ([#97](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/97)) ([424f9c5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/424f9c529b6e711110ef0fb8b421e0a54c43a516))
849
+
850
+ # [1.33.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.32.2...v1.33.0) (2022-07-19)
851
+
852
+
853
+ ### Features
854
+
855
+ * add support for call related error handling ([c9d9e11](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c9d9e11af1697ea8aa36d8172ca1a2f61317935e))
856
+ * add support for call related error handling ([84abb91](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/84abb91760a5089f86be01cf437a47890be6485c))
857
+ * add support for call related error handling ([5f48b77](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5f48b774cf52387efb115c4e78883b82e7227e51))
858
+ * add support for call related error handling ([82ee72c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/82ee72c7fd2d5e072e626af4fc2343ae7bf29bc0))
859
+ * add support for call related error handling ([eaf81f3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eaf81f3c7372d88a4baaefe90187341a3bf6e844))
860
+ * add support for call related error handling ([f83ef60](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f83ef6025b788fc369f2335a4b1a8379e49bba2b))
861
+ * add support for call related error handling ([1e059e5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1e059e5cc053d70e9389cac1f203c52558f75de5))
862
+
863
+ ## [1.32.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.32.1...v1.32.2) (2022-07-18)
864
+
865
+
866
+ ### Bug Fixes
867
+
868
+ * initialize statemachine only once ([f2dcd9d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f2dcd9d404a67bf174885ac2c6742b54bc289ecf))
869
+ * initialize statemachine only once ([ff7a39a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ff7a39a597d93316b028998e4426c272f82a67fc))
870
+ * initialize statemachine only once ([3f3105f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3f3105f6c3293b057c461ef271988299319df68a))
871
+
872
+ ## [1.32.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.32.0...v1.32.1) (2022-07-13)
873
+
874
+
875
+ ### Bug Fixes
876
+
877
+ * **calling-sdk:** use fetch for delete device, bypass js-sdk to override cisco-device-url ([#94](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/94)) ([5139158](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5139158c8ec45bfed90d178eceb26d47d01e19f4))
878
+
879
+ # [1.32.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.31.2...v1.32.0) (2022-07-13)
880
+
881
+
882
+ ### Features
883
+
884
+ * add support for session refresh ([019b0a7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/019b0a755c267174212cec190caffde25b099f4b))
885
+ * add support for session refresh ([243c6a8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/243c6a830d40769d1a507fd4649571d2918fc3ab))
886
+ * add support for session refresh ([2e85095](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2e85095dbf5dfffd01a0d73c720da54a82ee1847))
887
+ * add support for session refresh ([5e18dbc](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5e18dbc221da27071fbff48d89d742aea44c0267))
888
+ * add support for session refresh ([8bb7b86](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8bb7b86dd6c2e7aac974bccb347f236693126511))
889
+
890
+ ## [1.31.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.31.1...v1.31.2) (2022-07-11)
891
+
892
+
893
+ ### Bug Fixes
894
+
895
+ * callerid update fails for production users ([6a23c75](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6a23c75f7aebcb90e1f3aeb54b0aba4904ec1da2))
896
+ * callerid update fails for production users ([fce2823](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fce28235de13b317b8d19d8573e72660454e5787))
897
+ * callerid update fails for production users ([0ec1f9d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0ec1f9df834b01313cf54956d321d96373bb757a))
898
+ * callerid update fails for production users ([3527d3d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3527d3df4e1d36024211c0927e954ac3157b4dd4))
899
+
900
+ ## [1.31.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.31.0...v1.31.1) (2022-07-08)
901
+
902
+
903
+ ### Bug Fixes
904
+
905
+ * **calling-sdk:** duplicate cisco-device-url fields in requests and incorrect url for 403 ([#86](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/86)) ([c227a8e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c227a8ec38f370ba62611ae53792fb43357d2023))
906
+
907
+ # [1.31.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.7...v1.31.0) (2022-07-07)
908
+
909
+
910
+ ### Features
911
+
912
+ * add support for dtmf ([cf4f80e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/cf4f80ea3f7a08588315adfb73e5cf44009bc508))
913
+ * add support for dtmf ([81f1d56](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/81f1d5664d44f28cb21b25d017a719ac88b41bf9))
914
+ * add support for dtmf ([c97d039](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c97d039cbe3d8b3154681b4b194d7f08f12d8041))
915
+
916
+ ## [1.30.7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.6...v1.30.7) (2022-06-24)
917
+
918
+
919
+ ### Bug Fixes
920
+
921
+ * **calling-sdk:** cleanup file fix permission ([#83](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/83)) ([de6ccd9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/de6ccd92bad64a517950ff16075700157efa878f))
922
+
923
+ ## [1.30.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.5...v1.30.6) (2022-06-24)
924
+
925
+
926
+ ### Bug Fixes
927
+
928
+ * **calling-sdk:** pipeline fix cleanup echo ([#82](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/82)) ([03087b2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/03087b27a7f488f5e5a0ad1ddc4e88945a7eda9f))
929
+
930
+ ## [1.30.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.4...v1.30.5) (2022-06-24)
931
+
932
+
933
+ ### Bug Fixes
934
+
935
+ * **calling-sdk:** pipeline fix jenkinsfile ([#81](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/81)) ([ff981ef](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ff981efb082e75762e2bf696564334de133bde4a))
936
+
937
+ ## [1.30.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.3...v1.30.4) (2022-06-24)
938
+
939
+
940
+ ### Bug Fixes
941
+
942
+ * **calling-sdk:** fix pipeline cleanup script ([#80](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/80)) ([8cb8bb0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8cb8bb007d0688a808ed4a111e786676cf052a4c))
943
+
944
+ ## [1.30.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.2...v1.30.3) (2022-06-24)
945
+
946
+
947
+ ### Bug Fixes
948
+
949
+ * **calling-sdk:** pipeline failure test after credential changes ([#79](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/79)) ([1dae3d9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1dae3d9eac2c183ec788c0e76a5bd786bb3820fb))
950
+
951
+ ## [1.30.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.1...v1.30.2) (2022-06-22)
952
+
953
+
954
+ ### Bug Fixes
955
+
956
+ * **calling-sdk:** minor change for pipeline failure ([#78](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/78)) ([7e5d08a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7e5d08a25ee55617422e248be51813b3cb48aab3))
957
+
958
+ ## [1.30.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.30.0...v1.30.1) (2022-06-21)
959
+
960
+
961
+ ### Bug Fixes
962
+
963
+ * **calling-sdk:** minor change for pipeline failure retry ([#77](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/77)) ([994f399](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/994f399464c7580f63f543e237a3527e0ad3f49b))
964
+
965
+ # [1.30.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.29.1...v1.30.0) (2022-06-20)
966
+
967
+
968
+ ### Features
969
+
970
+ * **calling-sdk:** add discovery and server selection through catalog ([#76](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/76)) ([42881d4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/42881d4e91ce6d9d5c9e9b572f834713a4e7507b))
971
+
972
+ ## [1.29.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.29.0...v1.29.1) (2022-06-20)
973
+
974
+
975
+ ### Bug Fixes
976
+
977
+ * **calling-sdk:** change mediaconnection class name due to webrtc-core 1.20.1 ([#75](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/75)) ([4f9c2f6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4f9c2f69dec4a8483d90c81f409b880635722426))
978
+
979
+ # [1.29.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.28.0...v1.29.0) (2022-06-16)
980
+
981
+
982
+ ### Features
983
+
984
+ * add correlationId instead of callId ([b163812](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b1638124ebbd304f6a5b8465669e82710da97502))
985
+ * add correlationId instead of callId ([45ff4e3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/45ff4e3a2013f362179ec119278ecf2e19545498))
986
+
987
+ # [1.28.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.27.0...v1.28.0) (2022-06-16)
988
+
989
+
990
+ ### Features
991
+
992
+ * reinvite handling ([606b229](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/606b229d21af0b39fce3be644ab41d48a926dc0e))
993
+ * reinvite handling ([e8bc7c3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e8bc7c3216f10540ec2e06f8d2a7291d35031e72))
994
+ * reinvite handling ([59f65d3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/59f65d39c992576e90838ad408f07dfaf4107ba3))
995
+ * reinvite handling ([da31617](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/da31617e5c48adf937d743e774b2b80f879e6039))
996
+ * reinvite handling ([189d409](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/189d409889b2350fc20f2030d57bb24485f77009))
997
+ * reinvite handling ([e84f297](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e84f2973a7563ace4ae6ae90d8651969870108a3))
998
+
999
+ # [1.27.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.26.0...v1.27.0) (2022-06-13)
1000
+
1001
+
1002
+ ### Features
1003
+
1004
+ * **calling-sdk:** implement mute functionality on calls ([#71](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/71)) ([6da9fb8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6da9fb81d7d5209817c7a8a0ea306e4910792007))
1005
+
1006
+ # [1.26.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.25.0...v1.26.0) (2022-06-09)
1007
+
1008
+
1009
+ ### Features
1010
+
1011
+ * add CallerId support ([55ac12a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/55ac12afdc7272fa0ca47aa63dc3ac4b44873383))
1012
+ * add CallerId support ([35fbd5a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/35fbd5a1371b2657a5326922cf17abea452ec833))
1013
+ * add support for callerId ([c7ffeb3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c7ffeb37cb5b1663f944accc67fd669ea1b5a4a0))
1014
+ * add support for callerId ([23dc8be](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/23dc8be7024c0c976a7ee2a128d6846c08d7b395))
1015
+ * add support for callerId ([1ac5a08](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1ac5a08bfe552abe87a0e9930d56ad4ada1aade3))
1016
+ * add support for calllerId ([af81d82](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/af81d82dd98580a144c3f4563cf25064b4e867a5))
1017
+ * support two stage caller id ([df127cf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/df127cfba746fd0cb240931aa5f2f211a48b38f8))
1018
+
1019
+ # [1.25.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.24.0...v1.25.0) (2022-06-08)
1020
+
1021
+
1022
+ ### Features
1023
+
1024
+ * remove video mlines patch ([b429109](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b429109f1c7c98a448846c3bb60af4bccae8d382))
1025
+
1026
+ # [1.24.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.23.0...v1.24.0) (2022-06-03)
1027
+
1028
+
1029
+ ### Features
1030
+
1031
+ * more coverage related tests ([d552ada](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d552adaddb1579bc8f67d8031975586b3697ab3d))
1032
+ * unit tests for incoming call ([b9246aa](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b9246aaf8017155fbc34f90bf376c306a1b3505d))
1033
+ * unit tests for incoming call ([85d4656](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/85d46564843d478fc6ce292ed53fba433e24a4ec))
1034
+ * unit tests for incoming call ([f930f42](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f930f42397a430b1e639675bac29adf2ea56b8cb))
1035
+ * unit tests for incoming call ([2dd9880](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2dd9880b098cb1a46b7bfc7234b78843c44fcd4f))
1036
+ * unit tests for incoming call with media ([703413e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/703413ec0a058fa752bc759648c0e174f47ff93a))
1037
+ * unit tests for incoming call with media ([c92832d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c92832dede23c3a087e1a505f2d8a0133de4243f))
1038
+
1039
+ # [1.23.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.22.0...v1.23.0) (2022-06-02)
1040
+
1041
+
1042
+ ### Features
1043
+
1044
+ * **calling-sdk:** emit user recent session ([c519a63](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c519a63b3e30542e6e364fb71b139b94a15a809e))
1045
+ * **calling-sdk:** emit user recent session ([d2ecf5d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d2ecf5ddb87a5c70c1edffe3d5e9e8439c24cbc3))
1046
+ * **calling-sdk:** emit user recent session ([dedf281](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dedf28172d5f2535ca0fa8abd5d50ae64b56687f))
1047
+
1048
+ # [1.22.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.21.0...v1.22.0) (2022-05-31)
1049
+
1050
+
1051
+ ### Features
1052
+
1053
+ * incoming call ([e9a3c3b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e9a3c3b57c8ff0bd9024e71fbc0086602ae07655))
1054
+ * incoming call ([4c29067](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4c290674465da8a61a9c46a22c285afd4c9e7dd7))
1055
+ * incoming call ([6700e1c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6700e1c9c3742a236b2429f7e8b8e90e99ba8b55))
1056
+ * incoming call with media ([243e00c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/243e00c82a8441e25f904f80e972b872c8ffa35d))
1057
+ * incoming Call with media ([d2d27e6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d2d27e6767b651fc6c75f118ef5e277afdff44a2))
1058
+ * incoming Call with media ([6ba3ddf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6ba3ddfcad343d96dd7e4225582915911145a738))
1059
+ * incoming call with media handling ([bc4e74e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc4e74e29b564cf82d9227225276b3a6f19b472d))
1060
+ * incoming Call with media handling ([fde2f06](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fde2f06897f91169d7b35e2eaa3e2effa499230c))
1061
+ * incoming Call with media handling ([b8943f4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b8943f45ebc84dfae5ba09b4747486e7d4734031))
1062
+
1063
+ # [1.21.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.20.0...v1.21.0) (2022-05-20)
1064
+
1065
+
1066
+ ### Features
1067
+
1068
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([b1d47ca](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b1d47ca7ce4890fabde58aca82b20a2a5d8b1314))
1069
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([f9138b9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f9138b9e7f5543cd138d06cd56980cdbd4261956))
1070
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([93dfa77](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/93dfa774e0617f3130650a2cddf52d7dac0da923))
1071
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([ebfeaff](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ebfeaff245f7d0f64548584aea25c83b257c7474))
1072
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([a298c33](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a298c3300ea485acde1950edeb0ee855a3f3bd47))
1073
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([fe06d86](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fe06d86008b3da8a363aa051133e1419005fae93))
1074
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([3f2b0ae](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3f2b0ae566850461a7b326e4bb7f7e58ba8d7278))
1075
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([77d9e10](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/77d9e101a2bf5ec10aeb7e4f773a08997065485f))
1076
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([0c2d180](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0c2d1802957b2e732b0e4f22e64edabc40218fd5))
1077
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([1d02852](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1d02852106a9d5213905d245013b7bb3dffdc54d))
1078
+ * **calling-sdk:** ut and code for 404 Error response in keep alive ([61738e3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/61738e3f43725b9813d830cb0273cf8a92efb0ca))
1079
+ * outbound call state machine related changes ([1e3e54b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1e3e54b21fb0e82346eddf422f8a17e69a2cd7cd))
1080
+ * outbound call state machine related changes ([52cf68d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/52cf68d7c5f7f42040f75fc5fb5c062d1ab74344))
1081
+ * outbound call state machine related changes ([8de1d50](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8de1d50bbc85849bd6e5074bb126f253d2eaadff))
1082
+ * outbound call state machine related changes ([7037714](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/70377147b4f8ed254d7a72311a85561f879e9407))
1083
+
1084
+ # [1.20.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.6...v1.20.0) (2022-05-16)
1085
+
1086
+
1087
+ ### Features
1088
+
1089
+ * fix timer leaks with jest ([c85d2c5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c85d2c505e83b74c689c85c4ac0b0fca5357c0ff))
1090
+
1091
+ ## [1.19.6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.5...v1.19.6) (2022-05-13)
1092
+
1093
+
1094
+ ### Bug Fixes
1095
+
1096
+ * **calling-sdk:** remove type module and revert to module.exports ([#64](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/64)) ([411dbff](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/411dbff763df6d0c603ed911dea1fe59dd5cbef6))
1097
+
1098
+ ## [1.19.5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.4...v1.19.5) (2022-05-10)
1099
+
1100
+
1101
+ ### Bug Fixes
1102
+
1103
+ * **calling-sdk:** sanitise number ([#62](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/62)) ([7abb498](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7abb498a5c10c8d12c3733195509263557f8c313))
1104
+
1105
+ ## [1.19.4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.3...v1.19.4) (2022-05-10)
1106
+
1107
+
1108
+ ### Bug Fixes
1109
+
1110
+ * **calling-sdk:** expose correlation id in interface ([#61](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/61)) ([62a1bb7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/62a1bb7c1a0dc581d707873eda2b2376ef85cc92))
1111
+
1112
+ ## [1.19.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.2...v1.19.3) (2022-05-09)
1113
+
1114
+
1115
+ ### Bug Fixes
1116
+
1117
+ * **calling-sdk:** expose correlation id to web app ([#60](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/60)) ([5a804fa](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5a804fa947241c0393d0d062d2b69c78cc9e2914))
1118
+
1119
+ ## [1.19.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.1...v1.19.2) (2022-05-06)
1120
+
1121
+
1122
+ ### Bug Fixes
1123
+
1124
+ * **calling-sdk:** update index.min.js for testing by other teams ([0ad5b16](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0ad5b16bd8d47b2d177e179f0c55358155ae79f5))
1125
+
1126
+ ## [1.19.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.19.0...v1.19.1) (2022-05-04)
1127
+
1128
+
1129
+ ### Bug Fixes
1130
+
1131
+ * **calling-sdk:** ideviceinfo missing export ([#58](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/58)) ([784cc61](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/784cc61081ff10fa4eaf419d584636fef85a0937))
1132
+
1133
+ # [1.19.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.18.3...v1.19.0) (2022-05-02)
1134
+
1135
+
1136
+ ### Features
1137
+
1138
+ * **calling-sdk:** outgoing call disconnect added for demo ([#55](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/55)) ([fb355df](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fb355dfe60b326877b887e6bf3dc250549af7523))
1139
+
1140
+ ## [1.18.3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.18.2...v1.18.3) (2022-05-02)
1141
+
1142
+
1143
+ ### Bug Fixes
1144
+
1145
+ * **calling-sdk:** update to babel config to use webrtc core ([#54](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/54)) ([bfd93ea](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bfd93ea35f071b3796449a269db3f97e9e248ede))
1146
+
1147
+ ## [1.18.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.18.1...v1.18.2) (2022-04-29)
1148
+
1149
+
1150
+ ### Bug Fixes
1151
+
1152
+ * **calling-sdk:** handle 403 with error code 101 ([#52](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/52)) ([11139da](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/11139dacf3de13bcbf955c25adf9409f5ee3e6b5))
1153
+
1154
+ ## [1.18.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.18.0...v1.18.1) (2022-04-26)
1155
+
1156
+
1157
+ ### Bug Fixes
1158
+
1159
+ * **calling-sdk:** fix function names in call object and remove unneeded func ([#50](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/50)) ([7beb932](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7beb93277a38547abf8dd4453ad1d721a820c9c8))
1160
+
1161
+ # [1.18.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.17.0...v1.18.0) (2022-04-25)
1162
+
1163
+
1164
+ ### Features
1165
+
1166
+ * **calling-sdk:** remove CallDetails and callorigin. use calldetails only ([#47](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/47)) ([6094205](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6094205f630f51e1ecb70ebcc03f122cc3ae89b2))
1167
+
1168
+ # [1.17.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.16.0...v1.17.0) (2022-04-22)
1169
+
1170
+
1171
+ ### Features
1172
+
1173
+ * add log levels ([49e5695](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/49e5695cd78309e5fa784e0f1723091f52342b9f))
1174
+ * add log levels ([d8b6bc2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d8b6bc210c526ef840f4e2170dcdd1d94fd87fe9))
1175
+ * add log levels ([e5c85d0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e5c85d0717d7216eb00d7aeacd8ce9d89d448d79))
1176
+ * add timestamps to log ([7f7823b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7f7823b8f99c87a0f70546454652db341cda05b3))
1177
+ * add timestamps to log ([fb723ce](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fb723ce81d1a4d1257b34ab91262cbac035ef364))
1178
+ * add various log levels ([4e4007a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4e4007a147ad368653d4189f4d67fc0fc2ee4e5c))
1179
+ * add various log levels ([3603593](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3603593af076c92a42b59e5199546f771e1b8ff2))
1180
+
1181
+ # [1.16.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.15.0...v1.16.0) (2022-04-19)
1182
+
1183
+
1184
+ ### Features
1185
+
1186
+ * event related testcases ([eb3cfb9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eb3cfb9f49b7e76fde0abd822f837173064f367d))
1187
+
1188
+ # [1.15.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.14.0...v1.15.0) (2022-04-19)
1189
+
1190
+
1191
+ ### Features
1192
+
1193
+ * **calling-sdk:** modify devicetype to accept multiple sip addresses ([#41](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/41)) ([6a326d6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/6a326d6e0541fa354759411e2fb645a147e43786))
1194
+
1195
+ # [1.14.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.13.0...v1.14.0) (2022-04-12)
1196
+
1197
+
1198
+ ### Features
1199
+
1200
+ * add 403 case ([5f1a287](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5f1a2875472722b33cbd5a47d167793f45194236))
1201
+ * add 403 cases ([517f4d8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/517f4d8ac67922ff69792b5dca29e21064a9b89b))
1202
+ * add 403 cases ([90b51c9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/90b51c9ed520c1406d34e514a741666f0f01de55))
1203
+ * add unit test ([0a01d32](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0a01d329dcb736e0c2c8360c1844c6f3b8a3cb7c))
1204
+ * add unit test ([1ee4032](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1ee4032ac4a4c1d42c76dd3fe8b13b7499d844e8))
1205
+
1206
+ # [1.13.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.12.0...v1.13.0) (2022-04-11)
1207
+
1208
+
1209
+ ### Features
1210
+
1211
+ * 310965 Implement keepalive flow for calling SDK ([058350c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/058350cc187d17b5b5c4c37b16df7670c1241279))
1212
+ * keepalive and unit tests ([b66215a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b66215abaaa5c64e2844374da033c1fc8bc2e1f5))
1213
+ * keepalive and unit tests ([145ba16](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/145ba16d492683c74d6ff00da7ed456e7d3478b9))
1214
+ * keepalive and unit tests ([f0df024](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f0df0249ba6e3734fc3b989847795a99adf5cb27))
1215
+ * keepalive implementation ([bc20faf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc20faf640295972d8c9403664194788b79b14d1))
1216
+ * keepalive implementation ([2faeff6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2faeff6578d47e6117cd3167b82a069081516005))
1217
+ * removing dead code ([0d32391](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0d3239163d0770d4b27ced766f63a12819d84d03))
1218
+
1219
+ # [1.12.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.11.0...v1.12.0) (2022-04-11)
1220
+
1221
+
1222
+ ### Features
1223
+
1224
+ * add unit test for 401 case ([558ce6b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/558ce6b43bee5784cd5fbaf0d3cf5029cc0624d7))
1225
+
1226
+ # [1.11.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.10.0...v1.11.0) (2022-04-08)
1227
+
1228
+
1229
+ ### Features
1230
+
1231
+ * **calling-sdk:** unit test cases for create device and delete device ([bc334e5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bc334e56df8e347cedb45341bb0c7afbbff061f4))
1232
+ * **calling-sdk:** unit test cases for create device and delete device ([ded141d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ded141d8d9a234e30735048ddd1524f02a5a6cdb))
1233
+ * **calling-sdk:** unit test cases for create device and delete device ([c2a8d00](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c2a8d00d0b13e249d2d4d24ae7511a65eeae20e0))
1234
+ * **calling-sdk:** unit test cases for create device and delete device ([84289ed](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/84289edaf8600b233d924f485cd7488941a944d6))
1235
+ * **calling-sdk:** unit test cases for create device and delete device ([cc3a93d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/cc3a93dcd00baffc337623d04355b139e91def64))
1236
+ * **calling-sdk:** unit test cases for create device and delete device ([00603fb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/00603fb89ff5c47eb610b21a080d8a5368f9f6ac))
1237
+ * **calling-sdk:** unit test cases for create device and delete device ([a383f80](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a383f80fa75beaebb160252295f13a033e1d50f0))
1238
+ * **calling-sdk:** unit test cases for create device and delete device ([b0df206](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b0df206362083ee6ea46217f0feea8415b1640af))
1239
+
1240
+ # [1.10.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.9.0...v1.10.0) (2022-04-07)
1241
+
1242
+
1243
+ ### Features
1244
+
1245
+ * add 503 handling for registration ([f64247f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f64247fea9ac598370578d3fac5637c34b0c4633))
1246
+ * add unit test ([20d81d4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/20d81d49806672ae8492f1c082c9e584c204e590))
1247
+ * dead code removal ([3d9fe58](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3d9fe586e78da3a00c5e601ce07be43203e1c46e))
1248
+ * handle 401 error case for registration flows ([757f1f1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/757f1f14e961145c0ab99165cca62b8f7ff5747f))
1249
+ * merge conflict ([eec252e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eec252ea510f52aafe43b82b84b018a1e7b3d4b8))
1250
+ * merge conflict ([4eb5959](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4eb59596afe9940e7840c1ae7cb78c0333adeae2))
1251
+ * review comments ([b310d92](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b310d926c31c4652397b76f746dc2a3c2be54010))
1252
+ * review comments ([0164cb0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0164cb07957acc9ae1445fe9718ea027f29dcc1a))
1253
+
1254
+ # [1.9.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.8.0...v1.9.0) (2022-04-05)
1255
+
1256
+
1257
+ ### Features
1258
+
1259
+ * **calling-sdk:** adding cjs to rollup output ([#34](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/34)) ([4457311](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/445731163ea58d17b235165d92399826aae8ed36))
1260
+
1261
+ # [1.8.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.7.0...v1.8.0) (2022-04-01)
1262
+
1263
+
1264
+ ### Features
1265
+
1266
+ * **calling-sdk:** fixing more path issues in imports ([#32](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/32)) ([40eda08](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/40eda083d7e258d52a48fcfbeea1f53db9c8fd8f))
1267
+
1268
+ # [1.7.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.6.1...v1.7.0) (2022-03-31)
1269
+
1270
+
1271
+ ### Features
1272
+
1273
+ * **calling-sdk:** fix import of types in registration and sdkconnector ([#31](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/31)) ([0cfbcf0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0cfbcf0b0d29f64157ad23318ad58910fe5164da))
1274
+
1275
+ ## [1.6.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.6.0...v1.6.1) (2022-03-30)
1276
+
1277
+
1278
+ ### Bug Fixes
1279
+
1280
+ * **rollup:** fix rollup config ([1a50959](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1a50959102d066f4a5ee39124a26293d8a3a95d8))
1281
+
1282
+ # [1.6.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.5.0...v1.6.0) (2022-03-30)
1283
+
1284
+
1285
+ ### Features
1286
+
1287
+ * **calling-sdk:** fix samples to include registration after media changes ([#28](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/28)) ([316d81f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/316d81f768e5cdd0c61a6255ce10a94a4514b9f5))
1288
+
1289
+ # [1.5.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.4.0...v1.5.0) (2022-03-29)
1290
+
1291
+
1292
+ ### Bug Fixes
1293
+
1294
+ * **test:** fix tests and add jest ([34623f5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/34623f5e4d419be3c910b732faf08bec706a36b7))
1295
+ * **test:** fix tests and add jest ([9d16fdb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9d16fdbeb0736fe6c171d9d1b7c3619c1a9a1b1d))
1296
+ * **test:** fix tests and add jest ([fd10d8a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fd10d8a970874a5763e4ebcbce6c24403528ae9e))
1297
+ * **test:** fix tests and add jest ([cf01cc4](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/cf01cc4e7f7a2bffc20bea5461d9732871cf1a5e))
1298
+ * **test:** fix tests and add jest ([44d8b65](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/44d8b657c5a294d89e2863193c53acc9b8186c86))
1299
+
1300
+
1301
+ ### Features
1302
+
1303
+ * **media:** samples media ([044c341](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/044c341943ccf2f79631d2925e110d072e2b879b))
1304
+ * **sdp:** add media connection sdp to samples ([5598cda](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5598cda3fd9cd144f5f5c6fb99145b40df84150b))
1305
+
1306
+ # [1.4.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.3.0...v1.4.0) (2022-03-29)
1307
+
1308
+
1309
+ ### Features
1310
+
1311
+ * 313675 Investigate state machine implementation for calls ([7a80c48](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7a80c4861edbfd11d703ef3573be1d913c528552))
1312
+ * add media state machine and add in-dialog call object update handling ([17c58cb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/17c58cb3e86fe8a42816c502eba0f78fea86ecca))
1313
+ * add media_offer_request ([9d1c45e](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9d1c45e86a11dc4d900fb069a02fcf312d9e51c1))
1314
+ * added usage ([e035986](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e0359862d641f1b7bfbde69f00326f6f8a10e12c))
1315
+ * addressed review comments ([ed412e9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ed412e93869bf29aa20653b2ff5c51020d8e6308))
1316
+ * minor fix in merge conflict ([522c129](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/522c1299c7d7453e16330ed3eea906d257f1f4e0))
1317
+ * naming correction ([e77d39b](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/e77d39beb993ccaa657c640f65de6f95f30867f6))
1318
+ * naming correction 2 ([1e6cbaf](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/1e6cbafeea25897b5cb3ffcbbbf0fb33f546d799))
1319
+ * remove call_proceeding ([85c7eb5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/85c7eb56cb68ee239eb163369de2fe33c4d8f818))
1320
+ * resolve merge conflict ([c3274b2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c3274b248e4100dbc835ea38e26df6e93b744cbf))
1321
+ * review comments 2 ([0886ca5](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0886ca5877d14fdf402dabdf659afbc3d585408c))
1322
+
1323
+ # [1.3.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.2.0...v1.3.0) (2022-03-24)
1324
+
1325
+
1326
+ ### Features
1327
+
1328
+ * **calling-sdk:** registration and mobius server discovery ([#25](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/25)) ([c346686](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/c3466867339cc7a2b38fafa4d816f9ebc0e6267f))
1329
+
1330
+ # [1.2.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.1.0...v1.2.0) (2022-03-17)
1331
+
1332
+
1333
+ ### Features
1334
+
1335
+ * **docs:** add typedocs and code doc requirement ([a8b293d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a8b293d94d4ca66c4017d0c5230627e45d1acae3))
1336
+ * **docs:** add typedocs and code doc requirement ([772f448](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/772f448a210e8de58ac63df7708a24782860a8b6))
1337
+
1338
+ # [1.1.0](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.0.2...v1.1.0) (2022-03-16)
1339
+
1340
+
1341
+ ### Bug Fixes
1342
+
1343
+ * **pipeline:** add static analysis to pipeline ([5e98cc6](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/5e98cc6cfb3dd6201466e52e6100aa91073a0b67))
1344
+ * **pipeline:** add static analysis to pipeline ([db6b693](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/db6b693847c2240188695f8daf7385ad137e762c))
1345
+ * **pipeline:** add static analysis to pipeline ([2f1a206](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/2f1a2060ef7204e30984089f9d34e56e87037974))
1346
+ * **pipeline:** add static analysis to pipeline ([0c36cdd](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0c36cddbf6523576ecedf3b9a7188a31fc590bdd))
1347
+ * **pipeline:** add static analysis to pipeline ([591108c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/591108c409395d444d89b0699d5abbb10be2f268))
1348
+
1349
+
1350
+ ### Features
1351
+
1352
+ * **prettier:** add prettier and lint fixes ([75d93c3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/75d93c3af3fd2b89aeee63804b3e026292552e81))
1353
+ * **spelling:** add spellchecker ([9d875f7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9d875f742035e7c6e8801d13fcea6068f384e8a9))
1354
+
1355
+ ## [1.0.2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.0.1...v1.0.2) (2022-03-08)
1356
+
1357
+
1358
+ ### Bug Fixes
1359
+
1360
+ * add options to run samples on intergation env ([#19](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/issues/19)) ([d041534](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d0415341ced8b9ece040f73a7c97ce59ebaacaa8))
1361
+
1362
+ ## [1.0.1](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/compare/v1.0.0...v1.0.1) (2022-03-07)
1363
+
1364
+
1365
+ ### Bug Fixes
1366
+
1367
+ * **release:** fix ci release try2 ([d6f2ac2](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/d6f2ac249b514e4c847dea45f49e15ce9af43b52))
1368
+
1369
+ # 1.0.0 (2022-03-07)
1370
+
1371
+
1372
+ ### Bug Fixes
1373
+
1374
+ * **build:** added rollup for bundling ([9469257](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/94692577700730f943f2b64b9026e9fac02ad5b1))
1375
+ * **events:** add internal mercury events ([37fed5f](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/37fed5f286316ccac6df5dee206e700192a84023))
1376
+ * **events:** add internal mercury events ([8c50bb7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8c50bb7788d357bd5dfde9cfaae8c6a952e3f404))
1377
+ * **pipeline:** remove github token ([9df985c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/9df985c3c1b87bf419ce1aa5caad63f3ee5f5096))
1378
+ * **publish:** try fixing github token again ([ac87d3d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ac87d3d2e6511fcf095cca85141f8b3484c85044))
1379
+
1380
+
1381
+ ### Features
1382
+
1383
+ * **connector:** set up basic stubs for connector and prove out ([fb32e0d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/fb32e0d60d6f576cfb7bac0cd42711ce94ea5ed8))
1384
+ * **connector:** set up basic stubs for connector and prove out ([06f2c58](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/06f2c58283568d4ee59acba1ec336a6ee4a48c79))
1385
+ * **events:** add eventing infra ([bede96c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/bede96cc85f112400a9b248235eefab2ee3dfbb7))
1386
+ * **events:** fix log ([7065093](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7065093d4c39ef23d764a2895297568549f2b151))
1387
+ * **events:** fix logging ([00f331d](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/00f331d38a28f6ee135a1eb63cb774b4ee4c749b))
1388
+ * **events:** fix logging ([a704af8](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/a704af87404e76474a89e5621968822bf62fcdac))
1389
+ * **example:** test example connection ([efa2fa9](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/efa2fa97d92d12e5c64184b8a0485e51a25ea976))
1390
+ * **husky:** checks ([0cf8660](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0cf866031fc3ea791a0b2bd4256a538f982ae5e1))
1391
+ * **lint:** eslint ([b9138fe](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/b9138fe04422d5547ba20966e16ff22990b37126))
1392
+ * **pipeline:** publish, pipeline ([0d6c940](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/0d6c940e6eabd45c108bff3f3e6324182975abe4))
1393
+ * **pipeline:** publish, pipeline ([f4961a7](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f4961a75f7312d53a12cc17f0e94cc2fd4427db7))
1394
+ * **pipeline:** publish, pipeline ([eb7f97a](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/eb7f97a877fdb1cd3008af5884d81cb6bfe0f43c))
1395
+ * **pipeline:** publish, pipeline ([7d14053](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/7d1405374855eead32be951bd0fad764148def67))
1396
+ * **pipeline:** publish, pipeline ([890d2cc](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/890d2ccfa00ff9e93c5e6efcc71213e8c5276643))
1397
+ * **pipeline:** publish, pipeline ([4cec578](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/4cec578c04df31b5d1610cb9bbf03df786588556))
1398
+ * **pipeline:** publish, pipeline ([f1afb62](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/f1afb6284278bdf3570d5020e319b7565f723b9c))
1399
+ * **pipeline:** publish, pipeline ([74e1e5c](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/74e1e5cfe9549d5186198cbc7a565e5bacb18be2))
1400
+ * **pipeline:** publish, pipeline ([8e9a009](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/8e9a0090758099d3b3a17557e197a10588b8158c))
1401
+ * **publish:** docs, misc publish pieces ([3a1c4f3](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/3a1c4f3df9642d8491542e5efaca44029d32511f))
1402
+ * **publish:** setup npmrc to publish ([ac5c2ae](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/ac5c2ae5ef5e99b3ac0de995b7a0296edb5bd472))
1403
+ * **typescript:** typescript setup ([dbc8bbb](https://sqbu-github.cisco.com/WebExSquared/web-calling-sdk/commit/dbc8bbbeefdfb8e8cfb83b16729dff95a9076df3))