Skip to content

Commit 11dbdd7

Browse files
committed
Revert "Simplify document types by removing WriteResult"
This reverts commit 21c65ef.
1 parent 8767311 commit 11dbdd7

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/types.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type {
44
PartialWithFieldValue,
55
Transaction,
66
UpdateData,
7+
WriteResult,
78
} from "firebase-admin/firestore";
89

910
export type FsData = Record<string, unknown>;
@@ -28,23 +29,25 @@ export type FsDocument<T> = Readonly<{
2829
}>;
2930

3031
export type FsMutableDocument<TNarrowOrFull, TFull = TNarrowOrFull> = Readonly<{
31-
ref: DocumentReference<TNarrowOrFull>;
32-
update: (data: UpdateData<TFull>) => Promise<void>;
32+
ref: DocumentReference;
33+
update: (data: UpdateData<TFull>) => Promise<WriteResult>;
3334
/**
3435
* The Firestore UpdateData<T> type can reject nested data that is perfectly
3536
* valid. In those cases you have this as an alternative based on Partial<T>
3637
* with FieldValue allowed for each root property.
3738
*/
38-
updateWithPartial: (data: PartialWithFieldValue<TFull>) => Promise<void>;
39-
delete: () => Promise<void>;
39+
updateWithPartial: (
40+
data: PartialWithFieldValue<TFull>
41+
) => Promise<WriteResult>;
42+
delete: () => Promise<WriteResult>;
4043
}> &
4144
FsDocument<TNarrowOrFull>;
4245

4346
export type FsMutableDocumentInTransaction<
4447
TNarrowOrFull,
4548
TFull = TNarrowOrFull,
4649
> = Readonly<{
47-
ref: DocumentReference<TNarrowOrFull>;
50+
ref: DocumentReference;
4851
update: (data: UpdateData<TFull>) => Transaction;
4952
/**
5053
* The Firestore UpdateData<T> type can reject nested data that is perfectly

0 commit comments

Comments
 (0)