@blocklet/server-js 1.16.52-beta-20250911-023851-d988be85 → 1.16.52-beta-20250916-025146-35d976f4
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 +7 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +51 -0
- package/dist/types.js +11 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +1 -1
- package/lib/node.d.ts +7 -0
- package/lib/schema/graphql.json +51 -0
- package/lib/types.js +11 -0
- package/lib/types.js.map +1 -1
- package/package.json +2 -2
package/dist/schema/graphql.json
CHANGED
|
@@ -2973,6 +2973,47 @@
|
|
|
2973
2973
|
"enumValues": null,
|
|
2974
2974
|
"possibleTypes": null
|
|
2975
2975
|
},
|
|
2976
|
+
{
|
|
2977
|
+
"kind": "INPUT_OBJECT",
|
|
2978
|
+
"name": "QueryUserFollowStateOptionsInput",
|
|
2979
|
+
"description": null,
|
|
2980
|
+
"fields": null,
|
|
2981
|
+
"inputFields": [
|
|
2982
|
+
{
|
|
2983
|
+
"name": "includeFollowing",
|
|
2984
|
+
"description": null,
|
|
2985
|
+
"type": {
|
|
2986
|
+
"kind": "SCALAR",
|
|
2987
|
+
"name": "Boolean",
|
|
2988
|
+
"ofType": null
|
|
2989
|
+
},
|
|
2990
|
+
"defaultValue": null
|
|
2991
|
+
},
|
|
2992
|
+
{
|
|
2993
|
+
"name": "includeFollowers",
|
|
2994
|
+
"description": null,
|
|
2995
|
+
"type": {
|
|
2996
|
+
"kind": "SCALAR",
|
|
2997
|
+
"name": "Boolean",
|
|
2998
|
+
"ofType": null
|
|
2999
|
+
},
|
|
3000
|
+
"defaultValue": null
|
|
3001
|
+
},
|
|
3002
|
+
{
|
|
3003
|
+
"name": "includeInvitees",
|
|
3004
|
+
"description": null,
|
|
3005
|
+
"type": {
|
|
3006
|
+
"kind": "SCALAR",
|
|
3007
|
+
"name": "Boolean",
|
|
3008
|
+
"ofType": null
|
|
3009
|
+
},
|
|
3010
|
+
"defaultValue": null
|
|
3011
|
+
}
|
|
3012
|
+
],
|
|
3013
|
+
"interfaces": null,
|
|
3014
|
+
"enumValues": null,
|
|
3015
|
+
"possibleTypes": null
|
|
3016
|
+
},
|
|
2976
3017
|
{
|
|
2977
3018
|
"kind": "INPUT_OBJECT",
|
|
2978
3019
|
"name": "RequestAbortBlockletBackupInput",
|
|
@@ -10931,6 +10972,16 @@
|
|
|
10931
10972
|
}
|
|
10932
10973
|
},
|
|
10933
10974
|
"defaultValue": null
|
|
10975
|
+
},
|
|
10976
|
+
{
|
|
10977
|
+
"name": "options",
|
|
10978
|
+
"description": null,
|
|
10979
|
+
"type": {
|
|
10980
|
+
"kind": "INPUT_OBJECT",
|
|
10981
|
+
"name": "QueryUserFollowStateOptionsInput",
|
|
10982
|
+
"ofType": null
|
|
10983
|
+
},
|
|
10984
|
+
"defaultValue": null
|
|
10934
10985
|
}
|
|
10935
10986
|
],
|
|
10936
10987
|
"interfaces": null,
|
package/dist/types.js
CHANGED
|
@@ -816,6 +816,16 @@
|
|
|
816
816
|
* @property {boolean} includeFollowStatus
|
|
817
817
|
*/
|
|
818
818
|
|
|
819
|
+
/**
|
|
820
|
+
* Structure of ABTNodeClient.QueryUserFollowStateOptionsInput
|
|
821
|
+
*
|
|
822
|
+
* @memberof ABTNodeClient
|
|
823
|
+
* @typedef {object} ABTNodeClient.QueryUserFollowStateOptionsInput
|
|
824
|
+
* @property {boolean} includeFollowing
|
|
825
|
+
* @property {boolean} includeFollowers
|
|
826
|
+
* @property {boolean} includeInvitees
|
|
827
|
+
*/
|
|
828
|
+
|
|
819
829
|
/**
|
|
820
830
|
* Structure of ABTNodeClient.RequestAbortBlockletBackupInput
|
|
821
831
|
*
|
|
@@ -2605,6 +2615,7 @@
|
|
|
2605
2615
|
* @typedef {object} ABTNodeClient.RequestUserRelationCountInput
|
|
2606
2616
|
* @property {string} teamDid
|
|
2607
2617
|
* @property {Array<...ABTNodeClient.null>} userDids
|
|
2618
|
+
* @property {...ABTNodeClient.QueryUserFollowStateOptionsInput} options
|
|
2608
2619
|
*/
|
|
2609
2620
|
|
|
2610
2621
|
/**
|