@webex/plugin-meetings 3.8.0-next.6 → 3.8.0-next.8
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 +1 -0
- package/dist/constants.js.map +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/recording-controller/util.js +5 -5
- package/dist/recording-controller/util.js.map +1 -1
- package/dist/types/constants.d.ts +1 -0
- package/dist/types/meeting/index.d.ts +22 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +21 -21
- package/src/constants.ts +1 -0
- package/src/meeting/index.ts +34 -0
- package/src/recording-controller/util.ts +17 -13
- package/test/unit/spec/meeting/index.js +16 -0
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}
|