I want to be able to schedule data exports, exactly how it is done here:
https://firebase.google.com/docs/firestore/solutions/schedule-export
But the following client is not available in the interop
const firestore = require('@google-cloud/firestore'); const client = new firestore.v1.FirestoreAdminClient();
...
client.exportDocuments({ name: databaseName, ... })
and thus the function to export the documents cannot be used.