diff --git a/src/pim-types.ts b/src/pim-types.ts index 9f30b85..ea0f846 100644 --- a/src/pim-types.ts +++ b/src/pim-types.ts @@ -389,4 +389,8 @@ export class ContactType implements PimType { const kind = this.comp.getFirstPropertyValue("kind"); return ["group", "organization"].includes(kind); } + + get members() { + return this.comp.getAllProperties("member").map((prop) => prop.getFirstValue().replace("urn:uuid:", "")); + } }