@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.
- package/README.md +4 -3
- 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
|
-
#
|
|
585
|
+
# Responses
|
|
586
586
|
|
|
587
|
-
|
|
587
|
+
Most functions will return a response that can be used.
|
|
588
588
|
|
|
589
589
|
```javascript
|
|
590
|
-
const response =
|
|
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
|
|