export type ServiceErrorResponseDto = { error: { code: Z; message: string; }; }; export type ServiceResponseDto = T & { error: undefined; } | ServiceErrorResponseDto;