type File = {
id: Pointer
; name: string
; sizeInBytes: number
; fileExtension: string
; url: string
}
type UploadSession = {
uploadSessionId: string
}
type FileChunk = {
fileId: string
; uploadSessionId: string
; chunkId: number
; chunkHash: string
}