Progression #

Read more about the Progression system in Hiro here.

Get all progressions #

Get progressions.

1
2
const progressionList = await hiroClient.progressionsGet(session);
console.log(progressionsList);

Purchase progression #

Purchase a progression for permanent unlock, if supported.

1
2
3
4
const request = new ProgressionPurchaseRequest();
request.id = "progression_1";

const progressionList = await hiroClient.progressionsPurchase(session, request);