@stoker-platform/types 0.5.38 → 0.5.39
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 +1 -1
- package/src/types/schema.ts +3 -2
package/package.json
CHANGED
package/src/types/schema.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FieldValue } from "firebase-admin/firestore"
|
|
1
|
+
import { Timestamp as AdminTimestamp, FieldValue } from "firebase-admin/firestore"
|
|
2
2
|
import { Timestamp, WhereFilterOp, WriteBatch } from "firebase/firestore"
|
|
3
3
|
import { NodeUtilities, WebUtilities } from "./app"
|
|
4
4
|
import { CalendarOptions } from "@fullcalendar/core"
|
|
@@ -7,7 +7,8 @@ import { SearchResult } from "minisearch"
|
|
|
7
7
|
export type StokerRole = string
|
|
8
8
|
export type StokerCollection = string
|
|
9
9
|
|
|
10
|
-
export type
|
|
10
|
+
export type FirestoreTimestamp = Timestamp | AdminTimestamp
|
|
11
|
+
export type InputTimestamp = Timestamp | FieldValue
|
|
11
12
|
|
|
12
13
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
13
14
|
|