@webex/plugin-meetings 3.8.1-next.13 → 3.8.1-next.15

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.
@@ -4349,17 +4349,18 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4349
4349
  }
4350
4350
 
4351
4351
  /**
4352
- * Cancel an SIP call invitation made during a meeting
4352
+ * Cancel an SIP/phone call invitation made during a meeting
4353
4353
  * @param {Object} invitee
4354
4354
  * @param {String} invitee.memberId
4355
- * @returns {Promise} see #members.cancelSIPInvite
4355
+ * @param {Boolean} [invitee.isInternalNumber] - When cancel phone invitation, if the number is internal
4356
+ * @returns {Promise} see #members.cancelInviteByMemberId
4356
4357
  * @public
4357
4358
  * @memberof Meeting
4358
4359
  */
4359
4360
  }, {
4360
- key: "cancelSIPInvite",
4361
- value: function cancelSIPInvite(invitee) {
4362
- return this.members.cancelSIPInvite(invitee);
4361
+ key: "cancelInviteByMemberId",
4362
+ value: function cancelInviteByMemberId(invitee) {
4363
+ return this.members.cancelInviteByMemberId(invitee);
4363
4364
  }
4364
4365
 
4365
4366
  /**