I realise this thread is about 3 weeks old now, but I note that the methods of the YandexSDK
class do not return anything, so they cannot be awaited. Async methods need to either return a Promise, or use the async
keyword. Otherwise what happens is awaiting them will complete immediately, but the work is really still continuing in the background.