Skip to content

Commit 01654a7

Browse files
committed
Update with Firestore doc changes
1 parent b3d0c67 commit 01654a7

6 files changed

+10
-10
lines changed

docs-devsite/firestore_.aggregatefield.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export declare class AggregateField<T>
2222

2323
| Property | Modifiers | Type | Description |
2424
| --- | --- | --- | --- |
25-
| [type](./firestore_.aggregatefield.md#aggregatefieldtype) | | string | A type string to uniquely identify instances of this class. |
25+
| [type](./firestore_.aggregatefield.md#aggregatefieldtype) | | (not declared) | A type string to uniquely identify instances of this class. |
2626

2727
## AggregateField.type
2828

@@ -31,5 +31,5 @@ A type string to uniquely identify instances of this class.
3131
<b>Signature:</b>
3232

3333
```typescript
34-
type: string;
34+
readonly type = "AggregateField";
3535
```

docs-devsite/firestore_.aggregatespec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
1010
{% endcomment %}
1111

1212
# AggregateSpec interface
13-
A type whose property values are all `AggregateField` objects.
13+
Specifies a set of aggregations and their aliases.
1414

1515
<b>Signature:</b>
1616

docs-devsite/firestore_.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ https://github.com/firebase/firebase-js-sdk
134134

135135
| Interface | Description |
136136
| --- | --- |
137-
| [AggregateSpec](./firestore_.aggregatespec.md#aggregatespec_interface) | A type whose property values are all <code>AggregateField</code> objects. |
137+
| [AggregateSpec](./firestore_.aggregatespec.md#aggregatespec_interface) | Specifies a set of aggregations and their aliases. |
138138
| [DocumentChange](./firestore_.documentchange.md#documentchange_interface) | A <code>DocumentChange</code> represents a change to the documents matching a query. It contains the document affected and the type of change that occurred. |
139139
| [DocumentData](./firestore_.documentdata.md#documentdata_interface) | Document data (for use with [setDoc()](./firestore_lite.md#setdoc)<!-- -->) consists of fields mapped to values. |
140140
| [FirestoreDataConverter](./firestore_.firestoredataconverter.md#firestoredataconverter_interface) | Converter used by <code>withConverter()</code> to transform user objects of type <code>T</code> into Firestore data.<!-- -->Using the converter allows you to specify generic type arguments when storing and retrieving objects from Firestore. |
@@ -1946,7 +1946,7 @@ The union of all `AggregateField` types that are supported by Firestore.
19461946
<b>Signature:</b>
19471947

19481948
```typescript
1949-
export declare type AggregateFieldType = AggregateField<number>;
1949+
export declare type AggregateFieldType = AggregateField<number | null>;
19501950
```
19511951

19521952
## AggregateSpecData

docs-devsite/firestore_lite.aggregatefield.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export declare class AggregateField<T>
2222

2323
| Property | Modifiers | Type | Description |
2424
| --- | --- | --- | --- |
25-
| [type](./firestore_lite.aggregatefield.md#aggregatefieldtype) | | string | A type string to uniquely identify instances of this class. |
25+
| [type](./firestore_lite.aggregatefield.md#aggregatefieldtype) | | (not declared) | A type string to uniquely identify instances of this class. |
2626

2727
## AggregateField.type
2828

@@ -31,5 +31,5 @@ A type string to uniquely identify instances of this class.
3131
<b>Signature:</b>
3232

3333
```typescript
34-
type: string;
34+
readonly type = "AggregateField";
3535
```

docs-devsite/firestore_lite.aggregatespec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
1010
{% endcomment %}
1111

1212
# AggregateSpec interface
13-
A type whose property values are all `AggregateField` objects.
13+
Specifies a set of aggregations and their aliases.
1414

1515
<b>Signature:</b>
1616

docs-devsite/firestore_lite.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ https://github.com/firebase/firebase-js-sdk
108108

109109
| Interface | Description |
110110
| --- | --- |
111-
| [AggregateSpec](./firestore_lite.aggregatespec.md#aggregatespec_interface) | A type whose property values are all <code>AggregateField</code> objects. |
111+
| [AggregateSpec](./firestore_lite.aggregatespec.md#aggregatespec_interface) | Specifies a set of aggregations and their aliases. |
112112
| [DocumentData](./firestore_lite.documentdata.md#documentdata_interface) | Document data (for use with [setDoc()](./firestore_lite.md#setdoc)<!-- -->) consists of fields mapped to values. |
113113
| [FirestoreDataConverter](./firestore_lite.firestoredataconverter.md#firestoredataconverter_interface) | Converter used by <code>withConverter()</code> to transform user objects of type <code>T</code> into Firestore data.<!-- -->Using the converter allows you to specify generic type arguments when storing and retrieving objects from Firestore. |
114114
| [Settings](./firestore_lite.settings.md#settings_interface) | Specifies custom configurations for your Cloud Firestore instance. You must set these before invoking any other methods. |
@@ -1277,7 +1277,7 @@ The union of all `AggregateField` types that are supported by Firestore.
12771277
<b>Signature:</b>
12781278

12791279
```typescript
1280-
export declare type AggregateFieldType = AggregateField<number>;
1280+
export declare type AggregateFieldType = AggregateField<number | null>;
12811281
```
12821282

12831283
## AggregateSpecData

0 commit comments

Comments
 (0)