diff --git a/etc/firebase-admin.firestore.api.md b/etc/firebase-admin.firestore.api.md index 34616cb222..1e44c9db3d 100644 --- a/etc/firebase-admin.firestore.api.md +++ b/etc/firebase-admin.firestore.api.md @@ -36,6 +36,7 @@ import { QueryPartition } from '@google-cloud/firestore'; import { QuerySnapshot } from '@google-cloud/firestore'; import { ReadOnlyTransactionOptions } from '@google-cloud/firestore'; import { ReadOptions } from '@google-cloud/firestore'; +import { ReadWriteTransactionOptions } from '@google-cloud/firestore'; import { setLogFunction } from '@google-cloud/firestore'; import { SetOptions } from '@google-cloud/firestore'; import { Settings } from '@google-cloud/firestore'; @@ -115,6 +116,8 @@ export { ReadOnlyTransactionOptions } export { ReadOptions } +export { ReadWriteTransactionOptions } + export { setLogFunction } export { SetOptions } diff --git a/src/firestore/index.ts b/src/firestore/index.ts index 2bd97da172..1d6ca4de5d 100644 --- a/src/firestore/index.ts +++ b/src/firestore/index.ts @@ -56,6 +56,7 @@ export { QuerySnapshot, ReadOptions, ReadOnlyTransactionOptions, + ReadWriteTransactionOptions, Settings, SetOptions, Timestamp,