Skip to content

Commit

Permalink
fixed rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JazzarKarim committed Apr 22, 2024
1 parent eb1c16a commit fe72e66
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "business-edit-ui",
"version": "4.8.0",
"version": "4.9.0",
"private": true,
"appName": "Edit UI",
"sbcName": "SBC Common Components",
Expand Down
7 changes: 4 additions & 3 deletions src/mixins/filing-template-mixin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { Action, Getter } from 'pinia-class'
import { cloneDeep } from 'lodash'
import { DateMixin } from '@/mixins/'
import { AddressesIF, AlterationFilingIF, BusinessInformationIF, CertifyIF, CoopAlterationIF,
CorrectionInformationIF, CorrectionFilingIF, CourtOrderIF, EffectiveDateTimeIF, EntitySnapshotIF,
ChgRegistrationFilingIF, ConversionFilingIF, NameTranslationIF, OrgPersonIF, RestorationFilingIF,
RestorationStateIF, SpecialResolutionFilingIF, StateFilingRestorationIF, RulesMemorandumIF }
CorrectionInformationIF, CorrectionFilingIF, CourtOrderIF, EffectiveDateTimeIF, EmptyBusinessInfo,
EntitySnapshotIF, ChgRegistrationFilingIF, ConversionFilingIF, NameTranslationIF, OrgPersonIF,
RestorationFilingIF, RestorationStateIF, SpecialResolutionFilingIF, StateFilingRestorationIF, RulesMemorandumIF }
from '@/interfaces/'
import { CompletingPartyIF, ContactPointIF, NaicsIF, NameRequestIF, ShareClassIF, SpecialResolutionIF,
StaffPaymentIF } from '@bcrs-shared-components/interfaces/'
Expand Down Expand Up @@ -60,6 +60,7 @@ export default class FilingTemplateMixin extends DateMixin {
@Getter(useStore) getOriginalNrNumber!: string
@Getter(useStore) getRestoration!: RestorationStateIF
@Getter(useStore) getShareClasses!: ShareClassIF[]
@Getter(useStore) getSnapshotNaics!: NaicsIF
@Getter(useStore) getSpecialResolution!: SpecialResolutionIF
@Getter(useStore) getSpecialResolutionMemorandum!: RulesMemorandumIF
@Getter(useStore) getSpecialResolutionRules!: RulesMemorandumIF
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/filing-template-mixin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ describe('Change of Registration Filing', () => {
})

it('correctly builds a change of registration filing', () => {
store.stateModel.tombstone.businessId = 'BC1234567'
store.stateModel.tombstone.businessId = 'FM1234567'
store.stateModel.tombstone.filingType = FilingTypes.CHANGE_OF_REGISTRATION
store.stateModel.tombstone.entityType = CorpTypeCd.SOLE_PROP
store.stateModel.completingParty = {
Expand All @@ -175,7 +175,7 @@ describe('Change of Registration Filing', () => {
addressCountry: 'CA'
}
}
store.stateModel.nameRequestLegalName = 'SomeMockBusiness'
store.stateModel.nameRequestLegalName = 'My Alternate Name'
store.stateModel.entitySnapshot = {
businessInfo: {
foundingDate: 'Jan 01, 2000',
Expand Down

0 comments on commit fe72e66

Please sign in to comment.