@@ -4,6 +4,7 @@ import type {
4
4
PartialWithFieldValue ,
5
5
Transaction ,
6
6
UpdateData ,
7
+ WriteResult ,
7
8
} from "firebase-admin/firestore" ;
8
9
9
10
export type FsData = Record < string , unknown > ;
@@ -28,23 +29,25 @@ export type FsDocument<T> = Readonly<{
28
29
} > ;
29
30
30
31
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 > ;
33
34
/**
34
35
* The Firestore UpdateData<T> type can reject nested data that is perfectly
35
36
* valid. In those cases you have this as an alternative based on Partial<T>
36
37
* with FieldValue allowed for each root property.
37
38
*/
38
- updateWithPartial : ( data : PartialWithFieldValue < TFull > ) => Promise < void > ;
39
- delete : ( ) => Promise < void > ;
39
+ updateWithPartial : (
40
+ data : PartialWithFieldValue < TFull >
41
+ ) => Promise < WriteResult > ;
42
+ delete : ( ) => Promise < WriteResult > ;
40
43
} > &
41
44
FsDocument < TNarrowOrFull > ;
42
45
43
46
export type FsMutableDocumentInTransaction <
44
47
TNarrowOrFull ,
45
48
TFull = TNarrowOrFull ,
46
49
> = Readonly < {
47
- ref : DocumentReference < TNarrowOrFull > ;
50
+ ref : DocumentReference ;
48
51
update : ( data : UpdateData < TFull > ) => Transaction ;
49
52
/**
50
53
* The Firestore UpdateData<T> type can reject nested data that is perfectly
0 commit comments