class AdapterMetadata:
"""Metadata about the adapter"""
name: str
version: str
supported_library_versions: List[str]
description: str
We are defining adapter metadata class as above, but maintaining supported_library_versions could be quite tedious. Maybe do we should change this parameter to minimal_supported_library_version and accept all further versions?