Skip to content

Commit

Permalink
Added the alternate name interface
Browse files Browse the repository at this point in the history
  • Loading branch information
JazzarKarim committed Apr 18, 2024
1 parent ed4004d commit 00214a4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/interfaces/alternate-name-interface.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { CorpTypeCd } from '@bcrs-shared-components/corp-type-module'
import { NameTypes } from '@bcrs-shared-components/enums'
import { ApiDateTimeUtc, IsoDatePacific } from '@bcrs-shared-components/interfaces'

export interface AlternateNameIF {
entityType: CorpTypeCd
identifier: string
name: string
nameRegisteredDate: ApiDateTimeUtc
nameStartDate: IsoDatePacific
nameType: NameTypes
}
1 change: 1 addition & 0 deletions src/interfaces/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export * from './actionable-item-interface'
export * from './addresses-interface'
export * from './alteration-interface'
export * from './alternate-name-interface'
export * from './business-interface'
export * from './business-lookup-interfaces'
export * from './breadcrumb-interface'
Expand Down

0 comments on commit 00214a4

Please sign in to comment.