Because endpoints like /api/v1/jobs/{id}/metrics, /api/v1/entrypoints/{id}/queues, and /api/v1/entrypoints/{id}/tags exist, the client's typing should be updated to be able to handle list[dict[str, Any]] types, instead of just dict[str, Any].
This can potentially be done by adding an additional type variable T2, such that T1 = dict[str, Any] and T2 = list[dict[str, Any]] for the JSON client, and T1 == T2 for the Response client.