// Tax Types type TaxAttributes = { name: string rate?: number archived?: boolean created_at?: string updated_at?: string } type TaxData = { id?: string type: 'taxes' attributes: TaxAttributes } type TaxRequest = { data: TaxData } type TaxResponse = { data: { id: string type: 'taxes' attributes: TaxAttributes } included?: Array<{ id: string type: string attributes: Record relationships?: Record }> } type TaxIndexResponse = { data: Array<{ id: string type: 'taxes' attributes: TaxAttributes }> included?: Array<{ id: string type: string attributes: Record relationships?: Record }> meta?: { current_page?: number total_pages?: number total_count?: number } } type TaxQueryParams = { sort?: string filter?: Record include?: string }