@webex/internal-plugin-ai-assistant 0.0.0-next.1 → 0.0.0-next.10
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/README.md +2 -0
- package/dist/ai-assistant.js +1 -1
- package/package.json +8 -8
- package/process +1 -0
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
> Plugin for AI Assistant functionality
|
|
6
6
|
|
|
7
|
+
The AI assistant provides AI related features for webex, both in and out of meetings.
|
|
8
|
+
|
|
7
9
|
This is an internal Cisco Webex plugin. As such, it does not strictly adhere to semantic versioning. Use at your own risk. If you're not working on one of our first party clients, please look at our [developer api](https://developer.webex.com/) and stick to our public plugins.
|
|
8
10
|
|
|
9
11
|
- [Install](#install)
|
package/dist/ai-assistant.js
CHANGED
|
@@ -485,7 +485,7 @@ var AIAssistant = _webexCore.WebexPlugin.extend({
|
|
|
485
485
|
contentValue: options.question
|
|
486
486
|
}));
|
|
487
487
|
},
|
|
488
|
-
version: "0.0.0-next.
|
|
488
|
+
version: "0.0.0-next.10"
|
|
489
489
|
});
|
|
490
490
|
var _default = exports.default = AIAssistant;
|
|
491
491
|
//# sourceMappingURL=ai-assistant.js.map
|
package/package.json
CHANGED
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@webex/common": "3.8.1-next.
|
|
24
|
-
"@webex/common-timers": "3.8.1-next.
|
|
25
|
-
"@webex/internal-plugin-mercury": "3.8.1-next.
|
|
26
|
-
"@webex/webex-core": "3.8.1-next.
|
|
23
|
+
"@webex/common": "3.8.1-next.8",
|
|
24
|
+
"@webex/common-timers": "3.8.1-next.8",
|
|
25
|
+
"@webex/internal-plugin-mercury": "3.8.1-next.8",
|
|
26
|
+
"@webex/webex-core": "3.8.1-next.8",
|
|
27
27
|
"lodash": "^4.17.21",
|
|
28
28
|
"uuid": "^3.3.2"
|
|
29
29
|
},
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"@webex/eslint-config-legacy": "0.0.0",
|
|
34
34
|
"@webex/jest-config-legacy": "0.0.0",
|
|
35
35
|
"@webex/legacy-tools": "0.0.0",
|
|
36
|
-
"@webex/test-helper-chai": "3.8.1-next.
|
|
37
|
-
"@webex/test-helper-mock-webex": "3.8.1-next.
|
|
38
|
-
"@webex/test-helper-test-users": "3.8.1-next.
|
|
36
|
+
"@webex/test-helper-chai": "3.8.1-next.8",
|
|
37
|
+
"@webex/test-helper-mock-webex": "3.8.1-next.8",
|
|
38
|
+
"@webex/test-helper-test-users": "3.8.1-next.8",
|
|
39
39
|
"eslint": "^8.24.0",
|
|
40
40
|
"prettier": "^2.7.1",
|
|
41
41
|
"sinon": "^9.2.4"
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"test:style": "eslint ./src/**/*.*",
|
|
50
50
|
"test:unit": "webex-legacy-tools test --unit --runner jest"
|
|
51
51
|
},
|
|
52
|
-
"version": "0.0.0-next.
|
|
52
|
+
"version": "0.0.0-next.10"
|
|
53
53
|
}
|
package/process
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {browser: true};
|