Skip to content
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

docs: Add documentation for FirestoreDataConverter #1059

Merged
merged 2 commits into from
Apr 30, 2020
Merged

Conversation

thebrianchen
Copy link

Looking at the docs, I realized that FirestoreDataConverter was nowhere to be found since I didn't include it in index.ts. I added links to it in each the withConverter @param definitions as well. However, I'm not sure how to properly include the method docs for to/fromFirestore in JSdoc without actually writing out code for the interface. I included the methods as @property, which isn't ideal but is better that nothing.

@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Apr 30, 2020
@codecov
Copy link

codecov bot commented Apr 30, 2020

Codecov Report

Merging #1059 into node10 will increase coverage by 0.00%.
The diff coverage is 99.11%.

Impacted file tree graph

@@           Coverage Diff           @@
##           node10    #1059   +/-   ##
=======================================
  Coverage   98.63%   98.64%           
=======================================
  Files          27       27           
  Lines       17460    17509   +49     
  Branches     1381     1381           
=======================================
+ Hits        17222    17271   +49     
  Misses        235      235           
  Partials        3        3           
Impacted Files Coverage Δ
dev/src/bulk-writer.ts 98.78% <98.78%> (ø)
dev/src/index.ts 98.38% <98.85%> (+0.05%) ⬆️
dev/src/backoff.ts 100.00% <100.00%> (ø)
dev/src/document.ts 98.93% <100.00%> (ø)
dev/src/rate-limiter.ts 100.00% <100.00%> (ø)
dev/src/reference.ts 99.92% <100.00%> (+<0.01%) ⬆️
dev/src/types.ts 99.70% <100.00%> (ø)
dev/src/write-batch.ts 100.00% <100.00%> (ø)
... and 1 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 955f858...5bb0af9. Read the comment docs.

@@ -576,7 +575,8 @@ export class DocumentReference<T = DocumentData> implements Serializable {
* post.someNonExistentProperty; // TS error
* }
*
* @param converter Converts objects to and from Firestore.
* @param {FirestoreDataConverter=} converter Converts objects to and from
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Drop = since it is not optional.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.

@@ -2176,7 +2176,8 @@ export class Query<T = DocumentData> {
* post.someNonExistentProperty; // TS error
* }
*
* @param converter Converts objects to and from Firestore.
* @param {FirestoreDataConverter=} converter Converts objects to and from
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Drop = since it is not optional.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.

@@ -2450,7 +2451,8 @@ export class CollectionReference<T = DocumentData> extends Query<T> {
* post.someNonExistentProperty; // TS error
* }
*
* @param converter Converts objects to and from Firestore.
* @param {FirestoreDataConverter=} converter Converts objects to and from
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Drop = since it is not optional.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.

@thebrianchen thebrianchen merged commit 6aae79d into node10 Apr 30, 2020
@thebrianchen thebrianchen deleted the bc/conv-docs branch April 30, 2020 17:41
schmidt-sebastian added a commit that referenced this pull request Jun 24, 2020
* fix!: mark v1beta1 client as deprecated (#937)

* feat!: use QueryDocumentSnapshot in FirestoreDataConverter (#965)

* deps: update to gts 2.x (#1013)

* chore!: update settings for Node 10 (#1019)

* deps: drop through2 (#1014)

* feat: support BigInt (#1016)

* fix: make update.sh work on Linux (#1043)

* fix: only use BigInt in BigInt system test (#1044)

* fix: make pbjs compile admin proto again (#1045)

* Add BulkWriter (#1055)

* docs: Add documentation for FirestoreDataConverter (#1059)

* chore: enforce return types (#1065)

* fix: add generic to Firestore.getAll() (#1066)

* chore: remove internal WriteOp (#1067)

* chore: add linter checks for it|describe.only (#1068)

* fix: handle terminate in BulkWriter (#1070)

* chore: run template copying last in synthtool (#1071)

* feat: Firestore Bundles implementation (#1078)

* feat: add support for set() with SetOptions when using FirestoreDataConverter (#1087)

* feat: Add totalDocuments and totalBytes to bundle metadata. (#1085)

* feat: Add totalDocuments and totalBytes to bundle metadata.

* fix: Better comment

* fix: Better testing.

* fix: Improve metadata testing.

* fix: incomplete expect in rate-limiter test (#1092)

* Remove BatchWrite proto, fix conformance tests

* chore: use public API types internally (#1100)

* feat: add Partition and BatchWrite protos (#1110)

* fix: remove GCF transaction fallback (#1112)

* fix: add BulkWriter integration tests, java backport changes, delete fix (#1117)

* chore: merge master (#1218)

* chore: add eslint check for console.log statements (#1229)

* fix: another attempt at fixing the flaky BulkWriter test (#1228)

* Fix comment

* Renames

* Test fix

* Fix unit tests

Co-authored-by: Brian Chen <chenbrian@google.com>
Co-authored-by: wu-hui <53845758+wu-hui@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants