I have a script I use to run the pagespeed audit. one of the valuable items we pull are the resource summaries (How many font files there are on a page and how many bytes of font files there are, for example). This is found under the "resource-summary" audit in lighthouse.
However, sometime in the past month (the last time I tried using script was 7/17 and it worked then) the API changed and the resource-summary information is not there anymore.
For example, if I wanted to get the number of font resources I could extract this path:
output['lighthouseResult']['audits']['resource-summary']['details']['items'][4]['requestCount']
And to get the size of the files:
output['lighthouseResult']['audits']['resource-summary']['details']['items'][4]['transferSize']
However, the resource-summary audit does not appear to exist. has anyone figured out why this was removed?