anymal-protocol 1.0.33 → 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 +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -383,6 +383,7 @@ function useFetchNotifications() {
|
|
|
383
383
|
title
|
|
384
384
|
read
|
|
385
385
|
_group {
|
|
386
|
+
_docID
|
|
386
387
|
source
|
|
387
388
|
action
|
|
388
389
|
anymalTxId
|
|
@@ -410,7 +411,7 @@ function useFetchNotifications() {
|
|
|
410
411
|
timeAddedUtc: "DESC"
|
|
411
412
|
}
|
|
412
413
|
];
|
|
413
|
-
const groupBy = ["anymalTxId", "title"];
|
|
414
|
+
const groupBy = ["anymalTxId", "title", "_docID", "read"];
|
|
414
415
|
const variables = { filter, groupBy, order };
|
|
415
416
|
const response = await fetch(endpoint, {
|
|
416
417
|
method: "POST",
|
package/dist/index.mjs
CHANGED
|
@@ -338,6 +338,7 @@ function useFetchNotifications() {
|
|
|
338
338
|
title
|
|
339
339
|
read
|
|
340
340
|
_group {
|
|
341
|
+
_docID
|
|
341
342
|
source
|
|
342
343
|
action
|
|
343
344
|
anymalTxId
|
|
@@ -365,7 +366,7 @@ function useFetchNotifications() {
|
|
|
365
366
|
timeAddedUtc: "DESC"
|
|
366
367
|
}
|
|
367
368
|
];
|
|
368
|
-
const groupBy = ["anymalTxId", "title"];
|
|
369
|
+
const groupBy = ["anymalTxId", "title", "_docID", "read"];
|
|
369
370
|
const variables = { filter, groupBy, order };
|
|
370
371
|
const response = await fetch(endpoint, {
|
|
371
372
|
method: "POST",
|
package/package.json
CHANGED