You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error message: CommonJS modules (require, exports and module.exports) are deprecated. Use ES modules instead (import, export). See https://roomos.cisco.com/docs/MacroTutorial.md#modules for more info.
According to the documentation:
the "module.exports" line needs to be removed
the function should be prefixed with "export default" (like this export default function sendMessage(token, toPersonEmail, roomId, markdown) {
Because of the "default" above you don't need "{ }" when calling the function.
Cheers!
duittenb
The text was updated successfully, but these errors were encountered:
roomdevices-macros-samples/Library - Send Webex Message/webex.js
Line 15 in 045b288
Error message:
CommonJS modules (require, exports and module.exports) are deprecated. Use ES modules instead (import, export). See https://roomos.cisco.com/docs/MacroTutorial.md#modules for more info.
According to the documentation:
export default function sendMessage(token, toPersonEmail, roomId, markdown) {
Cheers!
duittenb
The text was updated successfully, but these errors were encountered: