From d2cd12c6cd5157d0305717593f49fe965d3c8953 Mon Sep 17 00:00:00 2001 From: Dhruv Bhanushali Date: Sat, 13 Jan 2024 14:30:25 +0400 Subject: [PATCH] Add two address fields to bio --- packages/recivi/src/models/bio/bio.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages/recivi/src/models/bio/bio.ts b/packages/recivi/src/models/bio/bio.ts index 7c31971..31cc751 100644 --- a/packages/recivi/src/models/bio/bio.ts +++ b/packages/recivi/src/models/bio/bio.ts @@ -1,6 +1,7 @@ import type { Skill } from '@/models/bio/skill' import type { Profile } from '@/models/bio/profile' import type { Contact } from '@/models/base/contact' +import type { Address } from '@/models/base/address' interface ExtendedBio { /** @@ -47,6 +48,14 @@ interface ExtendedBio { * a list of skills that the person has */ skills: Skill[] + /** + * current location where the person resides + */ + residence: Address + /** + * location where the person comes from or holds citizenship of + */ + origin: Address } /**