@webex/plugin-meetings 3.0.0-beta.201 → 3.0.0-beta.203
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/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/constants.js +10 -4
- package/dist/constants.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/index.js +5 -8
- package/dist/locus-info/index.js.map +1 -1
- package/dist/locus-info/infoUtils.js +7 -1
- package/dist/locus-info/infoUtils.js.map +1 -1
- package/dist/meeting/in-meeting-actions.js +3 -1
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.js +502 -453
- package/dist/meeting/index.js.map +1 -1
- package/dist/recording-controller/index.js +0 -1
- package/dist/recording-controller/index.js.map +1 -1
- package/dist/types/constants.d.ts +3 -0
- package/dist/types/locus-info/index.d.ts +1 -1
- package/dist/types/meeting/in-meeting-actions.d.ts +2 -0
- package/dist/types/meeting/index.d.ts +14 -0
- package/dist/types/recording-controller/index.d.ts +0 -1
- package/package.json +19 -19
- package/src/constants.ts +7 -0
- package/src/locus-info/index.ts +9 -10
- package/src/locus-info/infoUtils.ts +10 -2
- package/src/meeting/in-meeting-actions.ts +4 -0
- package/src/meeting/index.ts +268 -231
- package/src/recording-controller/index.ts +0 -1
- package/test/unit/spec/locus-info/index.js +80 -3
- package/test/unit/spec/locus-info/infoUtils.js +37 -15
- package/test/unit/spec/meeting/in-meeting-actions.ts +2 -0
- package/test/unit/spec/meeting/index.js +284 -148
- package/test/unit/spec/meetings/index.js +2 -2
|
@@ -1088,7 +1088,7 @@ describe('plugin-meetings', () => {
|
|
|
1088
1088
|
assert.calledOnce(webex.meetings.meetingInfo.fetchMeetingInfo);
|
|
1089
1089
|
assert.calledOnce(MeetingsUtil.getMeetingAddedType);
|
|
1090
1090
|
assert.notCalled(setTimeoutSpy);
|
|
1091
|
-
assert.callCount(TriggerProxy.trigger,
|
|
1091
|
+
assert.callCount(TriggerProxy.trigger, 5);
|
|
1092
1092
|
assert.calledWith(webex.meetings.meetingInfo.fetchMeetingInfo, destination, type, null, null, undefined, undefined, extraParams, {meetingId: meeting.id});
|
|
1093
1093
|
assert.calledWith(MeetingsUtil.getMeetingAddedType, 'test type');
|
|
1094
1094
|
|
|
@@ -1371,7 +1371,7 @@ describe('plugin-meetings', () => {
|
|
|
1371
1371
|
);
|
|
1372
1372
|
assert.calledOnce(webex.meetings.meetingInfo.fetchMeetingInfo);
|
|
1373
1373
|
assert.calledOnce(MeetingsUtil.getMeetingAddedType);
|
|
1374
|
-
assert.
|
|
1374
|
+
assert.calledThrice(TriggerProxy.trigger);
|
|
1375
1375
|
assert.calledWith(
|
|
1376
1376
|
webex.meetings.meetingInfo.fetchMeetingInfo,
|
|
1377
1377
|
'test destination',
|