// Common Types for Actions and PDF Responses type ActionResponse = { data: { id: string type: string attributes: Record relationships?: Record } included?: Array<{ id: string type: string attributes: Record relationships?: Record }> } type PdfResponse = { data: string | Blob headers?: Record }