-
Notifications
You must be signed in to change notification settings - Fork 934
Fix ToTP typings issue #7179
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
Fix ToTP typings issue #7179
Conversation
🦋 Changeset detectedLatest commit: c5513a6 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
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
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, thanks!
Size Report 1Affected ProductsNo changes between base commit (8c9f8c8) and merge commit (166e89c).Test Logs |
Size Analysis Report 1Affected ProductsNo changes between base commit (8c9f8c8) and merge commit (166e89c).Test Logs |
LGTM |
The const enum is internal and not exported with public types, causing an error since it's referenced.
I believe other publicly exported auth classes avoid this by following the pattern here:
firebase-js-sdk/packages/auth/src/platform_browser/providers/phone.ts
Line 55 in 1d5646e
So I've done the same for
TotpMultiFactorGenerator
.Fixes #7174