@webex/widgets 1.26.0 → 1.26.2
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/webexWidgets.esm.js
CHANGED
@@ -62317,7 +62317,8 @@ class MeetingsSDKAdapter extends d {
|
|
62317
62317
|
id,
|
62318
62318
|
meetingInfo: {
|
62319
62319
|
meetingName
|
62320
|
-
}
|
62320
|
+
},
|
62321
|
+
passwordStatus
|
62321
62322
|
} = _ref4;
|
62322
62323
|
return {
|
62323
62324
|
ID: id,
|
@@ -62333,6 +62334,7 @@ class MeetingsSDKAdapter extends d {
|
|
62333
62334
|
localShare: {
|
62334
62335
|
stream: null
|
62335
62336
|
},
|
62337
|
+
passwordRequired: passwordStatus === 'REQUIRED',
|
62336
62338
|
remoteAudio: null,
|
62337
62339
|
remoteVideo: null,
|
62338
62340
|
remoteShare: null,
|
@@ -62400,6 +62402,11 @@ class MeetingsSDKAdapter extends d {
|
|
62400
62402
|
|
62401
62403
|
try {
|
62402
62404
|
const sdkMeeting = this.fetchMeeting(ID);
|
62405
|
+
|
62406
|
+
if (sdkMeeting.passwordStatus === 'REQUIRED') {
|
62407
|
+
await sdkMeeting.verifyPassword(options.hostKey || options.password);
|
62408
|
+
}
|
62409
|
+
|
62403
62410
|
sdkMeeting.meetingFiniteStateMachine.reset();
|
62404
62411
|
logger.debug('MEETING', ID, 'joinMeeting()', ['calling sdkMeeting.join() with', {
|
62405
62412
|
pin: options.password,
|
@@ -63587,7 +63594,7 @@ var defineProperty = defineProperty$1;
|
|
63587
63594
|
})(constants);
|
63588
63595
|
|
63589
63596
|
var name$1 = "@webex/sdk-component-adapter";
|
63590
|
-
var version = "1.112.
|
63597
|
+
var version = "1.112.3";
|
63591
63598
|
const LOG_ARGS$1 = ['SDK-MEMBERSHIPS', `${name$1}-${version}`]; // max parameter value must be greater than 0 and less than or equal to 1000
|
63592
63599
|
|
63593
63600
|
const MAX_MEMBERSHIPS = 1000; // TODO: Figure out how to import JS Doc definitions and remove duplication.
|
@@ -64730,7 +64737,7 @@ var WebexMeetings = cp(sp(WebexMeetingsWidget), function (props) {
|
|
64730
64737
|
},
|
64731
64738
|
config: {
|
64732
64739
|
appName: appName,
|
64733
|
-
appVersion: "1.
|
64740
|
+
appVersion: "1.26.1",
|
64734
64741
|
fedramp: props.fedramp,
|
64735
64742
|
meetings: {
|
64736
64743
|
experimental: {
|