@naturalcycles/firestore-lib 2.13.1 → 2.13.2
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.
- package/package.json +3 -3
- package/src/firestore.db.ts +3 -2
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@types/node": "^24",
|
|
13
13
|
"dotenv": "^17",
|
|
14
14
|
"firebase-admin": "^13",
|
|
15
|
-
"@naturalcycles/dev-lib": "
|
|
15
|
+
"@naturalcycles/dev-lib": "20.12.10"
|
|
16
16
|
},
|
|
17
17
|
"exports": {
|
|
18
18
|
".": "./dist/index.js"
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"directory": "packages/firestore-lib"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
|
-
"node": ">=
|
|
39
|
+
"node": ">=24.10.0"
|
|
40
40
|
},
|
|
41
|
-
"version": "2.13.
|
|
41
|
+
"version": "2.13.2",
|
|
42
42
|
"description": "Firestore implementation of CommonDB interface",
|
|
43
43
|
"author": "Natural Cycles Team",
|
|
44
44
|
"license": "MIT",
|
package/src/firestore.db.ts
CHANGED
|
@@ -582,7 +582,8 @@ export interface FirestoreDBStreamOptions extends FirestoreDBReadOptions {
|
|
|
582
582
|
|
|
583
583
|
export interface FirestoreDBOptions extends CommonDBOptions {}
|
|
584
584
|
export interface FirestoreDBReadOptions extends CommonDBReadOptions {}
|
|
585
|
-
export interface FirestoreDBSaveOptions<
|
|
586
|
-
extends
|
|
585
|
+
export interface FirestoreDBSaveOptions<
|
|
586
|
+
ROW extends ObjectWithId,
|
|
587
|
+
> extends CommonDBSaveOptions<ROW> {}
|
|
587
588
|
|
|
588
589
|
type SaveOp = 'create' | 'update' | 'set'
|