Skip to content

Commit 32e3045

Browse files
fix(firestore): update the api
#### firestore:v1 The following keys were changed: - endpoints (Total Keys: 1) #### firestore:v1beta1 The following keys were changed: - endpoints (Total Keys: 1) #### firestore:v1beta2 The following keys were changed: - endpoints (Total Keys: 1)
1 parent 33c6632 commit 32e3045

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

googleapiclient/discovery_cache/documents/firestore.v1.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
"description": "Regional Endpoint",
2424
"endpointUrl": "https://firestore.us-east7.rep.googleapis.com/",
2525
"location": "us-east7"
26+
},
27+
{
28+
"description": "Regional Endpoint",
29+
"endpointUrl": "https://batch-firestore.us-east7.rep.googleapis.com/",
30+
"location": "us-east7"
2631
}
2732
],
2833
"fullyEncodeReservedExpansion": true,
@@ -1956,7 +1961,7 @@
19561961
}
19571962
}
19581963
},
1959-
"revision": "20250824",
1964+
"revision": "20250830",
19601965
"rootUrl": "https://firestore.googleapis.com/",
19611966
"schemas": {
19621967
"Aggregation": {
@@ -3532,9 +3537,9 @@
35323537
],
35333538
"enumDescriptions": [
35343539
"Unspecified. It will use database default setting. This value is input only.",
3535-
"In order for an index entry to be added, the document must contain all fields specified in the index. This is the only allowed value for indexes having ApiScope `ANY_API` and `DATASTORE_MODE_API`.",
3536-
"In order for an index entry to be added, the document must contain at least one of the fields specified in the index. Non-existent fields are treated as having a NULL value when generating index entries.",
3537-
"An index entry will be added regardless of whether the document contains any of the fields specified in the index. Non-existent fields are treated as having a NULL value when generating index entries."
3540+
"An index entry will only exist if ALL fields are present in the document. This is both the default and only allowed value for Standard Edition databases (for both Cloud Firestore `ANY_API` and Cloud Datastore `DATASTORE_MODE_API`). Take for example the following document: ``` { \"__name__\": \"...\", \"a\": 1, \"b\": 2, \"c\": 3 } ``` an index on `(a ASC, b ASC, c ASC, __name__ ASC)` will generate an index entry for this document since `a`, 'b', `c`, and `__name__` are all present but an index of `(a ASC, d ASC, __name__ ASC)` will not generate an index entry for this document since `d` is missing. This means that such indexes can only be used to serve a query when the query has either implicit or explicit requirements that all fields from the index are present.",
3541+
"An index entry will exist if ANY field are present in the document. This is used as the definition of a sparse index for Enterprise Edition databases. Take for example the following document: ``` { \"__name__\": \"...\", \"a\": 1, \"b\": 2, \"c\": 3 } ``` an index on `(a ASC, d ASC)` will generate an index entry for this document since `a` is present, and will fill in an `unset` value for `d`. An index on `(d ASC, e ASC)` will not generate any index entry as neither `d` nor `e` are present. An index that contains `__name__` will generate an index entry for all documents since Firestore guarantees that all documents have a `__name__` field.",
3542+
"An index entry will exist regardless of if the fields are present or not. This is the default density for an Enterprise Edition database. The index will store `unset` values for fields that are not present in the document."
35383543
],
35393544
"type": "string"
35403545
},

googleapiclient/discovery_cache/documents/firestore.v1beta1.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
"description": "Regional Endpoint",
2424
"endpointUrl": "https://firestore.us-east7.rep.googleapis.com/",
2525
"location": "us-east7"
26+
},
27+
{
28+
"description": "Regional Endpoint",
29+
"endpointUrl": "https://batch-firestore.us-east7.rep.googleapis.com/",
30+
"location": "us-east7"
2631
}
2732
],
2833
"fullyEncodeReservedExpansion": true,
@@ -957,7 +962,7 @@
957962
}
958963
}
959964
},
960-
"revision": "20250811",
965+
"revision": "20250830",
961966
"rootUrl": "https://firestore.googleapis.com/",
962967
"schemas": {
963968
"Aggregation": {

googleapiclient/discovery_cache/documents/firestore.v1beta2.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
"description": "Regional Endpoint",
2424
"endpointUrl": "https://firestore.us-east7.rep.googleapis.com/",
2525
"location": "us-east7"
26+
},
27+
{
28+
"description": "Regional Endpoint",
29+
"endpointUrl": "https://batch-firestore.us-east7.rep.googleapis.com/",
30+
"location": "us-east7"
2631
}
2732
],
2833
"fullyEncodeReservedExpansion": true,
@@ -422,7 +427,7 @@
422427
}
423428
}
424429
},
425-
"revision": "20250811",
430+
"revision": "20250830",
426431
"rootUrl": "https://firestore.googleapis.com/",
427432
"schemas": {
428433
"Empty": {

0 commit comments

Comments
 (0)