I'm using a library which, for upload, gives me a progress indication callback as: ```ts export interface AddProgressFn { (bytes: number, path?: string): void } ``` I want to report this back from a mutation. How can I do that?