Skip to content

Commit 8efef94

Browse files
authored
Merge e810c0d into 320e58c
2 parents 320e58c + e810c0d commit 8efef94

File tree

5 files changed

+633
-2
lines changed

5 files changed

+633
-2
lines changed

common/api-review/firestore.api.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,9 @@ export class QueryStartAtConstraint extends QueryConstraint {
601601
// @public
602602
export function refEqual<AppModelType, DbModelType extends DocumentData>(left: DocumentReference<AppModelType, DbModelType> | CollectionReference<AppModelType, DbModelType>, right: DocumentReference<AppModelType, DbModelType> | CollectionReference<AppModelType, DbModelType>): boolean;
603603

604+
// @public
605+
export function runPersistentCacheIndexPerformanceExperiment(log: (...args: unknown[]) => unknown, logLevel: 'info' | 'debug'): Promise<number>;
606+
604607
// @public
605608
export function runTransaction<T>(firestore: Firestore, updateFunction: (transaction: Transaction) => Promise<T>, options?: TransactionOptions): Promise<T>;
606609

packages/firestore/src/api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,8 @@ export {
210210
disablePersistentCacheIndexAutoCreation
211211
} from './api/persistent_cache_index_manager';
212212

213+
export { runPersistentCacheIndexPerformanceExperiment } from './api/persistent_cache_index_performance_experiment';
214+
213215
/**
214216
* Internal exports
215217
*/

0 commit comments

Comments
 (0)