feat: look for email and phone number for contact

This commit is contained in:
Aaron Yarborough 2025-01-15 12:02:55 +00:00
parent 5f82884c62
commit b44fd20e33
2 changed files with 10 additions and 3 deletions

2
package-lock.json generated
View file

@ -1,10 +1,12 @@
{
"name": "or-uk-data-quality-checker",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "or-uk-data-quality-checker",
"version": "1.0.0",
"dependencies": {
"commander": "^12.1.0"
}

View file

@ -1,5 +1,7 @@
const hasValidId = (s) =>
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i.test(s.id.trim());
// const hasValidId = (s) =>
// /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i.test(s.id.trim());
const hasValidId = (s) => !!s.id?.trim();
const hasValidName = (s) => typeof s.name === "string" && s.name.length > 0;
@ -16,7 +18,10 @@ const hasValidUrl = (s) => {
const hasValidOrganisation = (s) => !!s.organization?.id && !!s.organization?.name;
const hasValidContact = (s) => !!s.email?.length > 0;
const hasValidContact = (s) =>
s.email?.length > 0 ||
(s.contacts?.[0]?.phones?.some(x => !!x.number) ?? false);
const hasValidStatus = (s) => s.status === "active";