Description
Send a request to get the current version of the installed extension
Usage
await sdk.versionAndWait();Response
request: BaseRequest;
// request structure will vary depending on the type of the requestresponse: BaseResponse;
// response structure will vary depending on the type of the requestcreatedAt: number; // unix;resolvedAt: number; // unix;Example
let {
request,
response,
createdAt,
resolvedAt } = await sdk.versionAndWait();
console.log( request, response, createdAt, resolvedAt );