anymal-protocol 1.0.34 → 1.0.35
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -411,7 +411,7 @@ function useFetchNotifications() {
|
|
|
411
411
|
timeAddedUtc: "DESC"
|
|
412
412
|
}
|
|
413
413
|
];
|
|
414
|
-
const groupBy = ["anymalTxId", "title"];
|
|
414
|
+
const groupBy = ["anymalTxId", "title", "_docID", "read"];
|
|
415
415
|
const variables = { filter, groupBy, order };
|
|
416
416
|
const response = await fetch(endpoint, {
|
|
417
417
|
method: "POST",
|
package/dist/index.mjs
CHANGED
|
@@ -366,7 +366,7 @@ function useFetchNotifications() {
|
|
|
366
366
|
timeAddedUtc: "DESC"
|
|
367
367
|
}
|
|
368
368
|
];
|
|
369
|
-
const groupBy = ["anymalTxId", "title"];
|
|
369
|
+
const groupBy = ["anymalTxId", "title", "_docID", "read"];
|
|
370
370
|
const variables = { filter, groupBy, order };
|
|
371
371
|
const response = await fetch(endpoint, {
|
|
372
372
|
method: "POST",
|
package/package.json
CHANGED