@webex/plugin-meetings 3.0.0-beta.266 → 3.0.0-beta.268

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.
@@ -906,10 +906,10 @@ export default class Meeting extends StatelessWebexPlugin {
906
906
  * Convenience method to set the correlation id for the Meeting
907
907
  * @param {String} id correlation id to set on the class
908
908
  * @returns {undefined}
909
- * @private
909
+ * @public
910
910
  * @memberof Meeting
911
911
  */
912
- private setCorrelationId;
912
+ setCorrelationId(id: string): void;
913
913
  /**
914
914
  * Enqueue request for screenshare floor and set the status to pending
915
915
  * @returns {Promise}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/plugin-meetings",
3
- "version": "3.0.0-beta.266",
3
+ "version": "3.0.0-beta.268",
4
4
  "description": "",
5
5
  "license": "Cisco EULA (https://www.cisco.com/c/en/us/products/end-user-license-agreement.html)",
6
6
  "contributors": [
@@ -32,12 +32,12 @@
32
32
  "build": "yarn run -T tsc --declaration true --declarationDir ./dist/types"
33
33
  },
34
34
  "devDependencies": {
35
- "@webex/plugin-meetings": "3.0.0-beta.266",
36
- "@webex/test-helper-chai": "3.0.0-beta.266",
37
- "@webex/test-helper-mocha": "3.0.0-beta.266",
38
- "@webex/test-helper-mock-webex": "3.0.0-beta.266",
39
- "@webex/test-helper-retry": "3.0.0-beta.266",
40
- "@webex/test-helper-test-users": "3.0.0-beta.266",
35
+ "@webex/plugin-meetings": "3.0.0-beta.268",
36
+ "@webex/test-helper-chai": "3.0.0-beta.268",
37
+ "@webex/test-helper-mocha": "3.0.0-beta.268",
38
+ "@webex/test-helper-mock-webex": "3.0.0-beta.268",
39
+ "@webex/test-helper-retry": "3.0.0-beta.268",
40
+ "@webex/test-helper-test-users": "3.0.0-beta.268",
41
41
  "chai": "^4.3.4",
42
42
  "chai-as-promised": "^7.1.1",
43
43
  "jsdom-global": "3.0.2",
@@ -46,19 +46,19 @@
46
46
  "typescript": "^4.7.4"
47
47
  },
48
48
  "dependencies": {
49
- "@webex/common": "3.0.0-beta.266",
49
+ "@webex/common": "3.0.0-beta.268",
50
50
  "@webex/internal-media-core": "2.0.4",
51
- "@webex/internal-plugin-conversation": "3.0.0-beta.266",
52
- "@webex/internal-plugin-device": "3.0.0-beta.266",
53
- "@webex/internal-plugin-llm": "3.0.0-beta.266",
54
- "@webex/internal-plugin-mercury": "3.0.0-beta.266",
55
- "@webex/internal-plugin-metrics": "3.0.0-beta.266",
56
- "@webex/internal-plugin-support": "3.0.0-beta.266",
57
- "@webex/internal-plugin-user": "3.0.0-beta.266",
58
- "@webex/media-helpers": "3.0.0-beta.266",
59
- "@webex/plugin-people": "3.0.0-beta.266",
60
- "@webex/plugin-rooms": "3.0.0-beta.266",
61
- "@webex/webex-core": "3.0.0-beta.266",
51
+ "@webex/internal-plugin-conversation": "3.0.0-beta.268",
52
+ "@webex/internal-plugin-device": "3.0.0-beta.268",
53
+ "@webex/internal-plugin-llm": "3.0.0-beta.268",
54
+ "@webex/internal-plugin-mercury": "3.0.0-beta.268",
55
+ "@webex/internal-plugin-metrics": "3.0.0-beta.268",
56
+ "@webex/internal-plugin-support": "3.0.0-beta.268",
57
+ "@webex/internal-plugin-user": "3.0.0-beta.268",
58
+ "@webex/media-helpers": "3.0.0-beta.268",
59
+ "@webex/plugin-people": "3.0.0-beta.268",
60
+ "@webex/plugin-rooms": "3.0.0-beta.268",
61
+ "@webex/webex-core": "3.0.0-beta.268",
62
62
  "ampersand-collection": "^2.0.2",
63
63
  "bowser": "^2.11.0",
64
64
  "btoa": "^1.2.1",
@@ -3863,10 +3863,10 @@ export default class Meeting extends StatelessWebexPlugin {
3863
3863
  * Convenience method to set the correlation id for the Meeting
3864
3864
  * @param {String} id correlation id to set on the class
3865
3865
  * @returns {undefined}
3866
- * @private
3866
+ * @public
3867
3867
  * @memberof Meeting
3868
3868
  */
3869
- private setCorrelationId(id: string) {
3869
+ public setCorrelationId(id: string) {
3870
3870
  this.correlationId = id;
3871
3871
  }
3872
3872