Я получаю эту ошибку и не могу понять, почему
Ошибка:
Failed to configure trigger providers/cloud.firestore/eventTypes/document.create@firestore.googleapis.com
Функция:
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
exports.newSubmit = functions.firestore
.document('usersSubmit/{id}')
.onCreate(() => {
console.log('new document created');
});
Коллекция usersSubmit существует как Коллекция root. Это моя функция или облачные функции испытывают трудности?