Skip to content

Commit

Permalink
Add two address fields to bio
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb committed Jan 13, 2024
1 parent d61ac08 commit d2cd12c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/recivi/src/models/bio/bio.ts
Original file line number Diff line number Diff line change
@@ -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 {
/**
Expand Down Expand Up @@ -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
}

/**
Expand Down

0 comments on commit d2cd12c

Please # to comment.