anymal-protocol 1.0.32 → 1.0.34
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 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -378,10 +378,12 @@ 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
|
|
381
382
|
anymalTxId
|
|
382
383
|
title
|
|
383
384
|
read
|
|
384
385
|
_group {
|
|
386
|
+
_docID
|
|
385
387
|
source
|
|
386
388
|
action
|
|
387
389
|
anymalTxId
|
package/dist/index.mjs
CHANGED
|
@@ -333,10 +333,12 @@ 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
|
|
336
337
|
anymalTxId
|
|
337
338
|
title
|
|
338
339
|
read
|
|
339
340
|
_group {
|
|
341
|
+
_docID
|
|
340
342
|
source
|
|
341
343
|
action
|
|
342
344
|
anymalTxId
|
package/package.json
CHANGED