@edgedev/firebase 1.1.3 → 1.1.5

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.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -35,7 +35,6 @@ If not in Nuxt 3 or there is no need for it to be global, put this in your compo
35
35
  import * as edgeFirebase from "@edgedev/firebase";
36
36
  </script>
37
37
  ```
38
- <a name="Firebase Authentication>
39
38
  # Firebase Authentication
40
39
  (currently only sign in with email and password is supported)
41
40
 
@@ -104,7 +103,7 @@ const login = () => {
104
103
  ```
105
104
  # Firestore Basic Document Interactions
106
105
  ### Adding/Update a Document.
107
- Both adding and updating a document use the same function: **edgeFirebase.storeDoc(collectionPath, object)** for a document to be updated the object must contain the key **docId** and the value must match the ID of a document in the collection on are updating *(Note: All documents returned by edgeFirebase functions will already have docId insert in the document objects)*. If the object does not contain docId or the docId doesn't match a document in the collection, new document will be created.
106
+ Both adding and updating a document use the same function: **edgeFirebase.storeDoc(collectionPath, object)** for a document to be updated the object must contain the key **docId** and the value must match the ID of a document in the collection being updated *(Note: All documents returned by edgeFirebase functions will already have docId insert in the document objects)*. If the object does not contain docId or the docId doesn't match a document in the collection, new document will be created.
108
107
 
109
108
  ```javascript
110
109
  <script setup>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/firebase",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "Composables and stores for firebase",
5
5
  "main": "index.ts",
6
6
  "author": "Seth Fischer",