@firebase/firestore 4.3.2-canary.bebecdaad → 4.3.2-canary.e9ff107ee

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -98,13 +98,16 @@ export declare class View {
98
98
  * Updates the view with the given ViewDocumentChanges and optionally updates
99
99
  * limbo docs and sync state from the provided target change.
100
100
  * @param docChanges - The set of changes to make to the view's docs.
101
- * @param updateLimboDocuments - Whether to update limbo documents based on
101
+ * @param limboResolutionEnabled - Whether to update limbo documents based on
102
102
  * this change.
103
103
  * @param targetChange - A target change to apply for computing limbo docs and
104
104
  * sync state.
105
+ * @param targetIsPendingReset - Whether the target is pending to reset due to
106
+ * existence filter mismatch. If not explicitly specified, it is treated
107
+ * equivalently to `false`.
105
108
  * @returns A new ViewChange with the given docs, changes, and sync state.
106
109
  */
107
- applyChanges(docChanges: ViewDocumentChanges, updateLimboDocuments: boolean, targetChange?: TargetChange): ViewChange;
110
+ applyChanges(docChanges: ViewDocumentChanges, limboResolutionEnabled: boolean, targetChange?: TargetChange, targetIsPendingReset?: boolean): ViewChange;
108
111
  /**
109
112
  * Applies an OnlineState change to the view, potentially generating a
110
113
  * ViewChange if the view's syncState changes as a result.