@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/docs/QUERIES.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # ABT Node GraphQL API List
2
2
 
3
- > Updated on 2025-09-08T13:27:25.516Z
3
+ > Updated on 2025-09-12T09:43:53.354Z
4
4
 
5
5
  ## Table of Contents
6
6
 
package/lib/node.d.ts CHANGED
@@ -1013,6 +1013,12 @@ declare namespace ABTNodeClient {
1013
1013
  includeFollowStatus: boolean;
1014
1014
  }
1015
1015
 
1016
+ interface QueryUserFollowStateOptionsInput {
1017
+ includeFollowing: boolean;
1018
+ includeFollowers: boolean;
1019
+ includeInvitees: boolean;
1020
+ }
1021
+
1016
1022
  interface RequestAbortBlockletBackupInput {
1017
1023
  appPid: string;
1018
1024
  }
@@ -2106,6 +2112,7 @@ declare namespace ABTNodeClient {
2106
2112
  interface RequestUserRelationCountInput {
2107
2113
  teamDid: string;
2108
2114
  userDids: string[];
2115
+ options: ABTNodeClient.QueryUserFollowStateOptionsInput;
2109
2116
  }
2110
2117
 
2111
2118
  interface RequestUserRelationQueryInput {
@@ -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/lib/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
  /**