Getting the new version number from: UpdateCheckResultSuccess

After update a new version using EAS update,
I’m getting the new version but I can’t find the new version number inside the returned manifest.
I want to get the new version number from my “version” prop inside my app.json file.
(Not the versions of the platforms: buildNumber(iOS) or versionCode(Android))
This is my code:
const update = await Updates.checkForUpdateAsync();
if (update[‘isAvailable’]) {
//Here is my problem - The newVersionNumber is undefined
let newVersionNumber = update.manifest.version;
}

I’m using managed workflow
EXPO SDK version 48