├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── .OwlBot.lock.yaml ├── .OwlBot.yaml ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_request.yml │ ├── feature_request.md │ ├── feature_request.yml │ ├── processs_request.md │ ├── question.md │ ├── questions.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-approve.yml ├── auto-label.yaml ├── flakybot.yaml ├── generated-files-bot.yml ├── release-please.yml ├── release-trigger.yml ├── scripts │ ├── close-invalid-link.cjs │ ├── close-unresponsive.cjs │ ├── fixtures │ │ ├── invalidIssueBody.txt │ │ ├── validIssueBody.txt │ │ └── validIssueBodyDifferentLinkLocation.txt │ ├── package.json │ ├── remove-response-label.cjs │ └── tests │ │ ├── close-invalid-link.test.cjs │ │ └── close-or-remove-response-label.test.cjs ├── sync-repo-settings.yaml └── workflows │ ├── ci.yaml │ ├── issues-no-repro.yaml │ └── response.yaml ├── .gitignore ├── .idea └── runConfigurations │ ├── Conformance_Tests.xml │ ├── System_Test.xml │ └── Unit_Tests.xml ├── .jsdoc.js ├── .kokoro ├── .gitattributes ├── common.cfg ├── continuous │ └── node18 │ │ ├── common.cfg │ │ ├── lint.cfg │ │ ├── samples-test.cfg │ │ ├── system-test.cfg │ │ └── test.cfg ├── docs.sh ├── lint.sh ├── populate-secrets.sh ├── pre-samples-test.sh ├── pre-system-test.sh ├── presubmit │ ├── node18 │ │ ├── common.cfg │ │ ├── samples-test.cfg │ │ ├── system-test.cfg │ │ └── test.cfg │ └── windows │ │ ├── common.cfg │ │ └── test.cfg ├── publish.sh ├── release │ ├── common.cfg │ ├── docs-devsite.cfg │ ├── docs-devsite.sh │ ├── docs.cfg │ ├── docs.sh │ └── publish.cfg ├── samples-test.sh ├── system-test.sh ├── test.bat ├── test.sh └── trampoline.sh ├── .mocharc.js ├── .nycrc ├── .prettierignore ├── .prettierrc.js ├── .readme-partials.yaml ├── .repo-metadata.json ├── .trampolinerc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── api-report └── firestore.api.md ├── dev ├── conformance │ ├── conformance-tests │ │ ├── create-all-transforms.json │ │ ├── create-arrayremove-multi.json │ │ ├── create-arrayremove-nested.json │ │ ├── create-arrayremove-noarray-nested.json │ │ ├── create-arrayremove-noarray.json │ │ ├── create-arrayremove-with-st.json │ │ ├── create-arrayremove.json │ │ ├── create-arrayunion-multi.json │ │ ├── create-arrayunion-nested.json │ │ ├── create-arrayunion-noarray-nested.json │ │ ├── create-arrayunion-noarray.json │ │ ├── create-arrayunion-with-st.json │ │ ├── create-arrayunion.json │ │ ├── create-basic.json │ │ ├── create-complex.json │ │ ├── create-del-noarray-nested.json │ │ ├── create-del-noarray.json │ │ ├── create-empty.json │ │ ├── create-nodel.json │ │ ├── create-nosplit.json │ │ ├── create-special-chars.json │ │ ├── create-st-alone.json │ │ ├── create-st-multi.json │ │ ├── create-st-nested.json │ │ ├── create-st-noarray-nested.json │ │ ├── create-st-noarray.json │ │ ├── create-st-with-empty-map.json │ │ ├── create-st.json │ │ ├── delete-exists-precond.json │ │ ├── delete-no-precond.json │ │ ├── delete-time-precond.json │ │ ├── get-basic.json │ │ ├── listen-add-mod-del-add.json │ │ ├── listen-add-one.json │ │ ├── listen-add-three.json │ │ ├── listen-doc-remove.json │ │ ├── listen-empty.json │ │ ├── listen-filter-nop.json │ │ ├── listen-multi-docs.json │ │ ├── listen-nocurrent.json │ │ ├── listen-nomod.json │ │ ├── listen-removed-target-ids.json │ │ ├── listen-reset.json │ │ ├── listen-target-add-nop.json │ │ ├── listen-target-add-wrong-id.json │ │ ├── listen-target-remove.json │ │ ├── query-arrayremove-cursor.json │ │ ├── query-arrayremove-where.json │ │ ├── query-arrayunion-cursor.json │ │ ├── query-arrayunion-where.json │ │ ├── query-bad-NaN.json │ │ ├── query-bad-null.json │ │ ├── query-cursor-docsnap-order.json │ │ ├── query-cursor-docsnap-orderby-name.json │ │ ├── query-cursor-docsnap-where-eq.json │ │ ├── query-cursor-docsnap-where-neq-orderby.json │ │ ├── query-cursor-docsnap-where-neq.json │ │ ├── query-cursor-docsnap.json │ │ ├── query-cursor-endbefore-empty-map.json │ │ ├── query-cursor-endbefore-empty.json │ │ ├── query-cursor-no-order.json │ │ ├── query-cursor-startafter-docsnap.json │ │ ├── query-cursor-startat-empty-map.json │ │ ├── query-cursor-startat-empty.json │ │ ├── query-cursor-vals-1a.json │ │ ├── query-cursor-vals-1b.json │ │ ├── query-cursor-vals-2.json │ │ ├── query-cursor-vals-docid.json │ │ ├── query-cursor-vals-last-wins.json │ │ ├── query-del-cursor.json │ │ ├── query-del-where.json │ │ ├── query-invalid-operator.json │ │ ├── query-invalid-path-order.json │ │ ├── query-invalid-path-select.json │ │ ├── query-invalid-path-where.json │ │ ├── query-offset-limit-last-wins.json │ │ ├── query-offset-limit.json │ │ ├── query-order.json │ │ ├── query-select-empty.json │ │ ├── query-select-last-wins.json │ │ ├── query-select.json │ │ ├── query-st-cursor.json │ │ ├── query-st-where.json │ │ ├── query-where-2.json │ │ ├── query-where-NaN.json │ │ ├── query-where-null.json │ │ ├── query-where.json │ │ ├── query-wrong-collection.json │ │ ├── set-all-transforms.json │ │ ├── set-arrayremove-multi.json │ │ ├── set-arrayremove-nested.json │ │ ├── set-arrayremove-noarray-nested.json │ │ ├── set-arrayremove-noarray.json │ │ ├── set-arrayremove-with-st.json │ │ ├── set-arrayremove.json │ │ ├── set-arrayunion-merge.json │ │ ├── set-arrayunion-multi.json │ │ ├── set-arrayunion-nested.json │ │ ├── set-arrayunion-noarray-nested.json │ │ ├── set-arrayunion-noarray.json │ │ ├── set-arrayunion-with-st.json │ │ ├── set-arrayunion.json │ │ ├── set-basic.json │ │ ├── set-complex.json │ │ ├── set-del-merge-alone.json │ │ ├── set-del-merge.json │ │ ├── set-del-mergeall.json │ │ ├── set-del-noarray-nested.json │ │ ├── set-del-noarray.json │ │ ├── set-del-nomerge.json │ │ ├── set-del-nonleaf.json │ │ ├── set-del-wo-merge.json │ │ ├── set-empty.json │ │ ├── set-merge-fp.json │ │ ├── set-merge-nested.json │ │ ├── set-merge-nonleaf.json │ │ ├── set-merge-prefix.json │ │ ├── set-merge-present.json │ │ ├── set-merge.json │ │ ├── set-mergeall-empty.json │ │ ├── set-mergeall-nested.json │ │ ├── set-mergeall.json │ │ ├── set-nodel.json │ │ ├── set-nosplit.json │ │ ├── set-special-chars.json │ │ ├── set-st-alone-mergeall.json │ │ ├── set-st-alone.json │ │ ├── set-st-merge-both.json │ │ ├── set-st-merge-nonleaf-alone.json │ │ ├── set-st-merge-nonleaf.json │ │ ├── set-st-merge-nowrite.json │ │ ├── set-st-mergeall.json │ │ ├── set-st-multi.json │ │ ├── set-st-nested.json │ │ ├── set-st-noarray-nested.json │ │ ├── set-st-noarray.json │ │ ├── set-st-nomerge.json │ │ ├── set-st-with-empty-map.json │ │ ├── set-st.json │ │ ├── update-all-transforms.json │ │ ├── update-arrayremove-alone.json │ │ ├── update-arrayremove-multi.json │ │ ├── update-arrayremove-nested.json │ │ ├── update-arrayremove-noarray-nested.json │ │ ├── update-arrayremove-noarray.json │ │ ├── update-arrayremove-with-st.json │ │ ├── update-arrayremove.json │ │ ├── update-arrayunion-alone.json │ │ ├── update-arrayunion-multi.json │ │ ├── update-arrayunion-nested.json │ │ ├── update-arrayunion-noarray-nested.json │ │ ├── update-arrayunion-noarray.json │ │ ├── update-arrayunion-with-st.json │ │ ├── update-arrayunion.json │ │ ├── update-badchar.json │ │ ├── update-basic.json │ │ ├── update-complex.json │ │ ├── update-del-alone.json │ │ ├── update-del-dot.json │ │ ├── update-del-nested.json │ │ ├── update-del-noarray-nested.json │ │ ├── update-del-noarray.json │ │ ├── update-del.json │ │ ├── update-exists-false-precond.json │ │ ├── update-exists-true-precond.json │ │ ├── update-fp-empty-component.json │ │ ├── update-nested-transform-and-nested-value.json │ │ ├── update-no-paths.json │ │ ├── update-paths-all-transforms.json │ │ ├── update-paths-arrayremove-alone.json │ │ ├── update-paths-arrayremove-multi.json │ │ ├── update-paths-arrayremove-nested.json │ │ ├── update-paths-arrayremove-noarray-nested.json │ │ ├── update-paths-arrayremove-noarray.json │ │ ├── update-paths-arrayremove-with-st.json │ │ ├── update-paths-arrayremove.json │ │ ├── update-paths-arrayunion-alone.json │ │ ├── update-paths-arrayunion-multi.json │ │ ├── update-paths-arrayunion-nested.json │ │ ├── update-paths-arrayunion-noarray-nested.json │ │ ├── update-paths-arrayunion-noarray.json │ │ ├── update-paths-arrayunion-with-st.json │ │ ├── update-paths-arrayunion.json │ │ ├── update-paths-basic.json │ │ ├── update-paths-complex.json │ │ ├── update-paths-del-alone.json │ │ ├── update-paths-del-nested.json │ │ ├── update-paths-del-noarray-nested.json │ │ ├── update-paths-del-noarray.json │ │ ├── update-paths-del.json │ │ ├── update-paths-exists-false-precond.json │ │ ├── update-paths-exists-true-precond.json │ │ ├── update-paths-fp-del.json │ │ ├── update-paths-fp-dup-transforms.json │ │ ├── update-paths-fp-dup.json │ │ ├── update-paths-fp-empty-component.json │ │ ├── update-paths-fp-empty.json │ │ ├── update-paths-fp-multi.json │ │ ├── update-paths-fp-nosplit.json │ │ ├── update-paths-nested-transform-and-nested-value.json │ │ ├── update-paths-no-paths.json │ │ ├── update-paths-prefix-1.json │ │ ├── update-paths-prefix-2.json │ │ ├── update-paths-prefix-3.json │ │ ├── update-paths-special-chars.json │ │ ├── update-paths-st-alone.json │ │ ├── update-paths-st-multi.json │ │ ├── update-paths-st-nested.json │ │ ├── update-paths-st-noarray-nested.json │ │ ├── update-paths-st-noarray.json │ │ ├── update-paths-st-with-empty-map.json │ │ ├── update-paths-st.json │ │ ├── update-paths-uptime.json │ │ ├── update-prefix-1.json │ │ ├── update-prefix-2.json │ │ ├── update-prefix-3.json │ │ ├── update-quoting.json │ │ ├── update-split-top-level.json │ │ ├── update-split.json │ │ ├── update-st-alone.json │ │ ├── update-st-dot.json │ │ ├── update-st-multi.json │ │ ├── update-st-nested.json │ │ ├── update-st-noarray-nested.json │ │ ├── update-st-noarray.json │ │ ├── update-st-with-empty-map.json │ │ ├── update-st.json │ │ └── update-uptime.json │ ├── runner.ts │ └── test-definition.proto ├── protos │ ├── admin_v1.json │ ├── firestore │ │ └── bundle.proto │ ├── firestore_admin_v1_proto_api.d.ts │ ├── firestore_admin_v1_proto_api.js │ ├── firestore_v1_proto_api.d.ts │ ├── firestore_v1_proto_api.js │ ├── firestore_v1beta1_proto_api.d.ts │ ├── firestore_v1beta1_proto_api.js │ ├── google │ │ ├── api │ │ │ ├── annotations.proto │ │ │ ├── client.proto │ │ │ ├── field_behavior.proto │ │ │ ├── http.proto │ │ │ ├── launch_stage.proto │ │ │ └── resource.proto │ │ ├── firestore │ │ │ ├── admin │ │ │ │ └── v1 │ │ │ │ │ ├── backup.proto │ │ │ │ │ ├── database.proto │ │ │ │ │ ├── field.proto │ │ │ │ │ ├── firestore_admin.proto │ │ │ │ │ ├── index.proto │ │ │ │ │ ├── location.proto │ │ │ │ │ ├── operation.proto │ │ │ │ │ └── schedule.proto │ │ │ ├── v1 │ │ │ │ ├── aggregation_result.proto │ │ │ │ ├── bloom_filter.proto │ │ │ │ ├── common.proto │ │ │ │ ├── document.proto │ │ │ │ ├── firestore.proto │ │ │ │ ├── query.proto │ │ │ │ ├── query_profile.proto │ │ │ │ └── write.proto │ │ │ └── v1beta1 │ │ │ │ ├── common.proto │ │ │ │ ├── document.proto │ │ │ │ ├── firestore.proto │ │ │ │ ├── query.proto │ │ │ │ ├── undeliverable_first_gen_event.proto │ │ │ │ └── write.proto │ │ ├── longrunning │ │ │ └── operations.proto │ │ ├── protobuf │ │ │ ├── any.proto │ │ │ ├── descriptor.proto │ │ │ ├── duration.proto │ │ │ ├── empty.proto │ │ │ ├── field_mask.proto │ │ │ ├── struct.proto │ │ │ ├── timestamp.proto │ │ │ └── wrappers.proto │ │ ├── rpc │ │ │ └── status.proto │ │ └── type │ │ │ ├── dayofweek.proto │ │ │ └── latlng.proto │ ├── update.sh │ ├── v1.json │ └── v1beta1.json ├── src │ ├── aggregate.ts │ ├── backoff.ts │ ├── bulk-writer.ts │ ├── bundle.ts │ ├── collection-group.ts │ ├── convert.ts │ ├── document-change.ts │ ├── document-reader.ts │ ├── document.ts │ ├── external-modules.d.ts │ ├── field-value.ts │ ├── filter.ts │ ├── geo-point.ts │ ├── index.ts │ ├── logger.ts │ ├── map-type.ts │ ├── order.ts │ ├── path.ts │ ├── pool.ts │ ├── query-partition.ts │ ├── query-profile.ts │ ├── rate-limiter.ts │ ├── recursive-delete.ts │ ├── reference │ │ ├── aggregate-query-snapshot.ts │ │ ├── aggregate-query.ts │ │ ├── collection-reference.ts │ │ ├── composite-filter-internal.ts │ │ ├── constants.ts │ │ ├── document-reference.ts │ │ ├── field-filter-internal.ts │ │ ├── field-order.ts │ │ ├── filter-internal.ts │ │ ├── helpers.ts │ │ ├── query-options.ts │ │ ├── query-snapshot.ts │ │ ├── query-util.ts │ │ ├── query.ts │ │ ├── types.ts │ │ ├── vector-query-options.ts │ │ ├── vector-query-snapshot.ts │ │ └── vector-query.ts │ ├── serializer.ts │ ├── status-code.ts │ ├── telemetry │ │ ├── disabled-trace-util.ts │ │ ├── enabled-trace-util.ts │ │ ├── span.ts │ │ └── trace-util.ts │ ├── timestamp.ts │ ├── transaction.ts │ ├── types.ts │ ├── util.ts │ ├── v1 │ │ ├── firestore_admin_client.ts │ │ ├── firestore_admin_client_config.json │ │ ├── firestore_admin_proto_list.json │ │ ├── firestore_client.ts │ │ ├── firestore_client_config.json │ │ ├── firestore_proto_list.json │ │ ├── gapic_metadata.json │ │ └── index.ts │ ├── v1beta1 │ │ ├── firestore_client.ts │ │ ├── firestore_client_config.json │ │ ├── firestore_proto_list.json │ │ ├── gapic_metadata.json │ │ └── index.ts │ ├── validate.ts │ ├── watch.ts │ └── write-batch.ts ├── system-test │ ├── firestore.ts │ ├── index_test_helper.ts │ └── tracing.ts └── test │ ├── aggregate.ts │ ├── aggregateQuery.ts │ ├── backoff.ts │ ├── bulk-writer.ts │ ├── bundle.ts │ ├── collection.ts │ ├── document.ts │ ├── field-value.ts │ ├── gapic_firestore_admin_v1.ts │ ├── gapic_firestore_v1.ts │ ├── gapic_firestore_v1beta1.ts │ ├── ignore-undefined.ts │ ├── index.ts │ ├── lazy-load.ts │ ├── mocha.opts │ ├── order.ts │ ├── partition-query.ts │ ├── path.ts │ ├── pool.ts │ ├── query.ts │ ├── rate-limiter.ts │ ├── recursive-delete.ts │ ├── serializer.ts │ ├── timestamp.ts │ ├── tracing.ts │ ├── transaction.ts │ ├── types.ts │ ├── util.ts │ ├── util │ └── helpers.ts │ ├── vector-query.ts │ ├── watch.ts │ └── write-batch.ts ├── docfx.json ├── linkinator.config.json ├── owlbot.py ├── package.json ├── renovate.json ├── samples ├── .eslintrc.yml ├── README.md ├── limit-to-last-query.js ├── package.json ├── quickstart.js ├── solution-counters.js └── test │ ├── limit-to-last-query.test.js │ ├── quickstart.test.js │ └── solution-counters.test.js ├── scripts ├── .eslintrc.yml ├── api-report.mjs ├── init-directories.js └── license.js ├── tsconfig.json └── types ├── firestore.d.ts ├── protos ├── firestore_admin_v1_proto_api.d.ts ├── firestore_v1_proto_api.d.ts └── firestore_v1beta1_proto_api.d.ts ├── v1 ├── firestore_admin_client.d.ts └── firestore_client.d.ts └── v1beta1 └── firestore_client.d.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.OwlBot.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/.OwlBot.lock.yaml -------------------------------------------------------------------------------- /.github/.OwlBot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/.OwlBot.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/documentation_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/processs_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/processs_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/questions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-approve.yml: -------------------------------------------------------------------------------- 1 | processes: 2 | - "NodeDependency" -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- 1 | requestsize: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /.github/flakybot.yaml: -------------------------------------------------------------------------------- 1 | issuePriority: p2 2 | 3 | 4 | -------------------------------------------------------------------------------- /.github/generated-files-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/generated-files-bot.yml -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/release-trigger.yml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | multiScmName: nodejs-firestore -------------------------------------------------------------------------------- /.github/scripts/close-invalid-link.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/close-invalid-link.cjs -------------------------------------------------------------------------------- /.github/scripts/close-unresponsive.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/close-unresponsive.cjs -------------------------------------------------------------------------------- /.github/scripts/fixtures/invalidIssueBody.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/fixtures/invalidIssueBody.txt -------------------------------------------------------------------------------- /.github/scripts/fixtures/validIssueBody.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/fixtures/validIssueBody.txt -------------------------------------------------------------------------------- /.github/scripts/fixtures/validIssueBodyDifferentLinkLocation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/fixtures/validIssueBodyDifferentLinkLocation.txt -------------------------------------------------------------------------------- /.github/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/package.json -------------------------------------------------------------------------------- /.github/scripts/remove-response-label.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/remove-response-label.cjs -------------------------------------------------------------------------------- /.github/scripts/tests/close-invalid-link.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/tests/close-invalid-link.test.cjs -------------------------------------------------------------------------------- /.github/scripts/tests/close-or-remove-response-label.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/scripts/tests/close-or-remove-response-label.test.cjs -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/issues-no-repro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/workflows/issues-no-repro.yaml -------------------------------------------------------------------------------- /.github/workflows/response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.github/workflows/response.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/runConfigurations/Conformance_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.idea/runConfigurations/Conformance_Tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/System_Test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.idea/runConfigurations/System_Test.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Unit_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.idea/runConfigurations/Unit_Tests.xml -------------------------------------------------------------------------------- /.jsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.jsdoc.js -------------------------------------------------------------------------------- /.kokoro/.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-generated=true 2 | -------------------------------------------------------------------------------- /.kokoro/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/continuous/node18/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/lint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/continuous/node18/lint.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/samples-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/continuous/node18/samples-test.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/system-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/continuous/node18/system-test.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/test.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.kokoro/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/docs.sh -------------------------------------------------------------------------------- /.kokoro/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/lint.sh -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/pre-samples-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/pre-samples-test.sh -------------------------------------------------------------------------------- /.kokoro/pre-system-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/pre-system-test.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/node18/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/presubmit/node18/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node18/samples-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/presubmit/node18/samples-test.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node18/system-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/presubmit/node18/system-test.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node18/test.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.kokoro/presubmit/windows/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/presubmit/windows/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/windows/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/presubmit/windows/test.cfg -------------------------------------------------------------------------------- /.kokoro/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/publish.sh -------------------------------------------------------------------------------- /.kokoro/release/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/release/common.cfg -------------------------------------------------------------------------------- /.kokoro/release/docs-devsite.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/release/docs-devsite.cfg -------------------------------------------------------------------------------- /.kokoro/release/docs-devsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/release/docs-devsite.sh -------------------------------------------------------------------------------- /.kokoro/release/docs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/release/docs.cfg -------------------------------------------------------------------------------- /.kokoro/release/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/release/docs.sh -------------------------------------------------------------------------------- /.kokoro/release/publish.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/release/publish.cfg -------------------------------------------------------------------------------- /.kokoro/samples-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/samples-test.sh -------------------------------------------------------------------------------- /.kokoro/system-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/system-test.sh -------------------------------------------------------------------------------- /.kokoro/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/test.bat -------------------------------------------------------------------------------- /.kokoro/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/test.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.readme-partials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.readme-partials.yaml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api-report/firestore.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/api-report/firestore.api.md -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-all-transforms.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayremove-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayremove-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayremove-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayremove-with-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayremove.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayunion-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayunion-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayunion-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayunion-with-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-arrayunion.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-basic.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-complex.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-del-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-del-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-empty.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-nodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-nodel.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-nosplit.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-special-chars.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-st-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-st-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-st-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-st-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-st-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-st-with-empty-map.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/create-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/create-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/delete-exists-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/delete-exists-precond.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/delete-no-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/delete-no-precond.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/delete-time-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/delete-time-precond.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/get-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/get-basic.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-add-mod-del-add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-add-mod-del-add.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-add-one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-add-one.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-add-three.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-add-three.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-doc-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-doc-remove.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-empty.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-filter-nop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-filter-nop.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-multi-docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-multi-docs.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-nocurrent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-nocurrent.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-nomod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-nomod.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-removed-target-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-removed-target-ids.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-reset.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-target-add-nop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-target-add-nop.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-target-add-wrong-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-target-add-wrong-id.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/listen-target-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/listen-target-remove.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-arrayremove-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-arrayremove-cursor.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-arrayremove-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-arrayremove-where.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-arrayunion-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-arrayunion-cursor.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-arrayunion-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-arrayunion-where.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-bad-NaN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-bad-NaN.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-bad-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-bad-null.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-docsnap-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-docsnap-order.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-docsnap-orderby-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-docsnap-orderby-name.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-docsnap-where-eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-docsnap-where-eq.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-docsnap-where-neq-orderby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-docsnap-where-neq-orderby.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-docsnap-where-neq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-docsnap-where-neq.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-docsnap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-docsnap.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-endbefore-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-endbefore-empty-map.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-endbefore-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-endbefore-empty.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-no-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-no-order.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-startafter-docsnap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-startafter-docsnap.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-startat-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-startat-empty-map.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-startat-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-startat-empty.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-vals-1a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-vals-1a.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-vals-1b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-vals-1b.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-vals-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-vals-2.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-vals-docid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-vals-docid.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-cursor-vals-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-cursor-vals-last-wins.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-del-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-del-cursor.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-del-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-del-where.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-invalid-operator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-invalid-operator.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-invalid-path-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-invalid-path-order.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-invalid-path-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-invalid-path-select.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-invalid-path-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-invalid-path-where.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-offset-limit-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-offset-limit-last-wins.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-offset-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-offset-limit.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-order.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-select-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-select-empty.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-select-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-select-last-wins.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-select.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-st-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-st-cursor.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-st-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-st-where.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-where-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-where-2.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-where-NaN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-where-NaN.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-where-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-where-null.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-where.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/query-wrong-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/query-wrong-collection.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-all-transforms.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayremove-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayremove-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayremove-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayremove-with-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayremove.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayunion-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayunion-merge.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayunion-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayunion-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayunion-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayunion-with-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-arrayunion.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-basic.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-complex.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-del-merge-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-del-merge-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-del-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-del-merge.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-del-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-del-mergeall.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-del-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-del-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-del-nomerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-del-nomerge.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-del-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-del-nonleaf.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-del-wo-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-del-wo-merge.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-empty.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-merge-fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-merge-fp.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-merge-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-merge-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-merge-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-merge-nonleaf.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-merge-prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-merge-prefix.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-merge-present.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-merge-present.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-merge.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-mergeall-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-mergeall-empty.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-mergeall-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-mergeall-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-mergeall.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-nodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-nodel.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-nosplit.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-special-chars.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-alone-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-alone-mergeall.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-merge-both.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-merge-both.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-merge-nonleaf-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-merge-nonleaf-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-merge-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-merge-nonleaf.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-merge-nowrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-merge-nowrite.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-mergeall.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-nomerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-nomerge.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st-with-empty-map.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/set-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/set-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-all-transforms.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayremove-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayremove-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayremove-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayremove-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayremove-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayremove-with-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayremove.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayunion-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayunion-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayunion-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayunion-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayunion-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayunion-with-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-arrayunion.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-badchar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-badchar.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-basic.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-complex.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-del-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-del-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-del-dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-del-dot.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-del-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-del-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-del-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-del-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-del.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-exists-false-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-exists-false-precond.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-exists-true-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-exists-true-precond.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-fp-empty-component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-fp-empty-component.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-nested-transform-and-nested-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-nested-transform-and-nested-value.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-no-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-no-paths.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-all-transforms.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayremove-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayremove-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayremove-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayremove-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayremove-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayremove-with-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayremove.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayunion-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayunion-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayunion-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayunion-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayunion-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayunion-with-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-arrayunion.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-basic.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-complex.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-del-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-del-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-del-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-del-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-del-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-del-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-del.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-exists-false-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-exists-false-precond.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-exists-true-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-exists-true-precond.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-fp-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-fp-del.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-fp-dup-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-fp-dup-transforms.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-fp-dup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-fp-dup.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-fp-empty-component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-fp-empty-component.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-fp-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-fp-empty.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-fp-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-fp-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-fp-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-fp-nosplit.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-nested-transform-and-nested-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-nested-transform-and-nested-value.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-no-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-no-paths.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-prefix-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-prefix-1.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-prefix-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-prefix-2.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-prefix-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-prefix-3.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-special-chars.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-st-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-st-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-st-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-st-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-st-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-st-with-empty-map.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-paths-uptime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-paths-uptime.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-prefix-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-prefix-1.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-prefix-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-prefix-2.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-prefix-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-prefix-3.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-quoting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-quoting.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-split-top-level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-split-top-level.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-split.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-st-alone.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-st-dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-st-dot.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-st-multi.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-st-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-st-noarray-nested.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-st-noarray.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-st-with-empty-map.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-st.json -------------------------------------------------------------------------------- /dev/conformance/conformance-tests/update-uptime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/conformance-tests/update-uptime.json -------------------------------------------------------------------------------- /dev/conformance/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/runner.ts -------------------------------------------------------------------------------- /dev/conformance/test-definition.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/conformance/test-definition.proto -------------------------------------------------------------------------------- /dev/protos/admin_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/admin_v1.json -------------------------------------------------------------------------------- /dev/protos/firestore/bundle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/firestore/bundle.proto -------------------------------------------------------------------------------- /dev/protos/firestore_admin_v1_proto_api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/firestore_admin_v1_proto_api.d.ts -------------------------------------------------------------------------------- /dev/protos/firestore_admin_v1_proto_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/firestore_admin_v1_proto_api.js -------------------------------------------------------------------------------- /dev/protos/firestore_v1_proto_api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/firestore_v1_proto_api.d.ts -------------------------------------------------------------------------------- /dev/protos/firestore_v1_proto_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/firestore_v1_proto_api.js -------------------------------------------------------------------------------- /dev/protos/firestore_v1beta1_proto_api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/firestore_v1beta1_proto_api.d.ts -------------------------------------------------------------------------------- /dev/protos/firestore_v1beta1_proto_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/firestore_v1beta1_proto_api.js -------------------------------------------------------------------------------- /dev/protos/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/api/annotations.proto -------------------------------------------------------------------------------- /dev/protos/google/api/client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/api/client.proto -------------------------------------------------------------------------------- /dev/protos/google/api/field_behavior.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/api/field_behavior.proto -------------------------------------------------------------------------------- /dev/protos/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/api/http.proto -------------------------------------------------------------------------------- /dev/protos/google/api/launch_stage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/api/launch_stage.proto -------------------------------------------------------------------------------- /dev/protos/google/api/resource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/api/resource.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/admin/v1/backup.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/admin/v1/backup.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/admin/v1/database.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/admin/v1/database.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/admin/v1/field.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/admin/v1/field.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/admin/v1/firestore_admin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/admin/v1/firestore_admin.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/admin/v1/index.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/admin/v1/index.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/admin/v1/location.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/admin/v1/location.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/admin/v1/operation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/admin/v1/operation.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/admin/v1/schedule.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/admin/v1/schedule.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1/aggregation_result.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1/aggregation_result.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1/bloom_filter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1/bloom_filter.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1/common.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1/document.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1/document.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1/firestore.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1/firestore.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1/query.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1/query_profile.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1/query_profile.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1/write.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1/write.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1beta1/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1beta1/common.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1beta1/document.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1beta1/document.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1beta1/firestore.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1beta1/firestore.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1beta1/query.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1beta1/undeliverable_first_gen_event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1beta1/undeliverable_first_gen_event.proto -------------------------------------------------------------------------------- /dev/protos/google/firestore/v1beta1/write.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/firestore/v1beta1/write.proto -------------------------------------------------------------------------------- /dev/protos/google/longrunning/operations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/longrunning/operations.proto -------------------------------------------------------------------------------- /dev/protos/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/protobuf/any.proto -------------------------------------------------------------------------------- /dev/protos/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /dev/protos/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/protobuf/duration.proto -------------------------------------------------------------------------------- /dev/protos/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/protobuf/empty.proto -------------------------------------------------------------------------------- /dev/protos/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /dev/protos/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/protobuf/struct.proto -------------------------------------------------------------------------------- /dev/protos/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /dev/protos/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /dev/protos/google/rpc/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/rpc/status.proto -------------------------------------------------------------------------------- /dev/protos/google/type/dayofweek.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/type/dayofweek.proto -------------------------------------------------------------------------------- /dev/protos/google/type/latlng.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/google/type/latlng.proto -------------------------------------------------------------------------------- /dev/protos/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/update.sh -------------------------------------------------------------------------------- /dev/protos/v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/v1.json -------------------------------------------------------------------------------- /dev/protos/v1beta1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/protos/v1beta1.json -------------------------------------------------------------------------------- /dev/src/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/aggregate.ts -------------------------------------------------------------------------------- /dev/src/backoff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/backoff.ts -------------------------------------------------------------------------------- /dev/src/bulk-writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/bulk-writer.ts -------------------------------------------------------------------------------- /dev/src/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/bundle.ts -------------------------------------------------------------------------------- /dev/src/collection-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/collection-group.ts -------------------------------------------------------------------------------- /dev/src/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/convert.ts -------------------------------------------------------------------------------- /dev/src/document-change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/document-change.ts -------------------------------------------------------------------------------- /dev/src/document-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/document-reader.ts -------------------------------------------------------------------------------- /dev/src/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/document.ts -------------------------------------------------------------------------------- /dev/src/external-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/external-modules.d.ts -------------------------------------------------------------------------------- /dev/src/field-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/field-value.ts -------------------------------------------------------------------------------- /dev/src/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/filter.ts -------------------------------------------------------------------------------- /dev/src/geo-point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/geo-point.ts -------------------------------------------------------------------------------- /dev/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/index.ts -------------------------------------------------------------------------------- /dev/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/logger.ts -------------------------------------------------------------------------------- /dev/src/map-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/map-type.ts -------------------------------------------------------------------------------- /dev/src/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/order.ts -------------------------------------------------------------------------------- /dev/src/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/path.ts -------------------------------------------------------------------------------- /dev/src/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/pool.ts -------------------------------------------------------------------------------- /dev/src/query-partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/query-partition.ts -------------------------------------------------------------------------------- /dev/src/query-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/query-profile.ts -------------------------------------------------------------------------------- /dev/src/rate-limiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/rate-limiter.ts -------------------------------------------------------------------------------- /dev/src/recursive-delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/recursive-delete.ts -------------------------------------------------------------------------------- /dev/src/reference/aggregate-query-snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/aggregate-query-snapshot.ts -------------------------------------------------------------------------------- /dev/src/reference/aggregate-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/aggregate-query.ts -------------------------------------------------------------------------------- /dev/src/reference/collection-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/collection-reference.ts -------------------------------------------------------------------------------- /dev/src/reference/composite-filter-internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/composite-filter-internal.ts -------------------------------------------------------------------------------- /dev/src/reference/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/constants.ts -------------------------------------------------------------------------------- /dev/src/reference/document-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/document-reference.ts -------------------------------------------------------------------------------- /dev/src/reference/field-filter-internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/field-filter-internal.ts -------------------------------------------------------------------------------- /dev/src/reference/field-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/field-order.ts -------------------------------------------------------------------------------- /dev/src/reference/filter-internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/filter-internal.ts -------------------------------------------------------------------------------- /dev/src/reference/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/helpers.ts -------------------------------------------------------------------------------- /dev/src/reference/query-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/query-options.ts -------------------------------------------------------------------------------- /dev/src/reference/query-snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/query-snapshot.ts -------------------------------------------------------------------------------- /dev/src/reference/query-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/query-util.ts -------------------------------------------------------------------------------- /dev/src/reference/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/query.ts -------------------------------------------------------------------------------- /dev/src/reference/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/types.ts -------------------------------------------------------------------------------- /dev/src/reference/vector-query-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/vector-query-options.ts -------------------------------------------------------------------------------- /dev/src/reference/vector-query-snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/vector-query-snapshot.ts -------------------------------------------------------------------------------- /dev/src/reference/vector-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/reference/vector-query.ts -------------------------------------------------------------------------------- /dev/src/serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/serializer.ts -------------------------------------------------------------------------------- /dev/src/status-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/status-code.ts -------------------------------------------------------------------------------- /dev/src/telemetry/disabled-trace-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/telemetry/disabled-trace-util.ts -------------------------------------------------------------------------------- /dev/src/telemetry/enabled-trace-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/telemetry/enabled-trace-util.ts -------------------------------------------------------------------------------- /dev/src/telemetry/span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/telemetry/span.ts -------------------------------------------------------------------------------- /dev/src/telemetry/trace-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/telemetry/trace-util.ts -------------------------------------------------------------------------------- /dev/src/timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/timestamp.ts -------------------------------------------------------------------------------- /dev/src/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/transaction.ts -------------------------------------------------------------------------------- /dev/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/types.ts -------------------------------------------------------------------------------- /dev/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/util.ts -------------------------------------------------------------------------------- /dev/src/v1/firestore_admin_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1/firestore_admin_client.ts -------------------------------------------------------------------------------- /dev/src/v1/firestore_admin_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1/firestore_admin_client_config.json -------------------------------------------------------------------------------- /dev/src/v1/firestore_admin_proto_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1/firestore_admin_proto_list.json -------------------------------------------------------------------------------- /dev/src/v1/firestore_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1/firestore_client.ts -------------------------------------------------------------------------------- /dev/src/v1/firestore_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1/firestore_client_config.json -------------------------------------------------------------------------------- /dev/src/v1/firestore_proto_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1/firestore_proto_list.json -------------------------------------------------------------------------------- /dev/src/v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1/gapic_metadata.json -------------------------------------------------------------------------------- /dev/src/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1/index.ts -------------------------------------------------------------------------------- /dev/src/v1beta1/firestore_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1beta1/firestore_client.ts -------------------------------------------------------------------------------- /dev/src/v1beta1/firestore_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1beta1/firestore_client_config.json -------------------------------------------------------------------------------- /dev/src/v1beta1/firestore_proto_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1beta1/firestore_proto_list.json -------------------------------------------------------------------------------- /dev/src/v1beta1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1beta1/gapic_metadata.json -------------------------------------------------------------------------------- /dev/src/v1beta1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/v1beta1/index.ts -------------------------------------------------------------------------------- /dev/src/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/validate.ts -------------------------------------------------------------------------------- /dev/src/watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/watch.ts -------------------------------------------------------------------------------- /dev/src/write-batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/src/write-batch.ts -------------------------------------------------------------------------------- /dev/system-test/firestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/system-test/firestore.ts -------------------------------------------------------------------------------- /dev/system-test/index_test_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/system-test/index_test_helper.ts -------------------------------------------------------------------------------- /dev/system-test/tracing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/system-test/tracing.ts -------------------------------------------------------------------------------- /dev/test/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/aggregate.ts -------------------------------------------------------------------------------- /dev/test/aggregateQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/aggregateQuery.ts -------------------------------------------------------------------------------- /dev/test/backoff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/backoff.ts -------------------------------------------------------------------------------- /dev/test/bulk-writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/bulk-writer.ts -------------------------------------------------------------------------------- /dev/test/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/bundle.ts -------------------------------------------------------------------------------- /dev/test/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/collection.ts -------------------------------------------------------------------------------- /dev/test/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/document.ts -------------------------------------------------------------------------------- /dev/test/field-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/field-value.ts -------------------------------------------------------------------------------- /dev/test/gapic_firestore_admin_v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/gapic_firestore_admin_v1.ts -------------------------------------------------------------------------------- /dev/test/gapic_firestore_v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/gapic_firestore_v1.ts -------------------------------------------------------------------------------- /dev/test/gapic_firestore_v1beta1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/gapic_firestore_v1beta1.ts -------------------------------------------------------------------------------- /dev/test/ignore-undefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/ignore-undefined.ts -------------------------------------------------------------------------------- /dev/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/index.ts -------------------------------------------------------------------------------- /dev/test/lazy-load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/lazy-load.ts -------------------------------------------------------------------------------- /dev/test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/mocha.opts -------------------------------------------------------------------------------- /dev/test/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/order.ts -------------------------------------------------------------------------------- /dev/test/partition-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/partition-query.ts -------------------------------------------------------------------------------- /dev/test/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/path.ts -------------------------------------------------------------------------------- /dev/test/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/pool.ts -------------------------------------------------------------------------------- /dev/test/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/query.ts -------------------------------------------------------------------------------- /dev/test/rate-limiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/rate-limiter.ts -------------------------------------------------------------------------------- /dev/test/recursive-delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/recursive-delete.ts -------------------------------------------------------------------------------- /dev/test/serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/serializer.ts -------------------------------------------------------------------------------- /dev/test/timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/timestamp.ts -------------------------------------------------------------------------------- /dev/test/tracing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/tracing.ts -------------------------------------------------------------------------------- /dev/test/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/transaction.ts -------------------------------------------------------------------------------- /dev/test/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/types.ts -------------------------------------------------------------------------------- /dev/test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/util.ts -------------------------------------------------------------------------------- /dev/test/util/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/util/helpers.ts -------------------------------------------------------------------------------- /dev/test/vector-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/vector-query.ts -------------------------------------------------------------------------------- /dev/test/watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/watch.ts -------------------------------------------------------------------------------- /dev/test/write-batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/dev/test/write-batch.ts -------------------------------------------------------------------------------- /docfx.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linkinator.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/linkinator.config.json -------------------------------------------------------------------------------- /owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/owlbot.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/.eslintrc.yml -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/limit-to-last-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/limit-to-last-query.js -------------------------------------------------------------------------------- /samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/package.json -------------------------------------------------------------------------------- /samples/quickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/quickstart.js -------------------------------------------------------------------------------- /samples/solution-counters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/solution-counters.js -------------------------------------------------------------------------------- /samples/test/limit-to-last-query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/test/limit-to-last-query.test.js -------------------------------------------------------------------------------- /samples/test/quickstart.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/test/quickstart.test.js -------------------------------------------------------------------------------- /samples/test/solution-counters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/samples/test/solution-counters.test.js -------------------------------------------------------------------------------- /scripts/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/scripts/.eslintrc.yml -------------------------------------------------------------------------------- /scripts/api-report.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/scripts/api-report.mjs -------------------------------------------------------------------------------- /scripts/init-directories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/scripts/init-directories.js -------------------------------------------------------------------------------- /scripts/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/scripts/license.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/firestore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/types/firestore.d.ts -------------------------------------------------------------------------------- /types/protos/firestore_admin_v1_proto_api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/types/protos/firestore_admin_v1_proto_api.d.ts -------------------------------------------------------------------------------- /types/protos/firestore_v1_proto_api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/types/protos/firestore_v1_proto_api.d.ts -------------------------------------------------------------------------------- /types/protos/firestore_v1beta1_proto_api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/types/protos/firestore_v1beta1_proto_api.d.ts -------------------------------------------------------------------------------- /types/v1/firestore_admin_client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/types/v1/firestore_admin_client.d.ts -------------------------------------------------------------------------------- /types/v1/firestore_client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/types/v1/firestore_client.d.ts -------------------------------------------------------------------------------- /types/v1beta1/firestore_client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore/HEAD/types/v1beta1/firestore_client.d.ts --------------------------------------------------------------------------------