@@ -37,8 +37,8 @@ export {
37
37
38
38
/**
39
39
* A single field element in an index configuration.
40
+ * @beta
40
41
*/
41
- /** @beta */
42
42
export interface IndexField {
43
43
/** The field path to index. */
44
44
readonly fieldPath : string ;
@@ -62,8 +62,8 @@ export interface IndexField {
62
62
63
63
/**
64
64
* The SDK definition of a Firestore index.
65
+ * @beta
65
66
*/
66
- /** @beta */
67
67
export interface Index {
68
68
/** The ID of the collection to index. */
69
69
readonly collectionGroup : string ;
@@ -78,8 +78,8 @@ export interface Index {
78
78
*
79
79
* See {@link https://firebase.google.com/docs/reference/firestore/indexes/#json_format | JSON Format}
80
80
* for a description of the format of the index definition.
81
+ * @beta
81
82
*/
82
- /** @beta */
83
83
export interface IndexConfiguration {
84
84
/** A list of all Firestore indexes. */
85
85
readonly indexes ?: Index [ ] ;
@@ -107,8 +107,8 @@ export interface IndexConfiguration {
107
107
* @throws FirestoreError if the JSON format is invalid.
108
108
* @returns A `Promise` that resolves once all indices are successfully
109
109
* configured.
110
+ * @beta
110
111
*/
111
- /** @beta */
112
112
export function setIndexConfiguration (
113
113
firestore : Firestore ,
114
114
configuration : IndexConfiguration
@@ -138,8 +138,8 @@ export function setIndexConfiguration(
138
138
* @throws FirestoreError if the JSON format is invalid.
139
139
* @returns A `Promise` that resolves once all indices are successfully
140
140
* configured.
141
+ * @beta
141
142
*/
142
- /** @beta */
143
143
export function setIndexConfiguration (
144
144
firestore : Firestore ,
145
145
json : string
0 commit comments