@bloom-housing/core
Advanced tools
Comparing version 0.2.8 to 0.2.11
{ | ||
"name": "@bloom-housing/core", | ||
"version": "0.2.8", | ||
"version": "0.2.11", | ||
"description": "Shared types for Bloom affordable housing system", | ||
@@ -47,3 +47,3 @@ "homepage": "https://github.com/bloom-housing/bloom/tree/master/shared/core", | ||
}, | ||
"gitHead": "a137ce7d9d6c5c07912ccb65300d62384c1b16ab" | ||
"gitHead": "b9cc1febd23e6c2803bd0bd4c59278204c8c6970" | ||
} |
export interface Address { | ||
placeName: string | ||
placeName?: string | ||
city: string | ||
@@ -7,2 +7,3 @@ county: string | ||
street: string | ||
street2?: string | ||
zipCode: string | ||
@@ -9,0 +10,0 @@ latitude: number |
@@ -22,2 +22,22 @@ import { Unit, UnitsSummarized } from "./units" | ||
export interface HouseholdMember { | ||
address: Address | ||
id?: number | ||
firstName: string | ||
middleName: string | ||
lastName: string | ||
birthMonth: number | ||
birthDay: number | ||
birthYear: number | ||
emailAddress: string | ||
noEmail: boolean | ||
phoneNumber: string | ||
phoneNumberType: string | ||
noPhone: boolean | ||
sameAddress?: boolean | ||
relationship?: string | ||
workInRegion?: boolean | ||
workAddress?: Address | ||
} | ||
export interface Listing { | ||
@@ -24,0 +44,0 @@ acceptingApplicationsAtLeasingAgent: boolean |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6544
203