I have the following function:
const functions = require(\'firebase-functions\'); const admin = require(\'firebase-admin\'); const FieldValue = require(\'fir
Turns out it was a mistake in the documentation, the correct import should have been const FieldValue = require('firebase-admin').firestore.FieldValue;
const FieldValue = require('firebase-admin').firestore.FieldValue;
Update
It should be said that Firebase responded within hours and are correcting the docs asap.