Hi,
We are trying to migrate the existing handlers for v1 (alexa-sdk) to v2 (ask-sdk) with the migration guide https://developer.amazon.com/docs/alexa-skills-kit-sdk-for-nodejs/migration-guide.html?&sc_category=Owned&sc_channel=EM&sc_campaign=SDKDeprecation&sc_publisher=OT&sc_content=Skill_Related&sc_funnel=Published&sc_country=WW&sc_medium=Owned_EM_SDKDeprecation_OT_Skill_Related_Published_WW_ASKDevelopers&sc_segment=ASKDevelopers&mkt_tok=eyJpIjoiTlRBd016UTFZems0TnpVMCIsInQiOiJYeG9WdjVhSmgyRXdPTWhNbElQbmRCbzcxZlg5R01FaGRSR0VLdElxRXVGWTk0V1dha01nSmdDZWduc2hQRVI3b2VCeTJPYkladW5JdGtqMmVCSmp5NkNSd0I4XC9uclg5OUJwOUh5eUVuZ2tHYkFMUDlkbXhKcW1SbVdyQjJGU04ifQ%3D%3D . We are not able to find the v1 state equivalent for v2 version. How do we migrate the which is handling state to v2.
Ex:
import Alexa from 'alexa-sdk'
yesHandler = Alexa.CreateStateHandler('_YES', {
'AMAZON.YesIntent'() {
}
}
How do we migrate it to V2 version.