@webex/plugin-meetings 3.8.0-next.6 → 3.8.0-next.7
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/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.js +38 -0
- package/dist/meeting/index.js.map +1 -1
- package/dist/types/meeting/index.d.ts +22 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +21 -21
- package/src/meeting/index.ts +34 -0
- package/test/unit/spec/meeting/index.js +16 -0
package/dist/breakouts/index.js
CHANGED
@@ -1046,7 +1046,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
1046
1046
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
1047
1047
|
}
|
1048
1048
|
},
|
1049
|
-
version: "3.8.0-next.
|
1049
|
+
version: "3.8.0-next.7"
|
1050
1050
|
});
|
1051
1051
|
var _default = exports.default = Breakouts;
|
1052
1052
|
//# sourceMappingURL=index.js.map
|
@@ -373,7 +373,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
|
|
373
373
|
throw error;
|
374
374
|
});
|
375
375
|
},
|
376
|
-
version: "3.8.0-next.
|
376
|
+
version: "3.8.0-next.7"
|
377
377
|
});
|
378
378
|
var _default = exports.default = SimultaneousInterpretation;
|
379
379
|
//# sourceMappingURL=index.js.map
|
package/dist/meeting/index.js
CHANGED
@@ -2303,6 +2303,44 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
2303
2303
|
this.callStateForMetrics.correlationId = correlationId;
|
2304
2304
|
}
|
2305
2305
|
|
2306
|
+
/**
|
2307
|
+
* Getter - Returns callStateForMetrics.userNameInput
|
2308
|
+
* @returns {string}
|
2309
|
+
*/
|
2310
|
+
}, {
|
2311
|
+
key: "userNameInput",
|
2312
|
+
get: function get() {
|
2313
|
+
var _this$callStateForMet;
|
2314
|
+
return (_this$callStateForMet = this.callStateForMetrics) === null || _this$callStateForMet === void 0 ? void 0 : _this$callStateForMet.userNameInput;
|
2315
|
+
}
|
2316
|
+
|
2317
|
+
/**
|
2318
|
+
* Setter - sets callStateForMetrics.userNameInput
|
2319
|
+
* @param {string} userNameInput
|
2320
|
+
*/,
|
2321
|
+
set: function set(userNameInput) {
|
2322
|
+
this.callStateForMetrics.userNameInput = userNameInput;
|
2323
|
+
}
|
2324
|
+
|
2325
|
+
/**
|
2326
|
+
* Getter - Returns callStateForMetrics.emailInput
|
2327
|
+
* @returns {string}
|
2328
|
+
*/
|
2329
|
+
}, {
|
2330
|
+
key: "emailInput",
|
2331
|
+
get: function get() {
|
2332
|
+
var _this$callStateForMet2;
|
2333
|
+
return (_this$callStateForMet2 = this.callStateForMetrics) === null || _this$callStateForMet2 === void 0 ? void 0 : _this$callStateForMet2.emailInput;
|
2334
|
+
}
|
2335
|
+
|
2336
|
+
/**
|
2337
|
+
* Setter - sets callStateForMetrics.emailInput
|
2338
|
+
* @param {string} emailInput
|
2339
|
+
*/,
|
2340
|
+
set: function set(emailInput) {
|
2341
|
+
this.callStateForMetrics.emailInput = emailInput;
|
2342
|
+
}
|
2343
|
+
|
2306
2344
|
/**
|
2307
2345
|
* Getter - Returns callStateForMetrics.sessionCorrelationId
|
2308
2346
|
* @returns {string}
|