anymal-protocol 1.0.35 → 1.0.37
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 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -378,7 +378,6 @@ function useFetchNotifications() {
|
|
|
378
378
|
const query = `
|
|
379
379
|
query AnymalNotification($groupBy: [AnymalNotificationField!], $filter: AnymalNotificationFilterArg, $order: [AnymalNotificationOrderArg]) {
|
|
380
380
|
AnymalNotification(groupBy: $groupBy, filter: $filter, order: $order) {
|
|
381
|
-
_docID
|
|
382
381
|
anymalTxId
|
|
383
382
|
title
|
|
384
383
|
read
|
|
@@ -411,7 +410,7 @@ function useFetchNotifications() {
|
|
|
411
410
|
timeAddedUtc: "DESC"
|
|
412
411
|
}
|
|
413
412
|
];
|
|
414
|
-
const groupBy = ["anymalTxId", "title"
|
|
413
|
+
const groupBy = ["anymalTxId", "title"];
|
|
415
414
|
const variables = { filter, groupBy, order };
|
|
416
415
|
const response = await fetch(endpoint, {
|
|
417
416
|
method: "POST",
|
package/dist/index.mjs
CHANGED
|
@@ -333,7 +333,6 @@ function useFetchNotifications() {
|
|
|
333
333
|
const query = `
|
|
334
334
|
query AnymalNotification($groupBy: [AnymalNotificationField!], $filter: AnymalNotificationFilterArg, $order: [AnymalNotificationOrderArg]) {
|
|
335
335
|
AnymalNotification(groupBy: $groupBy, filter: $filter, order: $order) {
|
|
336
|
-
_docID
|
|
337
336
|
anymalTxId
|
|
338
337
|
title
|
|
339
338
|
read
|
|
@@ -366,7 +365,7 @@ function useFetchNotifications() {
|
|
|
366
365
|
timeAddedUtc: "DESC"
|
|
367
366
|
}
|
|
368
367
|
];
|
|
369
|
-
const groupBy = ["anymalTxId", "title"
|
|
368
|
+
const groupBy = ["anymalTxId", "title"];
|
|
370
369
|
const variables = { filter, groupBy, order };
|
|
371
370
|
const response = await fetch(endpoint, {
|
|
372
371
|
method: "POST",
|
package/package.json
CHANGED