@webex/plugin-meetings 3.10.0-next.6 → 3.10.0-wxc-disconnect.1

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.
Files changed (65) hide show
  1. package/dist/breakouts/breakout.js +1 -1
  2. package/dist/breakouts/index.js +1 -1
  3. package/dist/common/errors/webex-errors.js +1 -21
  4. package/dist/common/errors/webex-errors.js.map +1 -1
  5. package/dist/constants.js +0 -7
  6. package/dist/constants.js.map +1 -1
  7. package/dist/controls-options-manager/index.js +5 -22
  8. package/dist/controls-options-manager/index.js.map +1 -1
  9. package/dist/index.js +0 -7
  10. package/dist/index.js.map +1 -1
  11. package/dist/interpretation/index.js +1 -1
  12. package/dist/interpretation/siLanguage.js +1 -1
  13. package/dist/locus-info/controlsUtils.js +2 -11
  14. package/dist/locus-info/controlsUtils.js.map +1 -1
  15. package/dist/locus-info/index.js +3 -17
  16. package/dist/locus-info/index.js.map +1 -1
  17. package/dist/media/index.js +0 -5
  18. package/dist/media/index.js.map +1 -1
  19. package/dist/meeting/in-meeting-actions.js +0 -6
  20. package/dist/meeting/in-meeting-actions.js.map +1 -1
  21. package/dist/meeting/index.js +33 -103
  22. package/dist/meeting/index.js.map +1 -1
  23. package/dist/meeting/request.js +14 -152
  24. package/dist/meeting/request.js.map +1 -1
  25. package/dist/meeting/util.js +0 -9
  26. package/dist/meeting/util.js.map +1 -1
  27. package/dist/member/index.js +0 -9
  28. package/dist/member/index.js.map +1 -1
  29. package/dist/member/util.js +0 -10
  30. package/dist/member/util.js.map +1 -1
  31. package/dist/types/common/errors/webex-errors.d.ts +0 -12
  32. package/dist/types/constants.d.ts +0 -5
  33. package/dist/types/controls-options-manager/index.d.ts +1 -9
  34. package/dist/types/index.d.ts +1 -2
  35. package/dist/types/locus-info/index.d.ts +1 -2
  36. package/dist/types/meeting/in-meeting-actions.d.ts +0 -6
  37. package/dist/types/meeting/index.d.ts +0 -30
  38. package/dist/types/meeting/request.d.ts +0 -33
  39. package/dist/types/meeting/util.d.ts +0 -3
  40. package/dist/types/member/index.d.ts +0 -1
  41. package/dist/types/member/util.d.ts +0 -5
  42. package/dist/webinar/index.js +1 -1
  43. package/package.json +22 -22
  44. package/src/common/errors/webex-errors.ts +0 -19
  45. package/src/constants.ts +1 -9
  46. package/src/controls-options-manager/index.ts +5 -26
  47. package/src/index.ts +0 -2
  48. package/src/locus-info/controlsUtils.ts +0 -18
  49. package/src/locus-info/index.ts +4 -14
  50. package/src/media/index.ts +0 -6
  51. package/src/meeting/in-meeting-actions.ts +0 -12
  52. package/src/meeting/index.ts +21 -99
  53. package/src/meeting/request.ts +0 -118
  54. package/src/meeting/util.ts +0 -9
  55. package/src/member/index.ts +0 -10
  56. package/src/member/util.ts +0 -14
  57. package/test/unit/spec/controls-options-manager/index.js +0 -47
  58. package/test/unit/spec/fixture/locus.js +0 -1
  59. package/test/unit/spec/locus-info/index.js +0 -39
  60. package/test/unit/spec/media/index.ts +9 -140
  61. package/test/unit/spec/meeting/in-meeting-actions.ts +0 -6
  62. package/test/unit/spec/meeting/index.js +70 -171
  63. package/test/unit/spec/meeting/utils.js +0 -3
  64. package/test/unit/spec/meetings/index.js +2 -0
  65. package/test/unit/spec/member/util.js +0 -24
@@ -417,30 +417,6 @@ 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
-
444
420
  describe('MemberUtil.isLiveAnnotationSupported', () => {
445
421
  it('throws an error when there is no participant', () => {
446
422
  assert.throws(() => {