@webex/plugin-meetings 3.9.0-multi-llms.3 → 3.9.0-multi-llms.5
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 +4 -0
- package/dist/constants.js.map +1 -1
- package/dist/controls-options-manager/index.js +22 -5
- package/dist/controls-options-manager/index.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/interceptors/index.js +7 -0
- package/dist/interceptors/index.js.map +1 -1
- package/dist/interceptors/locusRouteToken.js +116 -0
- package/dist/interceptors/locusRouteToken.js.map +1 -0
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/controlsUtils.js +11 -2
- package/dist/locus-info/controlsUtils.js.map +1 -1
- package/dist/locus-info/index.js +17 -3
- package/dist/locus-info/index.js.map +1 -1
- package/dist/meeting/in-meeting-actions.js +2 -0
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.js +74 -32
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/request.js +48 -14
- package/dist/meeting/request.js.map +1 -1
- package/dist/meeting/util.js +3 -0
- package/dist/meeting/util.js.map +1 -1
- package/dist/member/index.js +9 -0
- package/dist/member/index.js.map +1 -1
- package/dist/member/util.js +10 -0
- package/dist/member/util.js.map +1 -1
- package/dist/types/constants.d.ts +3 -0
- package/dist/types/controls-options-manager/index.d.ts +9 -1
- package/dist/types/interceptors/index.d.ts +2 -1
- package/dist/types/interceptors/locusRouteToken.d.ts +38 -0
- package/dist/types/locus-info/index.d.ts +2 -1
- package/dist/types/meeting/in-meeting-actions.d.ts +2 -0
- package/dist/types/meeting/index.d.ts +14 -0
- package/dist/types/meeting/request.d.ts +16 -0
- package/dist/types/meeting/util.d.ts +1 -0
- package/dist/types/member/index.d.ts +1 -0
- package/dist/types/member/util.d.ts +5 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +20 -20
- package/src/constants.ts +6 -0
- package/src/controls-options-manager/index.ts +26 -5
- package/src/index.ts +2 -1
- package/src/interceptors/index.ts +2 -1
- package/src/interceptors/locusRouteToken.ts +80 -0
- package/src/locus-info/controlsUtils.ts +18 -0
- package/src/locus-info/index.ts +14 -4
- package/src/meeting/in-meeting-actions.ts +4 -0
- package/src/meeting/index.ts +67 -20
- package/src/meeting/request.ts +38 -0
- package/src/meeting/util.ts +3 -0
- package/src/member/index.ts +10 -0
- package/src/member/util.ts +14 -0
- package/test/unit/spec/controls-options-manager/index.js +47 -0
- package/test/unit/spec/fixture/locus.js +1 -0
- package/test/unit/spec/interceptors/locusRouteToken.ts +87 -0
- package/test/unit/spec/locus-info/index.js +39 -0
- package/test/unit/spec/meeting/in-meeting-actions.ts +2 -0
- package/test/unit/spec/meeting/index.js +41 -2
- package/test/unit/spec/meeting/utils.js +1 -0
- package/test/unit/spec/member/util.js +24 -0
@@ -417,6 +417,30 @@ describe('plugin-meetings', () => {
|
|
417
417
|
});
|
418
418
|
});
|
419
419
|
|
420
|
+
describe('MemberUtil.isSupportsSingleUserAutoEndMeeting', () => {
|
421
|
+
it('throws an error when there is no participant', () => {
|
422
|
+
assert.throws(() => {
|
423
|
+
MemberUtil.isSupportsSingleUserAutoEndMeeting();
|
424
|
+
}, 'Single user auto end meeting support could not be processed, participant is undefined.');
|
425
|
+
});
|
426
|
+
|
427
|
+
it('returns true when single user auto end meeting is supported', () => {
|
428
|
+
const participant = {
|
429
|
+
supportsSingleUserAutoEndMeeting: {},
|
430
|
+
};
|
431
|
+
assert.isTrue(MemberUtil.isSupportsSingleUserAutoEndMeeting(participant));
|
432
|
+
});
|
433
|
+
|
434
|
+
it('returns false when single user auto end meeting is not supported', () => {
|
435
|
+
const participant = {
|
436
|
+
doesNotSupportSingleUserAutoEndMeeting: {},
|
437
|
+
};
|
438
|
+
|
439
|
+
assert.isFalse(MemberUtil.isSupportsSingleUserAutoEndMeeting(participant));
|
440
|
+
});
|
441
|
+
});
|
442
|
+
|
443
|
+
|
420
444
|
describe('MemberUtil.isLiveAnnotationSupported', () => {
|
421
445
|
it('throws an error when there is no participant', () => {
|
422
446
|
assert.throws(() => {
|