Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

20148 updated to use the shared nameType enum #643

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "business-filings-ui",
"version": "8.0.1",
"version": "8.0.2",
"private": true,
"appName": "Filings UI",
"sbcName": "SBC Common Components",
Expand All @@ -21,7 +21,7 @@
"@bcrs-shared-components/court-order-poa": "2.1.4",
"@bcrs-shared-components/date-picker": "1.2.39",
"@bcrs-shared-components/document-delivery": "1.2.1",
"@bcrs-shared-components/enums": "1.1.7",
"@bcrs-shared-components/enums": "1.1.9",
"@bcrs-shared-components/expandable-help": "1.0.1",
"@bcrs-shared-components/folio-number-input": "1.1.18",
"@bcrs-shared-components/interfaces": "1.1.2",
Expand Down
3 changes: 1 addition & 2 deletions src/enums/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export * from './filingStatus'
export * from './filingSubTypes'
export * from './nameRequestStates'
export * from './nameRequestTypes'
export * from './nameType'
export * from './nigsMessage'
export * from './pageSizes'
export * from './partyTypes'
Expand All @@ -23,5 +22,5 @@ export * from './affiliationInvitation'

// external enums
export { CorpTypeCd, CorpClass } from '@bcrs-shared-components/corp-type-module'
export { AccountTypes, AmalgamationTypes, FilingCodes, FilingNames, FilingTypes, StaffPaymentOptions }
export { AccountTypes, AmalgamationTypes, FilingCodes, FilingNames, FilingTypes, NameTypes, StaffPaymentOptions }
from '@bcrs-shared-components/enums'
4 changes: 0 additions & 4 deletions src/enums/nameType.ts

This file was deleted.

4 changes: 2 additions & 2 deletions src/interfaces/business-state-interfaces.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { EntityState, CorpTypeCd, FilingSubTypes, FilingTypes, NameType } from '@/enums'
import { EntityState, CorpTypeCd, FilingSubTypes, FilingTypes, NameTypes } from '@/enums'
import { AmalgamationTypes } from '@bcrs-shared-components/enums'
import { IsoDatePacific, ApiDateTimeUtc } from '@bcrs-shared-components/interfaces'

Expand All @@ -24,7 +24,7 @@ export interface AlternateNameIF {
name: string
nameRegisteredDate: ApiDateTimeUtc
nameStartDate: IsoDatePacific
nameType: NameType
nameType: NameTypes
}

export interface AmalgamatedIntoIF {
Expand Down
Loading