├── .github ├── CODEOWNERS └── renovate.json ├── .gitignore ├── .kokoro ├── common.cfg ├── continuous.cfg ├── presubmit.cfg ├── trampoline.sh └── validator.sh ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bigtable └── v2 │ ├── proto │ └── google │ │ └── cloud │ │ └── conformance │ │ └── bigtable │ │ └── v2 │ │ └── tests.proto │ ├── readrows.json │ └── validator.go ├── firestore └── v1 │ ├── 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 │ ├── proto │ └── google │ │ └── cloud │ │ └── conformance │ │ └── firestore │ │ └── v1 │ │ └── tests.proto │ ├── query-arrayremove-cursor.json │ ├── query-arrayremove-where.json │ ├── query-arrayunion-cursor.json │ ├── query-arrayunion-where.json │ ├── query-bad-NaN.json │ ├── query-bad-null.json │ ├── query-cursor-docsnap-order.json │ ├── query-cursor-docsnap-orderby-name.json │ ├── query-cursor-docsnap-where-eq.json │ ├── query-cursor-docsnap-where-neq-orderby.json │ ├── query-cursor-docsnap-where-neq.json │ ├── query-cursor-docsnap.json │ ├── query-cursor-endbefore-empty-map.json │ ├── query-cursor-endbefore-empty.json │ ├── query-cursor-no-order.json │ ├── query-cursor-startafter-docsnap.json │ ├── query-cursor-startat-empty-map.json │ ├── query-cursor-startat-empty.json │ ├── query-cursor-vals-1a.json │ ├── query-cursor-vals-1b.json │ ├── query-cursor-vals-2.json │ ├── query-cursor-vals-docid.json │ ├── query-cursor-vals-last-wins.json │ ├── query-del-cursor.json │ ├── query-del-where.json │ ├── query-invalid-operator.json │ ├── query-invalid-path-order.json │ ├── query-invalid-path-select.json │ ├── query-invalid-path-where.json │ ├── query-offset-limit-last-wins.json │ ├── query-offset-limit.json │ ├── query-order.json │ ├── query-select-empty.json │ ├── query-select-last-wins.json │ ├── query-select.json │ ├── query-st-cursor.json │ ├── query-st-where.json │ ├── query-where-2.json │ ├── query-where-NaN.json │ ├── query-where-null.json │ ├── query-where.json │ ├── query-wrong-collection.json │ ├── set-all-transforms.json │ ├── set-arrayremove-multi.json │ ├── set-arrayremove-nested.json │ ├── set-arrayremove-noarray-nested.json │ ├── set-arrayremove-noarray.json │ ├── set-arrayremove-with-st.json │ ├── set-arrayremove.json │ ├── set-arrayunion-merge.json │ ├── set-arrayunion-multi.json │ ├── set-arrayunion-nested.json │ ├── set-arrayunion-noarray-nested.json │ ├── set-arrayunion-noarray.json │ ├── set-arrayunion-with-st.json │ ├── set-arrayunion.json │ ├── set-basic.json │ ├── set-complex.json │ ├── set-del-merge-alone.json │ ├── set-del-merge.json │ ├── set-del-mergeall.json │ ├── set-del-noarray-nested.json │ ├── set-del-noarray.json │ ├── set-del-nomerge.json │ ├── set-del-nonleaf.json │ ├── set-del-wo-merge.json │ ├── set-empty.json │ ├── set-merge-fp.json │ ├── set-merge-nested.json │ ├── set-merge-nonleaf.json │ ├── set-merge-prefix.json │ ├── set-merge-present.json │ ├── set-merge.json │ ├── set-mergeall-empty.json │ ├── set-mergeall-nested.json │ ├── set-mergeall.json │ ├── set-nodel.json │ ├── set-nosplit.json │ ├── set-special-chars.json │ ├── set-st-alone-mergeall.json │ ├── set-st-alone.json │ ├── set-st-merge-both.json │ ├── set-st-merge-nonleaf-alone.json │ ├── set-st-merge-nonleaf.json │ ├── set-st-merge-nowrite.json │ ├── set-st-mergeall.json │ ├── set-st-multi.json │ ├── set-st-nested.json │ ├── set-st-noarray-nested.json │ ├── set-st-noarray.json │ ├── set-st-nomerge.json │ ├── set-st-with-empty-map.json │ ├── set-st.json │ ├── update-all-transforms.json │ ├── update-arrayremove-alone.json │ ├── update-arrayremove-multi.json │ ├── update-arrayremove-nested.json │ ├── update-arrayremove-noarray-nested.json │ ├── update-arrayremove-noarray.json │ ├── update-arrayremove-with-st.json │ ├── update-arrayremove.json │ ├── update-arrayunion-alone.json │ ├── update-arrayunion-multi.json │ ├── update-arrayunion-nested.json │ ├── update-arrayunion-noarray-nested.json │ ├── update-arrayunion-noarray.json │ ├── update-arrayunion-with-st.json │ ├── update-arrayunion.json │ ├── update-badchar.json │ ├── update-basic.json │ ├── update-complex.json │ ├── update-del-alone.json │ ├── update-del-dot.json │ ├── update-del-nested.json │ ├── update-del-noarray-nested.json │ ├── update-del-noarray.json │ ├── update-del.json │ ├── update-exists-false-precond.json │ ├── update-exists-true-precond.json │ ├── update-fp-empty-component.json │ ├── update-nested-transform-and-nested-value.json │ ├── update-no-paths.json │ ├── update-paths-all-transforms.json │ ├── update-paths-arrayremove-alone.json │ ├── update-paths-arrayremove-multi.json │ ├── update-paths-arrayremove-nested.json │ ├── update-paths-arrayremove-noarray-nested.json │ ├── update-paths-arrayremove-noarray.json │ ├── update-paths-arrayremove-with-st.json │ ├── update-paths-arrayremove.json │ ├── update-paths-arrayunion-alone.json │ ├── update-paths-arrayunion-multi.json │ ├── update-paths-arrayunion-nested.json │ ├── update-paths-arrayunion-noarray-nested.json │ ├── update-paths-arrayunion-noarray.json │ ├── update-paths-arrayunion-with-st.json │ ├── update-paths-arrayunion.json │ ├── update-paths-basic.json │ ├── update-paths-complex.json │ ├── update-paths-del-alone.json │ ├── update-paths-del-nested.json │ ├── update-paths-del-noarray-nested.json │ ├── update-paths-del-noarray.json │ ├── update-paths-del.json │ ├── update-paths-exists-false-precond.json │ ├── update-paths-exists-true-precond.json │ ├── update-paths-fp-del.json │ ├── update-paths-fp-dup-transforms.json │ ├── update-paths-fp-dup.json │ ├── update-paths-fp-empty-component.json │ ├── update-paths-fp-empty.json │ ├── update-paths-fp-multi.json │ ├── update-paths-fp-nosplit.json │ ├── update-paths-nested-transform-and-nested-value.json │ ├── update-paths-no-paths.json │ ├── update-paths-prefix-1.json │ ├── update-paths-prefix-2.json │ ├── update-paths-prefix-3.json │ ├── update-paths-special-chars.json │ ├── update-paths-st-alone.json │ ├── update-paths-st-multi.json │ ├── update-paths-st-nested.json │ ├── update-paths-st-noarray-nested.json │ ├── update-paths-st-noarray.json │ ├── update-paths-st-with-empty-map.json │ ├── update-paths-st.json │ ├── update-paths-uptime.json │ ├── update-prefix-1.json │ ├── update-prefix-2.json │ ├── update-prefix-3.json │ ├── update-quoting.json │ ├── update-split-top-level.json │ ├── update-split.json │ ├── update-st-alone.json │ ├── update-st-dot.json │ ├── update-st-multi.json │ ├── update-st-nested.json │ ├── update-st-noarray-nested.json │ ├── update-st-noarray.json │ ├── update-st-with-empty-map.json │ ├── update-st.json │ ├── update-uptime.json │ └── validator.go ├── go.mod ├── go.sum └── storage └── v1 ├── README.md ├── proto └── google │ └── cloud │ └── conformance │ └── storage │ └── v1 │ └── tests.proto ├── retry_tests.json ├── test_service_account.not-a-test.json ├── v4_signatures.json └── validator.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/.kokoro/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/.kokoro/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/.kokoro/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/validator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/.kokoro/validator.sh -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bigtable/v2/proto/google/cloud/conformance/bigtable/v2/tests.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/bigtable/v2/proto/google/cloud/conformance/bigtable/v2/tests.proto -------------------------------------------------------------------------------- /bigtable/v2/readrows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/bigtable/v2/readrows.json -------------------------------------------------------------------------------- /bigtable/v2/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/bigtable/v2/validator.go -------------------------------------------------------------------------------- /firestore/v1/create-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-all-transforms.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayremove-multi.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayremove-nested.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayremove-noarray.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayremove-with-st.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayremove.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayunion-multi.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayunion-nested.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayunion-noarray.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayunion-with-st.json -------------------------------------------------------------------------------- /firestore/v1/create-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-arrayunion.json -------------------------------------------------------------------------------- /firestore/v1/create-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-basic.json -------------------------------------------------------------------------------- /firestore/v1/create-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-complex.json -------------------------------------------------------------------------------- /firestore/v1/create-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-del-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/create-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-del-noarray.json -------------------------------------------------------------------------------- /firestore/v1/create-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-empty.json -------------------------------------------------------------------------------- /firestore/v1/create-nodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-nodel.json -------------------------------------------------------------------------------- /firestore/v1/create-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-nosplit.json -------------------------------------------------------------------------------- /firestore/v1/create-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-special-chars.json -------------------------------------------------------------------------------- /firestore/v1/create-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-st-alone.json -------------------------------------------------------------------------------- /firestore/v1/create-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-st-multi.json -------------------------------------------------------------------------------- /firestore/v1/create-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-st-nested.json -------------------------------------------------------------------------------- /firestore/v1/create-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-st-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/create-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-st-noarray.json -------------------------------------------------------------------------------- /firestore/v1/create-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-st-with-empty-map.json -------------------------------------------------------------------------------- /firestore/v1/create-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/create-st.json -------------------------------------------------------------------------------- /firestore/v1/delete-exists-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/delete-exists-precond.json -------------------------------------------------------------------------------- /firestore/v1/delete-no-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/delete-no-precond.json -------------------------------------------------------------------------------- /firestore/v1/delete-time-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/delete-time-precond.json -------------------------------------------------------------------------------- /firestore/v1/get-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/get-basic.json -------------------------------------------------------------------------------- /firestore/v1/listen-add-mod-del-add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-add-mod-del-add.json -------------------------------------------------------------------------------- /firestore/v1/listen-add-one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-add-one.json -------------------------------------------------------------------------------- /firestore/v1/listen-add-three.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-add-three.json -------------------------------------------------------------------------------- /firestore/v1/listen-doc-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-doc-remove.json -------------------------------------------------------------------------------- /firestore/v1/listen-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-empty.json -------------------------------------------------------------------------------- /firestore/v1/listen-filter-nop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-filter-nop.json -------------------------------------------------------------------------------- /firestore/v1/listen-multi-docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-multi-docs.json -------------------------------------------------------------------------------- /firestore/v1/listen-nocurrent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-nocurrent.json -------------------------------------------------------------------------------- /firestore/v1/listen-nomod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-nomod.json -------------------------------------------------------------------------------- /firestore/v1/listen-removed-target-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-removed-target-ids.json -------------------------------------------------------------------------------- /firestore/v1/listen-reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-reset.json -------------------------------------------------------------------------------- /firestore/v1/listen-target-add-nop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-target-add-nop.json -------------------------------------------------------------------------------- /firestore/v1/listen-target-add-wrong-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-target-add-wrong-id.json -------------------------------------------------------------------------------- /firestore/v1/listen-target-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/listen-target-remove.json -------------------------------------------------------------------------------- /firestore/v1/proto/google/cloud/conformance/firestore/v1/tests.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/proto/google/cloud/conformance/firestore/v1/tests.proto -------------------------------------------------------------------------------- /firestore/v1/query-arrayremove-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-arrayremove-cursor.json -------------------------------------------------------------------------------- /firestore/v1/query-arrayremove-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-arrayremove-where.json -------------------------------------------------------------------------------- /firestore/v1/query-arrayunion-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-arrayunion-cursor.json -------------------------------------------------------------------------------- /firestore/v1/query-arrayunion-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-arrayunion-where.json -------------------------------------------------------------------------------- /firestore/v1/query-bad-NaN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-bad-NaN.json -------------------------------------------------------------------------------- /firestore/v1/query-bad-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-bad-null.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-docsnap-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-docsnap-order.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-docsnap-orderby-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-docsnap-orderby-name.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-docsnap-where-eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-docsnap-where-eq.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-docsnap-where-neq-orderby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-docsnap-where-neq-orderby.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-docsnap-where-neq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-docsnap-where-neq.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-docsnap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-docsnap.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-endbefore-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-endbefore-empty-map.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-endbefore-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-endbefore-empty.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-no-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-no-order.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-startafter-docsnap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-startafter-docsnap.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-startat-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-startat-empty-map.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-startat-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-startat-empty.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-vals-1a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-vals-1a.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-vals-1b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-vals-1b.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-vals-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-vals-2.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-vals-docid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-vals-docid.json -------------------------------------------------------------------------------- /firestore/v1/query-cursor-vals-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-cursor-vals-last-wins.json -------------------------------------------------------------------------------- /firestore/v1/query-del-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-del-cursor.json -------------------------------------------------------------------------------- /firestore/v1/query-del-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-del-where.json -------------------------------------------------------------------------------- /firestore/v1/query-invalid-operator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-invalid-operator.json -------------------------------------------------------------------------------- /firestore/v1/query-invalid-path-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-invalid-path-order.json -------------------------------------------------------------------------------- /firestore/v1/query-invalid-path-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-invalid-path-select.json -------------------------------------------------------------------------------- /firestore/v1/query-invalid-path-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-invalid-path-where.json -------------------------------------------------------------------------------- /firestore/v1/query-offset-limit-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-offset-limit-last-wins.json -------------------------------------------------------------------------------- /firestore/v1/query-offset-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-offset-limit.json -------------------------------------------------------------------------------- /firestore/v1/query-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-order.json -------------------------------------------------------------------------------- /firestore/v1/query-select-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-select-empty.json -------------------------------------------------------------------------------- /firestore/v1/query-select-last-wins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-select-last-wins.json -------------------------------------------------------------------------------- /firestore/v1/query-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-select.json -------------------------------------------------------------------------------- /firestore/v1/query-st-cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-st-cursor.json -------------------------------------------------------------------------------- /firestore/v1/query-st-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-st-where.json -------------------------------------------------------------------------------- /firestore/v1/query-where-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-where-2.json -------------------------------------------------------------------------------- /firestore/v1/query-where-NaN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-where-NaN.json -------------------------------------------------------------------------------- /firestore/v1/query-where-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-where-null.json -------------------------------------------------------------------------------- /firestore/v1/query-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-where.json -------------------------------------------------------------------------------- /firestore/v1/query-wrong-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/query-wrong-collection.json -------------------------------------------------------------------------------- /firestore/v1/set-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-all-transforms.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayremove-multi.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayremove-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayremove-noarray.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayremove-with-st.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayremove.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayunion-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayunion-merge.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayunion-multi.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayunion-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayunion-noarray.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayunion-with-st.json -------------------------------------------------------------------------------- /firestore/v1/set-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-arrayunion.json -------------------------------------------------------------------------------- /firestore/v1/set-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-basic.json -------------------------------------------------------------------------------- /firestore/v1/set-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-complex.json -------------------------------------------------------------------------------- /firestore/v1/set-del-merge-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-del-merge-alone.json -------------------------------------------------------------------------------- /firestore/v1/set-del-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-del-merge.json -------------------------------------------------------------------------------- /firestore/v1/set-del-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-del-mergeall.json -------------------------------------------------------------------------------- /firestore/v1/set-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-del-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-del-noarray.json -------------------------------------------------------------------------------- /firestore/v1/set-del-nomerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-del-nomerge.json -------------------------------------------------------------------------------- /firestore/v1/set-del-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-del-nonleaf.json -------------------------------------------------------------------------------- /firestore/v1/set-del-wo-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-del-wo-merge.json -------------------------------------------------------------------------------- /firestore/v1/set-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-empty.json -------------------------------------------------------------------------------- /firestore/v1/set-merge-fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-merge-fp.json -------------------------------------------------------------------------------- /firestore/v1/set-merge-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-merge-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-merge-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-merge-nonleaf.json -------------------------------------------------------------------------------- /firestore/v1/set-merge-prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-merge-prefix.json -------------------------------------------------------------------------------- /firestore/v1/set-merge-present.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-merge-present.json -------------------------------------------------------------------------------- /firestore/v1/set-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-merge.json -------------------------------------------------------------------------------- /firestore/v1/set-mergeall-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-mergeall-empty.json -------------------------------------------------------------------------------- /firestore/v1/set-mergeall-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-mergeall-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-mergeall.json -------------------------------------------------------------------------------- /firestore/v1/set-nodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-nodel.json -------------------------------------------------------------------------------- /firestore/v1/set-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-nosplit.json -------------------------------------------------------------------------------- /firestore/v1/set-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-special-chars.json -------------------------------------------------------------------------------- /firestore/v1/set-st-alone-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-alone-mergeall.json -------------------------------------------------------------------------------- /firestore/v1/set-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-alone.json -------------------------------------------------------------------------------- /firestore/v1/set-st-merge-both.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-merge-both.json -------------------------------------------------------------------------------- /firestore/v1/set-st-merge-nonleaf-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-merge-nonleaf-alone.json -------------------------------------------------------------------------------- /firestore/v1/set-st-merge-nonleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-merge-nonleaf.json -------------------------------------------------------------------------------- /firestore/v1/set-st-merge-nowrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-merge-nowrite.json -------------------------------------------------------------------------------- /firestore/v1/set-st-mergeall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-mergeall.json -------------------------------------------------------------------------------- /firestore/v1/set-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-multi.json -------------------------------------------------------------------------------- /firestore/v1/set-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/set-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-noarray.json -------------------------------------------------------------------------------- /firestore/v1/set-st-nomerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-nomerge.json -------------------------------------------------------------------------------- /firestore/v1/set-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st-with-empty-map.json -------------------------------------------------------------------------------- /firestore/v1/set-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/set-st.json -------------------------------------------------------------------------------- /firestore/v1/update-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-all-transforms.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayremove-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayremove-alone.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayremove-multi.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayremove-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayremove-noarray.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayremove-with-st.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayremove.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayunion-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayunion-alone.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayunion-multi.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayunion-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayunion-noarray.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayunion-with-st.json -------------------------------------------------------------------------------- /firestore/v1/update-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-arrayunion.json -------------------------------------------------------------------------------- /firestore/v1/update-badchar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-badchar.json -------------------------------------------------------------------------------- /firestore/v1/update-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-basic.json -------------------------------------------------------------------------------- /firestore/v1/update-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-complex.json -------------------------------------------------------------------------------- /firestore/v1/update-del-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-del-alone.json -------------------------------------------------------------------------------- /firestore/v1/update-del-dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-del-dot.json -------------------------------------------------------------------------------- /firestore/v1/update-del-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-del-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-del-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-del-noarray.json -------------------------------------------------------------------------------- /firestore/v1/update-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-del.json -------------------------------------------------------------------------------- /firestore/v1/update-exists-false-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-exists-false-precond.json -------------------------------------------------------------------------------- /firestore/v1/update-exists-true-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-exists-true-precond.json -------------------------------------------------------------------------------- /firestore/v1/update-fp-empty-component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-fp-empty-component.json -------------------------------------------------------------------------------- /firestore/v1/update-nested-transform-and-nested-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-nested-transform-and-nested-value.json -------------------------------------------------------------------------------- /firestore/v1/update-no-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-no-paths.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-all-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-all-transforms.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayremove-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayremove-alone.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayremove-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayremove-multi.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayremove-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayremove-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayremove-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayremove-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayremove-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayremove-noarray.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayremove-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayremove-with-st.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayremove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayremove.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayunion-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayunion-alone.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayunion-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayunion-multi.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayunion-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayunion-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayunion-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayunion-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayunion-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayunion-noarray.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayunion-with-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayunion-with-st.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-arrayunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-arrayunion.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-basic.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-complex.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-del-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-del-alone.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-del-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-del-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-del-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-del-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-del-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-del-noarray.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-del.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-exists-false-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-exists-false-precond.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-exists-true-precond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-exists-true-precond.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-fp-del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-fp-del.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-fp-dup-transforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-fp-dup-transforms.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-fp-dup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-fp-dup.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-fp-empty-component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-fp-empty-component.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-fp-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-fp-empty.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-fp-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-fp-multi.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-fp-nosplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-fp-nosplit.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-nested-transform-and-nested-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-nested-transform-and-nested-value.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-no-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-no-paths.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-prefix-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-prefix-1.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-prefix-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-prefix-2.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-prefix-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-prefix-3.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-special-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-special-chars.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-st-alone.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-st-multi.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-st-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-st-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-st-noarray.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-st-with-empty-map.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-st.json -------------------------------------------------------------------------------- /firestore/v1/update-paths-uptime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-paths-uptime.json -------------------------------------------------------------------------------- /firestore/v1/update-prefix-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-prefix-1.json -------------------------------------------------------------------------------- /firestore/v1/update-prefix-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-prefix-2.json -------------------------------------------------------------------------------- /firestore/v1/update-prefix-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-prefix-3.json -------------------------------------------------------------------------------- /firestore/v1/update-quoting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-quoting.json -------------------------------------------------------------------------------- /firestore/v1/update-split-top-level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-split-top-level.json -------------------------------------------------------------------------------- /firestore/v1/update-split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-split.json -------------------------------------------------------------------------------- /firestore/v1/update-st-alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-st-alone.json -------------------------------------------------------------------------------- /firestore/v1/update-st-dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-st-dot.json -------------------------------------------------------------------------------- /firestore/v1/update-st-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-st-multi.json -------------------------------------------------------------------------------- /firestore/v1/update-st-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-st-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-st-noarray-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-st-noarray-nested.json -------------------------------------------------------------------------------- /firestore/v1/update-st-noarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-st-noarray.json -------------------------------------------------------------------------------- /firestore/v1/update-st-with-empty-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-st-with-empty-map.json -------------------------------------------------------------------------------- /firestore/v1/update-st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-st.json -------------------------------------------------------------------------------- /firestore/v1/update-uptime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/update-uptime.json -------------------------------------------------------------------------------- /firestore/v1/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/firestore/v1/validator.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/go.sum -------------------------------------------------------------------------------- /storage/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/storage/v1/README.md -------------------------------------------------------------------------------- /storage/v1/proto/google/cloud/conformance/storage/v1/tests.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/storage/v1/proto/google/cloud/conformance/storage/v1/tests.proto -------------------------------------------------------------------------------- /storage/v1/retry_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/storage/v1/retry_tests.json -------------------------------------------------------------------------------- /storage/v1/test_service_account.not-a-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/storage/v1/test_service_account.not-a-test.json -------------------------------------------------------------------------------- /storage/v1/v4_signatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/storage/v1/v4_signatures.json -------------------------------------------------------------------------------- /storage/v1/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/conformance-tests/HEAD/storage/v1/validator.go --------------------------------------------------------------------------------