@webex/plugin-meetings 1.153.3 → 1.153.4

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.
@@ -2676,17 +2676,20 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
2676
2676
  }, {
2677
2677
  key: "parseMeetingInfo",
2678
2678
  value: function parseMeetingInfo(meetingInfo) {
2679
- // MeetingInfo will be undefined for 1:1 calls
2680
- if (meetingInfo && meetingInfo.body && !(meetingInfo.errors && meetingInfo.errors.length > 0)) {
2681
- this.conversationUrl = meetingInfo.body.conversationUrl || this.conversationUrl;
2682
- this.locusUrl = meetingInfo.body.locusUrl || this.locusUrl;
2683
- this.setSipUri(this.config.experimental.enableUnifiedMeetings ? meetingInfo.body.sipUrl : meetingInfo.body.sipMeetingUri || this.sipUri);
2679
+ var webexMeetingInfo = meetingInfo === null || meetingInfo === void 0 ? void 0 : meetingInfo.body; // MeetingInfo will be undefined for 1:1 calls
2680
+
2681
+ if (webexMeetingInfo && !(meetingInfo.errors && meetingInfo.errors.length > 0)) {
2682
+ this.conversationUrl = webexMeetingInfo.conversationUrl || this.conversationUrl;
2683
+ this.locusUrl = webexMeetingInfo.locusUrl || this.locusUrl;
2684
+ this.setSipUri(this.config.experimental.enableUnifiedMeetings ? webexMeetingInfo.sipUrl : webexMeetingInfo.sipMeetingUri || this.sipUri);
2684
2685
 
2685
2686
  if (this.config.experimental.enableUnifiedMeetings) {
2686
- this.meetingNumber = meetingInfo.body.meetingNumber;
2687
+ this.meetingNumber = webexMeetingInfo.meetingNumber;
2688
+ this.meetingJoinUrl = webexMeetingInfo.meetingJoinUrl;
2687
2689
  }
2688
2690
 
2689
- this.owner = meetingInfo.body.owner || meetingInfo.body.hostId || this.owner;
2691
+ this.owner = webexMeetingInfo.owner || webexMeetingInfo.hostId || this.owner;
2692
+ this.permissionToken = webexMeetingInfo.permissionToken;
2690
2693
  }
2691
2694
  }
2692
2695
  /**