Hi! I noticed our codebase developed a bug, and I believe it's because the shape of the hint sent to beforeBreadcrumb( ) changed. I understand that the hint is a pretty loose shape
export interface BreadcrumbHint {
[key: string]: any;
}
However, in the past I noticed that for "fetch" hints, the hint had a input property , and the input was an array. the second item in the input array were the headers for the fetch request, and the headers were an array.
After some console.logging, it looks like this is no longer the case and headers is an object now.
Are there docs or source code where I can verify this? thanks!