Can you use firebase-admin.firebase.Timestamp instead of FieldValue.serverTimestamp() in Firebase functions?
For generating server side timestamps in Google Cloud functions it seems like the documentation tends to point to using admin.firestore.FieldValue.serverTimestamp(). But there is also an option to use import {Timestamp} from "firebase-admin/firestore" which has a function Timestamp.now(). Seems a much…