Skip to content

Commit

Permalink
24107 Added designations for continued in business types (bcgov#779)
Browse files Browse the repository at this point in the history
* - app version = 5.5.10
- added designations for continued in business types (C, CBEN, CCC, CUL)

* - imported latest shared enums

---------

Co-authored-by: Severin Beauvais <severin.beauvais@gov.bc.ca>
  • Loading branch information
severinbeauvais and Severin Beauvais authored Oct 29, 2024
1 parent 628f089 commit d38a82e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 16 deletions.
4 changes: 2 additions & 2 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "name-request",
"version": "5.5.9",
"version": "5.5.10",
"private": true,
"appName": "Name Request UI",
"sbcName": "SBC Common Components",
Expand All @@ -17,7 +17,7 @@
"@babel/compat-data": "^7.24.4",
"@bcrs-shared-components/breadcrumb": "2.1.24",
"@bcrs-shared-components/corp-type-module": "1.0.15",
"@bcrs-shared-components/enums": "1.1.7",
"@bcrs-shared-components/enums": "1.1.13",
"@bcrs-shared-components/folio-number-input": "^1.1.44",
"@bcrs-shared-components/genesys-web-message": "1.0.0",
"@bcrs-shared-components/interfaces": "1.0.67",
Expand Down
26 changes: 12 additions & 14 deletions app/pnpm-lock.yaml

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

17 changes: 17 additions & 0 deletions app/src/list-data/designations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ const CooperativeDesignations: DesignationI = {

export const Designations = {
BC: CorporateDesignations,
C: CorporateDesignations, // continued in BC Limited Company
CBEN: CorporateDesignations, // continued in Benefit Company
CC: {
words: [
'CCC',
Expand All @@ -35,8 +37,23 @@ export const Designations = {
],
end: true
},
CCC: { // continued in Community Contribution Company
words: [
'CCC',
'COMMUNITY CONTRIBUTION COMPANY',
...CorporateDesignations.words
],
end: true
},
CP: CooperativeDesignations,
CR: CorporateDesignations,
CUL: { // continued in Unlimited Liability Company
words: [
'ULC',
'UNLIMITED LIABILITY COMPANY'
],
end: true
},
DBA: {
words: [],
end: false
Expand Down

0 comments on commit d38a82e

Please sign in to comment.