I am a total noob to Node-Red (and node in general), so forgive me if the issue is obvious. I own an Obi 202 ATA that has SIP credentials for my home phone. I need to record all calls (legal here in Canada). I found this script. I also have an Odroid HC4 with OMV on Debian Bullseye, and I used a Portainer stack to install Node-Red on Docker:
---
version: "2"
services:
node-red:
image: nodered/node-red
container_name: node-red
volumes:
- /srv/dev-disk-by-uuid-088953ed-6887-487c-bd44-d5f86dc93383/AppData/Nodered:/data
ports:
- 1880:1880
restart: unless-stopped
I navigated to the Node-Red GUI on port 1880 and then tried to import the script via clipboard, but that's when I get this error:

It says:
Imported unrecognized types:
- uuid
- www-request
What happened, and how do I make this work? I don't understand what this error means, nor how to fix it. My Obi 202 is on the internal IP address of 192.168.1.6 and my Odroid HC4 is on the internal IP address 192.168.1.38. The plan is to record calls from the Obi 202 and save them on the Odroid HC4, with the script running from the Odroid HC4.