-
Notifications
You must be signed in to change notification settings - Fork 150
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: Remove @internal annotation from snapshot_ #1728
fix: Remove @internal annotation from snapshot_ #1728
Conversation
c3ade40
to
982e90b
Compare
Is there an appropriate person I should ping for review? 🐼 |
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. I'm not seeing nodejs-firestore make use of the @internal
flag anyway. Perhaps something downstream is honoring the internal flag. The @private
annotation and underscore in the name should convey the nature of this member, as something not for public consumption.
This commit removes the @internal annotation from snapshot_, and fixes firebase/firebase-functions-test#87. `snapshot_` is currently referenced [here](https://github.com/firebase/firebase-functions-test/blob/master/src/providers/firestore.ts#L99). [More context here]( firebase/firebase-functions-test#87) I'm happy to work through better alternatives too.
faefe03
to
5930446
Compare
This commit removes the @internal annotation from snapshot_,
and fixes firebase/firebase-functions-test#87.
snapshot_
is currently referenced here.More context here
I'm happy to work through better alternatives too.
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
Fixes firebase/firebase-functions-test#79 🦕