Skip to content

Commit

Permalink
Update custom project features piece exporter to include min and max …
Browse files Browse the repository at this point in the history
…amount values
  • Loading branch information
yulia-bel committed Oct 16, 2023
1 parent 539ae99 commit b5ca654
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ type ProjectCustomFeaturesSelectResult = {
list_property_keys: string[];
is_legacy: boolean;
tag: string;
amount_min: number | null;
amount_max: number | null;
};

type FeaturesDataSelectResult = {
Expand Down Expand Up @@ -79,6 +81,8 @@ export class ProjectCustomFeaturesPieceExporter
'f.creation_status',
'f.list_property_keys',
'f.is_legacy',
'f.min_amount',
'f.max_amount',
'pft.tag',
])
.from('features', 'f')
Expand Down

0 comments on commit b5ca654

Please sign in to comment.