Skip to content

Commit

Permalink
- added Amalgamation Types enum
Browse files Browse the repository at this point in the history
- added amalgamation filing code
- added amalgamation filing name
- added amalgamation filing type
  • Loading branch information
severinbeauvais committed Nov 16, 2023
1 parent be6f726 commit dabdd14
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/enums/amalgamation-types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export enum AmalgamationTypes {
REGULAR = 'regular',
VERTICAL = 'vertical',
HORIZONTAL = 'horizontal'
}
5 changes: 3 additions & 2 deletions src/enums/filing-codes.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/** Filing codes to send to pay. */
/** Filing codes to send to Pay API. */
export enum FilingCodes {
ADDRESS_CHANGE_BC = 'BCADD', // BCOMP - Change of Address
ADDRESS_CHANGE_OT = 'OTADD', // Others - Change of Address
AGM_EXTENSION = 'AGMDT',
AGM_LOCATION_CHANGE = 'AGMLC',
AFFIDAVIT = 'AFDVT',
ALTERATION = 'ALTER',
ALTERATION_BC_TO_ULC = 'NOALU', // More expensive for BC to ULC.
ALTERATION_BC_TO_ULC = 'NOALU', // different fee for BC to ULC
AMALGAMATION = 'AMALG',
ANNUAL_REPORT_BC = 'BCANN', // BCOMP - Annual Report
ANNUAL_REPORT_OT = 'OTANN', // Others - Annual Report
CHANGE_OF_REGISTRATION = 'FMCHANGE',
Expand Down
1 change: 1 addition & 0 deletions src/enums/filing-names.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export enum FilingNames {
AGM_EXTENSION = 'AGM Extension',
AGM_LOCATION_CHANGE = 'AGM Location Change',
ALTERATION = 'Alteration',
AMALGAMATION = 'Amalgamation Application',
ANNUAL_REPORT = 'Annual Report',
CHANGE_OF_ADDRESS = 'Address Change',
CHANGE_OF_COMPANY_INFO = 'Change of Company Information',
Expand Down
1 change: 1 addition & 0 deletions src/enums/filing-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export enum FilingTypes {
ALTERATION = 'alteration',
AGM_EXTENSION = 'agmExtension',
AGM_LOCATION_CHANGE = 'agmLocationChange',
AMALGAMATION = 'amalgamation',
ANNUAL_REPORT = 'annualReport',
CHANGE_OF_ADDRESS = 'changeOfAddress',
CHANGE_OF_COMPANY_INFO = 'changeOfCompanyInfo', // a type of alteration
Expand Down
1 change: 1 addition & 0 deletions src/enums/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export * from './account-types'
export * from './action-types'
export * from './amalgamation-types'
export * from './approval-types'
export * from './association-types'
export * from './correct-name-options'
Expand Down

0 comments on commit dabdd14

Please sign in to comment.