Only initialize LiveChat and pass the license. ```<LiveChat license="1XXXXX" group={...}/>``` ``` componentDidMount() { const visitorSDK = init({ license: this.props.license, group: this.props.group, appName: 'ReactNative', }) this.initVisitorSdk(visitorSDK) visitorSDK.on('protocol_upgraded', () => { this.setState({ protocol: 'lc3', users: {}, messages: [], }) ``` I looked through the documentation https://developers.livechat.com/docs/extending-chat-widget/visitor-sdk#is-it-for-me but couldn't find'protocol_upgraded'. Is my parameter passed incorrectly? Could anyone help solve this problem? It would be better if there are related documents explaining'protocol_upgraded'.
Only initialize LiveChat and pass the license.
<LiveChat license="1XXXXX" group={...}/>I looked through the documentation https://developers.livechat.com/docs/extending-chat-widget/visitor-sdk#is-it-for-me but couldn't find'protocol_upgraded'. Is my parameter passed incorrectly? Could anyone help solve this problem? It would be better if there are related documents explaining'protocol_upgraded'.