├── .coveragerc ├── .flake8 ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-label.yaml ├── blunderbuss.yml ├── flakybot.yaml ├── header-checker-lint.yml ├── snippet-bot.yml └── workflows │ ├── docs.yml │ ├── lint.yml │ ├── mypy.yml │ ├── system_emulated.yml │ └── unittest.yml ├── .gitignore ├── .kokoro ├── build.sh ├── continuous │ ├── common.cfg │ ├── continuous.cfg │ └── prerelease-deps.cfg ├── populate-secrets.sh ├── presubmit │ ├── common.cfg │ ├── prerelease-deps.cfg │ ├── presubmit.cfg │ └── system.cfg ├── samples │ ├── lint │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.10 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.11 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.12 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.13 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.14 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.7 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.8 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ └── python3.9 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg ├── test-samples-against-head.sh ├── test-samples-impl.sh ├── test-samples.sh ├── trampoline.sh └── trampoline_v2.sh ├── .librarian ├── generator-input │ ├── .repo-metadata.json │ ├── noxfile.py │ ├── owlbot.py │ └── setup.py └── state.yaml ├── .pre-commit-config.yaml ├── .release-please-manifest.json ├── .repo-metadata.json ├── .trampolinerc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile_v1 ├── README.rst ├── SECURITY.md ├── UPGRADING.md ├── docs ├── README.rst ├── UPGRADING.md ├── _static │ └── custom.css ├── _templates │ └── layout.html ├── changelog.md ├── conf.py ├── firestore_admin_v1 │ └── admin_client.rst ├── firestore_bundle │ └── bundles.rst ├── firestore_v1 │ ├── aggregation.rst │ ├── batch.rst │ ├── bulk_writer.rst │ ├── client.rst │ ├── collection.rst │ ├── document.rst │ ├── field_path.rst │ ├── query.rst │ ├── transaction.rst │ ├── transforms.rst │ └── types.rst ├── index.rst ├── multiprocessing.rst └── summary_overview.md ├── google └── cloud │ ├── firestore │ ├── __init__.py │ └── gapic_version.py │ ├── firestore_admin_v1 │ ├── __init__.py │ ├── gapic_metadata.json │ ├── gapic_version.py │ ├── py.typed │ ├── services │ │ ├── __init__.py │ │ └── firestore_admin │ │ │ ├── __init__.py │ │ │ ├── async_client.py │ │ │ ├── client.py │ │ │ ├── pagers.py │ │ │ └── transports │ │ │ ├── README.rst │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── grpc.py │ │ │ ├── grpc_asyncio.py │ │ │ ├── rest.py │ │ │ └── rest_base.py │ └── types │ │ ├── __init__.py │ │ ├── backup.py │ │ ├── database.py │ │ ├── field.py │ │ ├── firestore_admin.py │ │ ├── index.py │ │ ├── location.py │ │ ├── operation.py │ │ ├── schedule.py │ │ ├── snapshot.py │ │ └── user_creds.py │ ├── firestore_bundle │ ├── __init__.py │ ├── _helpers.py │ ├── bundle.py │ ├── gapic_metadata.json │ ├── gapic_version.py │ ├── py.typed │ ├── services │ │ └── __init__.py │ └── types │ │ ├── __init__.py │ │ └── bundle.py │ └── firestore_v1 │ ├── __init__.py │ ├── _helpers.py │ ├── aggregation.py │ ├── async_aggregation.py │ ├── async_batch.py │ ├── async_client.py │ ├── async_collection.py │ ├── async_document.py │ ├── async_query.py │ ├── async_stream_generator.py │ ├── async_transaction.py │ ├── async_vector_query.py │ ├── base_aggregation.py │ ├── base_batch.py │ ├── base_client.py │ ├── base_collection.py │ ├── base_document.py │ ├── base_query.py │ ├── base_transaction.py │ ├── base_vector_query.py │ ├── batch.py │ ├── bulk_batch.py │ ├── bulk_writer.py │ ├── client.py │ ├── collection.py │ ├── document.py │ ├── field_path.py │ ├── gapic_metadata.json │ ├── gapic_version.py │ ├── order.py │ ├── py.typed │ ├── query.py │ ├── query_profile.py │ ├── query_results.py │ ├── rate_limiter.py │ ├── services │ ├── __init__.py │ └── firestore │ │ ├── __init__.py │ │ ├── async_client.py │ │ ├── client.py │ │ ├── pagers.py │ │ └── transports │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── base.py │ │ ├── grpc.py │ │ ├── grpc_asyncio.py │ │ ├── rest.py │ │ └── rest_base.py │ ├── stream_generator.py │ ├── transaction.py │ ├── transforms.py │ ├── types │ ├── __init__.py │ ├── aggregation_result.py │ ├── bloom_filter.py │ ├── common.py │ ├── document.py │ ├── firestore.py │ ├── query.py │ ├── query_profile.py │ └── write.py │ ├── vector.py │ ├── vector_query.py │ └── watch.py ├── mypy.ini ├── noxfile.py ├── owlbot.py ├── pylint.config.py ├── pytest.ini ├── release-please-config.json ├── renovate.json ├── samples ├── AUTHORING_GUIDE.md └── CONTRIBUTING.md ├── scripts ├── decrypt-secrets.sh ├── fixup_firestore_admin_v1_keywords.py ├── fixup_firestore_v1_keywords.py └── readme-gen │ ├── readme_gen.py │ └── templates │ ├── README.tmpl.rst │ ├── auth.tmpl.rst │ ├── auth_api_key.tmpl.rst │ ├── install_deps.tmpl.rst │ └── install_portaudio.tmpl.rst ├── setup.cfg ├── setup.py ├── testing ├── .gitignore ├── constraints-3.10.txt ├── constraints-3.11.txt ├── constraints-3.12.txt ├── constraints-3.13.txt ├── constraints-3.14.txt ├── constraints-3.7.txt ├── constraints-3.8.txt └── constraints-3.9.txt └── tests ├── __init__.py ├── credentials.json.enc ├── system ├── test__helpers.py ├── test_system.py ├── test_system_async.py └── util │ ├── bootstrap_vector_index.py │ └── cleanup_firestore_documents.py └── unit ├── __init__.py ├── gapic ├── __init__.py ├── bundle │ └── __init__.py ├── firestore_admin_v1 │ ├── __init__.py │ └── test_firestore_admin.py └── firestore_v1 │ ├── __init__.py │ └── test_firestore.py ├── test_firestore_shim.py ├── test_packaging.py └── v1 ├── __init__.py ├── _test_helpers.py ├── conformance_tests.py ├── test__helpers.py ├── test_aggregation.py ├── test_async_aggregation.py ├── test_async_batch.py ├── test_async_client.py ├── test_async_collection.py ├── test_async_document.py ├── test_async_query.py ├── test_async_stream_generator.py ├── test_async_transaction.py ├── test_async_vector_query.py ├── test_base_batch.py ├── test_base_client.py ├── test_base_collection.py ├── test_base_document.py ├── test_base_query.py ├── test_base_transaction.py ├── test_batch.py ├── test_bulk_batch.py ├── test_bulk_writer.py ├── test_bundle.py ├── test_client.py ├── test_collection.py ├── test_cross_language.py ├── test_document.py ├── test_field_path.py ├── test_order.py ├── test_query.py ├── test_query_profile.py ├── test_query_results.py ├── test_rate_limiter.py ├── test_stream_generator.py ├── test_transaction.py ├── test_transforms.py ├── test_vector.py ├── test_vector_query.py ├── test_watch.py └── testdata ├── 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-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-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-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 /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/auto-label.yaml -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/flakybot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/flakybot.yaml -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/mypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/workflows/mypy.yml -------------------------------------------------------------------------------- /.github/workflows/system_emulated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/workflows/system_emulated.yml -------------------------------------------------------------------------------- /.github/workflows/unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.github/workflows/unittest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/build.sh -------------------------------------------------------------------------------- /.kokoro/continuous/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/continuous/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/continuous/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/continuous/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/presubmit/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/presubmit/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/presubmit/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/presubmit/system.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/lint/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/lint/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/lint/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/lint/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.10/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.10/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.10/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.10/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.10/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.11/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.11/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.11/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.11/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.11/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.12/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.12/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.12/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.12/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.12/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.13/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.13/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.13/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.13/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.13/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.14/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.14/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.14/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.14/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.14/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.7/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.7/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.7/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.7/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.7/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.8/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.8/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.8/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.8/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.8/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.9/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.9/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.9/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.9/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/samples/python3.9/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/test-samples-against-head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/test-samples-against-head.sh -------------------------------------------------------------------------------- /.kokoro/test-samples-impl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/test-samples-impl.sh -------------------------------------------------------------------------------- /.kokoro/test-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/test-samples.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.librarian/generator-input/.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.librarian/generator-input/.repo-metadata.json -------------------------------------------------------------------------------- /.librarian/generator-input/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.librarian/generator-input/noxfile.py -------------------------------------------------------------------------------- /.librarian/generator-input/owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.librarian/generator-input/owlbot.py -------------------------------------------------------------------------------- /.librarian/generator-input/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.librarian/generator-input/setup.py -------------------------------------------------------------------------------- /.librarian/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.librarian/state.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "2.21.0" 3 | } -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile_v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/Makefile_v1 -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/UPGRADING.md -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/firestore_admin_v1/admin_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_admin_v1/admin_client.rst -------------------------------------------------------------------------------- /docs/firestore_bundle/bundles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_bundle/bundles.rst -------------------------------------------------------------------------------- /docs/firestore_v1/aggregation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/aggregation.rst -------------------------------------------------------------------------------- /docs/firestore_v1/batch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/batch.rst -------------------------------------------------------------------------------- /docs/firestore_v1/bulk_writer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/bulk_writer.rst -------------------------------------------------------------------------------- /docs/firestore_v1/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/client.rst -------------------------------------------------------------------------------- /docs/firestore_v1/collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/collection.rst -------------------------------------------------------------------------------- /docs/firestore_v1/document.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/document.rst -------------------------------------------------------------------------------- /docs/firestore_v1/field_path.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/field_path.rst -------------------------------------------------------------------------------- /docs/firestore_v1/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/query.rst -------------------------------------------------------------------------------- /docs/firestore_v1/transaction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/transaction.rst -------------------------------------------------------------------------------- /docs/firestore_v1/transforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/transforms.rst -------------------------------------------------------------------------------- /docs/firestore_v1/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/firestore_v1/types.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/multiprocessing.rst -------------------------------------------------------------------------------- /docs/summary_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/docs/summary_overview.md -------------------------------------------------------------------------------- /google/cloud/firestore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/gapic_metadata.json -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/py.typed -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/async_client.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/client.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/pagers.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/transports/README.rst -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/transports/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/transports/base.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/transports/grpc.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/transports/rest.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/services/firestore_admin/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/services/firestore_admin/transports/rest_base.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/backup.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/database.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/field.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/firestore_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/firestore_admin.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/index.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/location.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/operation.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/schedule.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/snapshot.py -------------------------------------------------------------------------------- /google/cloud/firestore_admin_v1/types/user_creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_admin_v1/types/user_creds.py -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_bundle/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_bundle/_helpers.py -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_bundle/bundle.py -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_bundle/gapic_metadata.json -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_bundle/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-cloud-bundle package uses inline types. 3 | -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_bundle/services/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_bundle/types/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_bundle/types/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_bundle/types/bundle.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/_helpers.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/aggregation.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_aggregation.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_batch.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_client.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_collection.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_document.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_query.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_stream_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_stream_generator.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_transaction.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/async_vector_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/async_vector_query.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/base_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/base_aggregation.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/base_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/base_batch.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/base_client.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/base_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/base_collection.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/base_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/base_document.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/base_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/base_query.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/base_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/base_transaction.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/base_vector_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/base_vector_query.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/batch.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/bulk_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/bulk_batch.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/bulk_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/bulk_writer.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/client.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/collection.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/document.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/field_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/field_path.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/gapic_metadata.json -------------------------------------------------------------------------------- /google/cloud/firestore_v1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/order.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/py.typed -------------------------------------------------------------------------------- /google/cloud/firestore_v1/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/query.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/query_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/query_profile.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/query_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/query_results.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/rate_limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/rate_limiter.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/async_client.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/client.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/pagers.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/transports/README.rst -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/transports/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/transports/base.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/transports/grpc.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/transports/rest.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/services/firestore/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/services/firestore/transports/rest_base.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/stream_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/stream_generator.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/transaction.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/transforms.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/__init__.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/aggregation_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/aggregation_result.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/bloom_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/bloom_filter.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/common.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/document.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/firestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/firestore.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/query.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/query_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/query_profile.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/types/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/types/write.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/vector.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/vector_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/vector_query.py -------------------------------------------------------------------------------- /google/cloud/firestore_v1/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/google/cloud/firestore_v1/watch.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/noxfile.py -------------------------------------------------------------------------------- /owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/owlbot.py -------------------------------------------------------------------------------- /pylint.config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/pylint.config.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/pytest.ini -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/release-please-config.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/AUTHORING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/samples/AUTHORING_GUIDE.md -------------------------------------------------------------------------------- /samples/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/samples/CONTRIBUTING.md -------------------------------------------------------------------------------- /scripts/decrypt-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/decrypt-secrets.sh -------------------------------------------------------------------------------- /scripts/fixup_firestore_admin_v1_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/fixup_firestore_admin_v1_keywords.py -------------------------------------------------------------------------------- /scripts/fixup_firestore_v1_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/fixup_firestore_v1_keywords.py -------------------------------------------------------------------------------- /scripts/readme-gen/readme_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/readme-gen/readme_gen.py -------------------------------------------------------------------------------- /scripts/readme-gen/templates/README.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/readme-gen/templates/README.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/readme-gen/templates/auth.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth_api_key.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/readme-gen/templates/auth_api_key.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_deps.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/readme-gen/templates/install_deps.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_portaudio.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/scripts/readme-gen/templates/install_portaudio.tmpl.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/setup.py -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/testing/.gitignore -------------------------------------------------------------------------------- /testing/constraints-3.10.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.11.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.12.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.13.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.14.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /testing/constraints-3.8.txt: -------------------------------------------------------------------------------- 1 | google-api-core==2.14.0 2 | -------------------------------------------------------------------------------- /testing/constraints-3.9.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/credentials.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/credentials.json.enc -------------------------------------------------------------------------------- /tests/system/test__helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/system/test__helpers.py -------------------------------------------------------------------------------- /tests/system/test_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/system/test_system.py -------------------------------------------------------------------------------- /tests/system/test_system_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/system/test_system_async.py -------------------------------------------------------------------------------- /tests/system/util/bootstrap_vector_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/system/util/bootstrap_vector_index.py -------------------------------------------------------------------------------- /tests/system/util/cleanup_firestore_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/system/util/cleanup_firestore_documents.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/bundle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/gapic/bundle/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/firestore_admin_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/gapic/firestore_admin_v1/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/firestore_admin_v1/test_firestore_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/gapic/firestore_admin_v1/test_firestore_admin.py -------------------------------------------------------------------------------- /tests/unit/gapic/firestore_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/gapic/firestore_v1/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/firestore_v1/test_firestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/gapic/firestore_v1/test_firestore.py -------------------------------------------------------------------------------- /tests/unit/test_firestore_shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/test_firestore_shim.py -------------------------------------------------------------------------------- /tests/unit/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/test_packaging.py -------------------------------------------------------------------------------- /tests/unit/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/__init__.py -------------------------------------------------------------------------------- /tests/unit/v1/_test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/_test_helpers.py -------------------------------------------------------------------------------- /tests/unit/v1/conformance_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/conformance_tests.py -------------------------------------------------------------------------------- /tests/unit/v1/test__helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test__helpers.py -------------------------------------------------------------------------------- /tests/unit/v1/test_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_aggregation.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_aggregation.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_batch.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_client.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_collection.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_document.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_query.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_stream_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_stream_generator.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_transaction.py -------------------------------------------------------------------------------- /tests/unit/v1/test_async_vector_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_async_vector_query.py -------------------------------------------------------------------------------- /tests/unit/v1/test_base_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_base_batch.py -------------------------------------------------------------------------------- /tests/unit/v1/test_base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_base_client.py -------------------------------------------------------------------------------- /tests/unit/v1/test_base_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_base_collection.py -------------------------------------------------------------------------------- /tests/unit/v1/test_base_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_base_document.py -------------------------------------------------------------------------------- /tests/unit/v1/test_base_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_base_query.py -------------------------------------------------------------------------------- /tests/unit/v1/test_base_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_base_transaction.py -------------------------------------------------------------------------------- /tests/unit/v1/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_batch.py -------------------------------------------------------------------------------- /tests/unit/v1/test_bulk_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_bulk_batch.py -------------------------------------------------------------------------------- /tests/unit/v1/test_bulk_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_bulk_writer.py -------------------------------------------------------------------------------- /tests/unit/v1/test_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_bundle.py -------------------------------------------------------------------------------- /tests/unit/v1/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_client.py -------------------------------------------------------------------------------- /tests/unit/v1/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_collection.py -------------------------------------------------------------------------------- /tests/unit/v1/test_cross_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_cross_language.py -------------------------------------------------------------------------------- /tests/unit/v1/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_document.py -------------------------------------------------------------------------------- /tests/unit/v1/test_field_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_field_path.py -------------------------------------------------------------------------------- /tests/unit/v1/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_order.py -------------------------------------------------------------------------------- /tests/unit/v1/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_query.py -------------------------------------------------------------------------------- /tests/unit/v1/test_query_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_query_profile.py -------------------------------------------------------------------------------- /tests/unit/v1/test_query_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_query_results.py -------------------------------------------------------------------------------- /tests/unit/v1/test_rate_limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_rate_limiter.py -------------------------------------------------------------------------------- /tests/unit/v1/test_stream_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_stream_generator.py -------------------------------------------------------------------------------- /tests/unit/v1/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_transaction.py -------------------------------------------------------------------------------- /tests/unit/v1/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_transforms.py -------------------------------------------------------------------------------- /tests/unit/v1/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_vector.py -------------------------------------------------------------------------------- /tests/unit/v1/test_vector_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_vector_query.py -------------------------------------------------------------------------------- /tests/unit/v1/test_watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/test_watch.py -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-all-transforms.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayremove-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayremove-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayremove-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayremove-with-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayremove.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayunion-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayunion-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayunion-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayunion-with-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-arrayunion.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-basic.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-complex.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-del-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-del-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-empty.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-nodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-nodel.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-nosplit.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-special-chars.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-st-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-st-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-st-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-st-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-st-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-st-with-empty-map.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/create-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/create-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/delete-exists-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/delete-exists-precond.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/delete-no-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/delete-no-precond.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/delete-time-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/delete-time-precond.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/get-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/get-basic.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-add-mod-del-add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-add-mod-del-add.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-add-one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-add-one.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-add-three.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-add-three.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-doc-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-doc-remove.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-empty.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-filter-nop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-filter-nop.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-multi-docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-multi-docs.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-nocurrent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-nocurrent.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-nomod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-nomod.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-removed-target-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-removed-target-ids.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-reset.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-target-add-nop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-target-add-nop.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-target-add-wrong-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-target-add-wrong-id.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/listen-target-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/listen-target-remove.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-arrayremove-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-arrayremove-cursor.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-arrayremove-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-arrayremove-where.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-arrayunion-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-arrayunion-cursor.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-arrayunion-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-arrayunion-where.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-bad-NaN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-bad-NaN.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-bad-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-bad-null.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-docsnap-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-docsnap-order.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-docsnap-orderby-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-docsnap-orderby-name.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-docsnap-where-eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-docsnap-where-eq.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-docsnap-where-neq-orderby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-docsnap-where-neq-orderby.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-docsnap-where-neq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-docsnap-where-neq.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-docsnap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-docsnap.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-endbefore-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-endbefore-empty-map.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-endbefore-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-endbefore-empty.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-no-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-no-order.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-startat-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-startat-empty-map.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-startat-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-startat-empty.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-vals-1a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-vals-1a.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-vals-1b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-vals-1b.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-vals-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-vals-2.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-vals-docid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-vals-docid.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-cursor-vals-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-cursor-vals-last-wins.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-del-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-del-cursor.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-del-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-del-where.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-invalid-operator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-invalid-operator.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-invalid-path-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-invalid-path-order.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-invalid-path-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-invalid-path-select.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-invalid-path-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-invalid-path-where.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-offset-limit-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-offset-limit-last-wins.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-offset-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-offset-limit.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-order.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-select-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-select-empty.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-select-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-select-last-wins.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-select.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-st-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-st-cursor.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-st-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-st-where.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-where-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-where-2.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-where-NaN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-where-NaN.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-where-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-where-null.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-where.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/query-wrong-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/query-wrong-collection.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-all-transforms.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayremove-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayremove-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayremove-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayremove-with-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayremove.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayunion-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayunion-merge.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayunion-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayunion-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayunion-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayunion-with-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-arrayunion.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-basic.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-complex.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-del-merge-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-del-merge-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-del-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-del-merge.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-del-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-del-mergeall.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-del-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-del-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-del-nomerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-del-nomerge.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-del-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-del-nonleaf.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-del-wo-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-del-wo-merge.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-empty.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-merge-fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-merge-fp.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-merge-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-merge-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-merge-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-merge-nonleaf.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-merge-prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-merge-prefix.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-merge-present.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-merge-present.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-merge.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-mergeall-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-mergeall-empty.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-mergeall-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-mergeall-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-mergeall.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-nodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-nodel.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-nosplit.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-special-chars.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-alone-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-alone-mergeall.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-merge-both.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-merge-both.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-merge-nonleaf-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-merge-nonleaf-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-merge-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-merge-nonleaf.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-merge-nowrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-merge-nowrite.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-mergeall.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-nomerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-nomerge.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st-with-empty-map.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/set-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/set-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-all-transforms.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayremove-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayremove-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayremove-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayremove-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayremove-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayremove-with-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayremove.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayunion-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayunion-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayunion-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayunion-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayunion-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayunion-with-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-arrayunion.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-badchar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-badchar.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-basic.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-complex.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-del-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-del-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-del-dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-del-dot.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-del-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-del-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-del-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-del-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-del.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-exists-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-exists-precond.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-fp-empty-component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-fp-empty-component.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-nested-transform-and-nested-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-nested-transform-and-nested-value.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-no-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-no-paths.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-all-transforms.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayremove-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayremove-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayremove-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayremove-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayremove-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayremove-with-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayremove.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayunion-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayunion-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayunion-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayunion-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayunion-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayunion-with-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-arrayunion.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-basic.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-complex.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-del-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-del-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-del-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-del-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-del-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-del-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-del.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-exists-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-exists-precond.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-fp-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-fp-del.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-fp-dup-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-fp-dup-transforms.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-fp-dup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-fp-dup.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-fp-empty-component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-fp-empty-component.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-fp-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-fp-empty.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-fp-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-fp-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-fp-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-fp-nosplit.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-nested-transform-and-nested-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-nested-transform-and-nested-value.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-no-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-no-paths.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-prefix-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-prefix-1.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-prefix-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-prefix-2.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-prefix-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-prefix-3.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-special-chars.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-st-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-st-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-st-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-st-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-st-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-st-with-empty-map.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-paths-uptime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-paths-uptime.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-prefix-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-prefix-1.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-prefix-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-prefix-2.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-prefix-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-prefix-3.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-quoting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-quoting.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-split-top-level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-split-top-level.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-split.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-st-alone.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-st-dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-st-dot.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-st-multi.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-st-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-st-noarray-nested.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-st-noarray.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-st-with-empty-map.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-st.json -------------------------------------------------------------------------------- /tests/unit/v1/testdata/update-uptime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-firestore/HEAD/tests/unit/v1/testdata/update-uptime.json --------------------------------------------------------------------------------