@edgedev/firebase 1.7.0 → 1.7.1
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/README.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ A Vue 3 / Nuxt 3 Plugin or Nuxt 3 global composable for firebase authentication
|
|
|
9
9
|
**[Firestore Basic Document Interactions](#firestore-Basic-document-interactions)**
|
|
10
10
|
**[Firestore Snapshot Listeners](#firestore-snapshot-listeners)**
|
|
11
11
|
**[Firestore Static Collection Data](#firestore-static-collection-data)**
|
|
12
|
-
**[Await and response](#
|
|
12
|
+
**[Await and response](#responses)**
|
|
13
13
|
**[Firestore Rules](#firestore-rules)**
|
|
14
14
|
|
|
15
15
|
# Installation
|
|
@@ -748,6 +748,7 @@ Most functions will return a response that can be used.
|
|
|
748
748
|
|
|
749
749
|
```javascript
|
|
750
750
|
const response = edgeFirebase.startSnapshot("things");
|
|
751
|
+
const response = await edgeFirebase.storeDoc("myItems", {name: "John Doe"});
|
|
751
752
|
```
|
|
752
753
|
|
|
753
754
|
reponse:
|