Skip to content

Commit

Permalink
add change NR types
Browse files Browse the repository at this point in the history
  • Loading branch information
eve-git committed Nov 6, 2024
1 parent 638ac3e commit 657bce8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions api/namex/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,7 @@ class LegacyEntityTypes:
('UC', EntityTypes.UNLIMITED_LIABILITY_COMPANY.value, RequestAction.CNV.value, True),
('UC', EntityTypes.UNLIMITED_LIABILITY_COMPANY.value, RequestAction.RESUBMIT.value),
('CUL', EntityTypes.UNLIMITED_LIABILITY_COMPANY.value, RequestAction.CHG.value, True),
('CUL', EntityTypes.UNLIMITED_LIABILITY_COMPANY.value, RequestAction.RESUBMIT.value, True),
('ULCT', EntityTypes.UNLIMITED_LIABILITY_COMPANY.value, RequestAction.MVE.value, True),
('ULCT', EntityTypes.UNLIMITED_LIABILITY_COMPANY.value, RequestAction.RESUBMIT.value),
('RUL', EntityTypes.UNLIMITED_LIABILITY_COMPANY.value, RequestAction.REST.value, True),
Expand Down Expand Up @@ -451,6 +452,18 @@ class LegacyEntityTypes:
('BECR', EntityTypes.CORPORATION.value, RequestAction.RESUBMIT.value),
('ULCB', EntityTypes.CORPORATION.value, RequestAction.CNV.value, True),
('ULCB', EntityTypes.CORPORATION.value, RequestAction.RESUBMIT.value),

('CCR', EntityTypes.CONTINUE_IN.value, RequestAction.CHG.value, True),
('CCR', EntityTypes.CONTINUE_IN.value, RequestAction.RESUBMIT.value),

('CCC', EntityTypes.CONTINUE_IN_CCC.value, RequestAction.CHG.value, True),
('CCC', EntityTypes.CONTINUE_IN_CCC.value, RequestAction.RESUBMIT.value),

('CUL', EntityTypes.CONTINUE_IN_CUL.value, RequestAction.CHG.value, True),
('CUL', EntityTypes.CONTINUE_IN_CUL.value, RequestAction.RESUBMIT.value, True),

('BEC', EntityTypes.CONTINUE_IN_CBEN.value, RequestAction.CHG.value, True),
('BEC', EntityTypes.CONTINUE_IN_CBEN.value, RequestAction.RESUBMIT.value),

('RCR', EntityTypes.CONTINUE_IN.value, RequestAction.REST.value, True),
('RCR', EntityTypes.CONTINUE_IN.value, RequestAction.REH.value),
Expand Down

0 comments on commit 657bce8

Please sign in to comment.