-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(app): add value key to RTP type #14692
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
thank you for updating
37a21e8
to
735988f
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## edge #14692 +/- ##
==========================================
- Coverage 67.56% 67.35% -0.21%
==========================================
Files 2521 2485 -36
Lines 72251 71342 -909
Branches 9311 9012 -299
==========================================
- Hits 48815 48053 -762
+ Misses 21240 21146 -94
+ Partials 2196 2143 -53
Flags with carried forward coverage won't be shown. Click here to find out more.
|
@@ -621,6 +621,7 @@ interface BaseRunTimeParameter { | |||
variableName: string | |||
description: string | |||
type: RunTimeParameterType | |||
value: unknown |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe
value: unknown | |
value: string | number | boolean |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shlokamin mentioned in standup that the value should be type any
or unknown
(but unknown
is better) since i guess technically, a user could specify anything for their parameters. The value type in the choice
object is also unknown
for the same reason.
closes AUTH-216
Overview
Add the top level value key to the run time parameters type.
Test Plan
Changelog
Review requests
see test plan
Risk assessment
low