-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow to filter on different subsidy programs
- Loading branch information
1 parent
e5550c5
commit 61d377e
Showing
4 changed files
with
47 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
export enum AssetSubsidyType { | ||
FULLY_SUBSIDIZED = 'fullySubsidized', | ||
SUBSIDIZED = 'Subsidized', | ||
FULLY_SUBSIDIZED = 'fullySubsidized', | ||
PARTIALLY_SUBSIDIZED = 'partiallySubsidized', | ||
NOT_SUBSIDIZED = 'notSubsidized', | ||
SECTION_8 = 'section8', | ||
SECTION_42 = 'section42', | ||
OTHER_SUBSIDY = 'otherSubsidy', | ||
ALL = 'all', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters