@edgedev/firebase 1.6.0 → 1.6.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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -582,12 +582,12 @@ staticSearch.getData("myItems", query, sort, limit);
582
582
  ```
583
583
 
584
584
 
585
- # Await and responses
585
+ # Responses
586
586
 
587
- All functions can be used in conjunction with "await" and will return a response that can be used.
587
+ Most functions will return a response that can be used.
588
588
 
589
589
  ```javascript
590
- const response = await edgeFirebase.startSnapshot("things");
590
+ const response = edgeFirebase.startSnapshot("things");
591
591
  ```
592
592
 
593
593
  reponse:
@@ -596,6 +596,7 @@ reponse:
596
596
  interface actionResponse {
597
597
  success: boolean;
598
598
  message: string;
599
+ meta: {}
599
600
  }
600
601
  ```
601
602
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/firebase",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Vue 3 / Nuxt 3 Plugin or Nuxt 3 global composable for firebase authentication and firestore.",
5
5
  "main": "index.ts",
6
6
  "scripts": {