Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 22e25b3

Browse files
Merge pull request #4773 from benjamin-bc-gov/33534_common_addition
new common fillngs added
2 parents 1a028c3 + 5a60fa7 commit 22e25b3

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

python/common/business-registry-model/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "business-model"
3-
version = "3.4.14"
3+
version = "3.4.15"
44
description = ""
55
authors = [
66
{name = "thor",email = "[email protected]"}

python/common/business-registry-model/src/business_model/models/types/filings.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ class FilingTypes(BaseEnum):
1919
CEASERECEIVER = 'ceaseReceiver'
2020
CHANGEOFADDRESS = 'changeOfAddress'
2121
CHANGEOFDIRECTORS = 'changeOfDirectors'
22+
CHANGEOFLIQUIDATORS = 'changeOfLiquidators'
2223
CHANGEOFNAME = 'changeOfName'
2324
CHANGEOFOFFICERS = 'changeOfOfficers'
25+
CHANGEOFRECEIVERS = 'changeOfReceivers'
2426
CHANGEOFREGISTRATION = 'changeOfRegistration'
2527
CONSENTAMALGAMATIONOUT = 'consentAmalgamationOut'
2628
CONSENTCONTINUATIONOUT = 'consentContinuationOut'
@@ -53,9 +55,11 @@ class FilingSubTypes(BaseEnum):
5355
class DissolutionSubTypes(FilingSubTypes):
5456
"""Enum for Dissolution Types."""
5557

56-
VOLUNTARY = 'voluntary'
5758
ADMINISTRATIVE = 'administrative'
59+
COURT_ORDERED_LIQUIDATION = 'courtOrderedLiquidation'
5860
INVOLUNTARY = 'involuntary'
61+
VOLUNTARY = 'voluntary'
62+
VOLUNTARY_LIQUIDATION = 'voluntaryLiquidation'
5963

6064
class RestorationSubTypes(FilingSubTypes):
6165
"""Enum for Restoration Types."""

0 commit comments

Comments
 (0)