-
Notifications
You must be signed in to change notification settings - Fork 662
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
more tightly specifies OAuthAccessArguments and OAuthTokenArguments #503
Conversation
src/methods.ts
Outdated
client_secret: string; | ||
code: string; | ||
redirect_uri?: string; | ||
single_channel?: 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.
i'm not 100% sure if this is a boolean, or if it should be '0' | '1'
. waiting for confirmation.
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.
it does not support boolean.
Currently it’s implemented to support specifically
1
. Anything else will resolve to booleanfalse
behind the scenes.
Codecov Report
@@ Coverage Diff @@
## master #503 +/- ##
=======================================
Coverage 81.32% 81.32%
=======================================
Files 6 6
Lines 241 241
Branches 37 37
=======================================
Hits 196 196
Misses 29 29
Partials 16 16
Continue to review full report at Codecov.
|
FYI: the |
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
Summary
fixes #481
Requirements (place an
x
in each[ ]
)