@blocklet/server-js 1.16.49 → 1.16.50-beta-20250902-043619-201bcaed
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/browser.d.ts +1 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +12 -0
- package/dist/types.js +1 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +3 -1
- package/lib/node.d.ts +1 -0
- package/lib/schema/graphql.json +12 -0
- package/lib/types.js +1 -0
- package/lib/types.js.map +1 -1
- package/package.json +2 -2
package/docs/QUERIES.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ABT Node GraphQL API List
|
|
2
2
|
|
|
3
|
-
> Updated on 2025-
|
|
3
|
+
> Updated on 2025-09-01T13:55:33.496Z
|
|
4
4
|
|
|
5
5
|
## Table of Contents
|
|
6
6
|
|
|
@@ -4457,6 +4457,7 @@ No arguments
|
|
|
4457
4457
|
entityType
|
|
4458
4458
|
feedType
|
|
4459
4459
|
id
|
|
4460
|
+
options
|
|
4460
4461
|
read
|
|
4461
4462
|
receiver
|
|
4462
4463
|
sender
|
|
@@ -4861,6 +4862,7 @@ No arguments
|
|
|
4861
4862
|
entityType
|
|
4862
4863
|
feedType
|
|
4863
4864
|
id
|
|
4865
|
+
options
|
|
4864
4866
|
read
|
|
4865
4867
|
receiver
|
|
4866
4868
|
sender
|
package/lib/node.d.ts
CHANGED
|
@@ -3465,6 +3465,7 @@ declare namespace ABTNodeClient {
|
|
|
3465
3465
|
statistics: ABTNodeClient.NotificationStatistics;
|
|
3466
3466
|
activity: ABTNodeClient.NotificationActivity;
|
|
3467
3467
|
actorInfo: ABTNodeClient.UserInfo;
|
|
3468
|
+
options: Record<string, any>;
|
|
3468
3469
|
}
|
|
3469
3470
|
|
|
3470
3471
|
interface NotificationAction {
|
package/lib/schema/graphql.json
CHANGED
|
@@ -22581,6 +22581,18 @@
|
|
|
22581
22581
|
},
|
|
22582
22582
|
"isDeprecated": false,
|
|
22583
22583
|
"deprecationReason": null
|
|
22584
|
+
},
|
|
22585
|
+
{
|
|
22586
|
+
"name": "options",
|
|
22587
|
+
"description": null,
|
|
22588
|
+
"args": [],
|
|
22589
|
+
"type": {
|
|
22590
|
+
"kind": "SCALAR",
|
|
22591
|
+
"name": "Any",
|
|
22592
|
+
"ofType": null
|
|
22593
|
+
},
|
|
22594
|
+
"isDeprecated": false,
|
|
22595
|
+
"deprecationReason": null
|
|
22584
22596
|
}
|
|
22585
22597
|
],
|
|
22586
22598
|
"inputFields": null,
|
package/lib/types.js
CHANGED