in lib/common/utils/reports/adsReportUtilities.util.ts [20:27]
async getResponse(): Promise<any> {
this.schedule();
while (await this.shouldWaitMore()) {
new Promise((resolve) => setTimeout(resolve, this.WAIT_PERIOD));
}
return this.getReport();
}