@webex/plugin-meetings 3.12.0-next.55 → 3.12.0-next.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aiEnableRequest/index.js +1 -1
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/hashTree/hashTreeParser.js +124 -47
- package/dist/hashTree/hashTreeParser.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.js +1 -1
- package/dist/meeting/index.js.map +1 -1
- package/dist/meetings/index.js +3 -1
- package/dist/meetings/index.js.map +1 -1
- package/dist/meetings/util.js +14 -2
- package/dist/meetings/util.js.map +1 -1
- package/dist/types/hashTree/hashTreeParser.d.ts +9 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +1 -1
- package/src/hashTree/hashTreeParser.ts +68 -0
- package/src/meeting/index.ts +2 -1
- package/src/meetings/index.ts +4 -1
- package/src/meetings/util.ts +17 -0
- package/test/unit/spec/hashTree/hashTreeParser.ts +253 -0
- package/test/unit/spec/meeting/index.js +16 -0
- package/test/unit/spec/meetings/index.js +24 -0
- package/test/unit/spec/meetings/utils.js +28 -0
package/dist/meetings/index.js
CHANGED
|
@@ -1592,6 +1592,7 @@ var Meetings = exports.default = /*#__PURE__*/function (_WebexPlugin) {
|
|
|
1592
1592
|
enableUnifiedMeetings,
|
|
1593
1593
|
meetingInfoOptions,
|
|
1594
1594
|
shouldDeferMeetingInfoFetch,
|
|
1595
|
+
isOneOnOneCallLocus,
|
|
1595
1596
|
meetingAddedType,
|
|
1596
1597
|
_args4 = arguments,
|
|
1597
1598
|
_t2;
|
|
@@ -1647,6 +1648,7 @@ var Meetings = exports.default = /*#__PURE__*/function (_WebexPlugin) {
|
|
|
1647
1648
|
sendCAevents: !!(callStateForMetrics !== null && callStateForMetrics !== void 0 && callStateForMetrics.correlationId) // if client sends correlation id as argument of public create(), then it means that this meeting creation is part of a pre-join intent from user
|
|
1648
1649
|
};
|
|
1649
1650
|
shouldDeferMeetingInfoFetch = type === _constants.DESTINATION_TYPE.LOCUS_ID && !(destination !== null && destination !== void 0 && destination.info);
|
|
1651
|
+
isOneOnOneCallLocus = type === _constants.DESTINATION_TYPE.LOCUS_ID && _util2.default.isOneOnOneCall(destination);
|
|
1650
1652
|
if (!meetingInfo) {
|
|
1651
1653
|
_context4.next = 2;
|
|
1652
1654
|
break;
|
|
@@ -1655,7 +1657,7 @@ var Meetings = exports.default = /*#__PURE__*/function (_WebexPlugin) {
|
|
|
1655
1657
|
_context4.next = 6;
|
|
1656
1658
|
break;
|
|
1657
1659
|
case 2:
|
|
1658
|
-
if (!(type !== _constants.DESTINATION_TYPE.ONE_ON_ONE_CALL)) {
|
|
1660
|
+
if (!(type !== _constants.DESTINATION_TYPE.ONE_ON_ONE_CALL && !isOneOnOneCallLocus)) {
|
|
1659
1661
|
_context4.next = 6;
|
|
1660
1662
|
break;
|
|
1661
1663
|
}
|