diff --git a/src/pim-types.ts b/src/pim-types.ts index d6ccbff..4102988 100644 --- a/src/pim-types.ts +++ b/src/pim-types.ts @@ -381,6 +381,10 @@ export class ContactType implements PimType { return this.comp.getFirstPropertyValue("n"); } + get bday() { + return this.comp.getFirstPropertyValue("bday"); + } + get group() { const kind = this.comp.getFirstPropertyValue("kind"); return kind in ["group", "organization"];