def verify_downloaded_files()

in build.py [0:0]


def verify_downloaded_files(integrations_dir, expected_files):
    """Verify that all expected files have been downloaded."""
    downloaded_files = set(file.name for file in integrations_dir.iterdir())
    missing_files = [file.name for file in expected_files if file.name not in downloaded_files]
    
    if missing_files:
        logging.warning(f"Missing files: {missing_files}")
    else:
        logging.info("All files have been successfully downloaded and verified.")