@blocklet/server-js 1.16.52-beta-20250908-085420-224a58fa → 1.16.52-beta-20250909-073849-4e392ab1

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 CHANGED
@@ -147,12 +147,13 @@ declare class ABTNodeClient {
147
147
  ): Promise<ABTNodeClient.ResponseUserFollows>;
148
148
  getUserFollowStats(
149
149
  params: PartialDeep<ABTNodeClient.GetUserFollowStatsParams>
150
- ): Promise<ABTNodeClient.ResponseFollowStats>;
150
+ ): Promise<ABTNodeClient.ResponseUserRelationCount>;
151
151
  checkFollowing(
152
152
  params: PartialDeep<ABTNodeClient.CheckFollowingParams>
153
153
  ): Promise<ABTNodeClient.ResponseCheckFollowing>;
154
154
  followUser(params: PartialDeep<ABTNodeClient.FollowUserParams>): Promise<ABTNodeClient.GeneralResponse>;
155
155
  unfollowUser(params: PartialDeep<ABTNodeClient.UnfollowUserParams>): Promise<ABTNodeClient.GeneralResponse>;
156
+ getUserInvites(params: PartialDeep<ABTNodeClient.GetUserInvitesParams>): Promise<ABTNodeClient.ResponseUsers>;
156
157
  getTags(params: PartialDeep<ABTNodeClient.GetTagsParams>): Promise<ABTNodeClient.ResponseTags>;
157
158
  getAuditLogs(params: PartialDeep<ABTNodeClient.GetAuditLogsParams>): Promise<ABTNodeClient.ResponseGetAuditLogs>;
158
159
  getLauncherSession(
@@ -2102,7 +2103,12 @@ declare namespace ABTNodeClient {
2102
2103
  sessionId: string;
2103
2104
  }
2104
2105
 
2105
- interface RequestUserFollowsInput {
2106
+ interface RequestUserRelationCountInput {
2107
+ teamDid: string;
2108
+ userDids: string[];
2109
+ }
2110
+
2111
+ interface RequestUserRelationQueryInput {
2106
2112
  teamDid: string;
2107
2113
  userDid: string;
2108
2114
  paging: ABTNodeClient.PagingInput;
@@ -2110,11 +2116,6 @@ declare namespace ABTNodeClient {
2110
2116
  options: ABTNodeClient.QueryUserFollowOptionsInput;
2111
2117
  }
2112
2118
 
2113
- interface RequestUserFollowsStatsInput {
2114
- teamDid: string;
2115
- userDids: string[];
2116
- }
2117
-
2118
2119
  interface RequestUserSessionsCountInput {
2119
2120
  teamDid: string;
2120
2121
  query: ABTNodeClient.UserSessionQueryInput;
@@ -3716,10 +3717,11 @@ declare namespace ABTNodeClient {
3716
3717
  destroySelf: ABTNodeClient.ResponseUser;
3717
3718
  getUserFollowers: ABTNodeClient.ResponseUserFollows;
3718
3719
  getUserFollowing: ABTNodeClient.ResponseUserFollows;
3719
- getUserFollowStats: ABTNodeClient.ResponseFollowStats;
3720
+ getUserFollowStats: ABTNodeClient.ResponseUserRelationCount;
3720
3721
  checkFollowing: ABTNodeClient.ResponseCheckFollowing;
3721
3722
  followUser: ABTNodeClient.GeneralResponse;
3722
3723
  unfollowUser: ABTNodeClient.GeneralResponse;
3724
+ getUserInvites: ABTNodeClient.ResponseUsers;
3723
3725
  getTags: ABTNodeClient.ResponseTags;
3724
3726
  getAuditLogs: ABTNodeClient.ResponseGetAuditLogs;
3725
3727
  getLauncherSession: ABTNodeClient.ResponseGetLauncherSession;
@@ -4010,11 +4012,6 @@ declare namespace ABTNodeClient {
4010
4012
  cert: ABTNodeClient.Certificate;
4011
4013
  }
4012
4014
 
4013
- interface ResponseFollowStats {
4014
- code: ABTNodeClient.StatusCode;
4015
- data: Record<string, any>;
4016
- }
4017
-
4018
4015
  interface ResponseGateway {
4019
4016
  code: ABTNodeClient.StatusCode;
4020
4017
  gateway: ABTNodeClient.Gateway;
@@ -4364,6 +4361,11 @@ declare namespace ABTNodeClient {
4364
4361
  paging: ABTNodeClient.Paging;
4365
4362
  }
4366
4363
 
4364
+ interface ResponseUserRelationCount {
4365
+ code: ABTNodeClient.StatusCode;
4366
+ data: Record<string, any>;
4367
+ }
4368
+
4367
4369
  interface ResponseUserSessions {
4368
4370
  code: ABTNodeClient.StatusCode;
4369
4371
  list: ABTNodeClient.UserSession[];
@@ -4933,15 +4935,15 @@ declare namespace ABTNodeClient {
4933
4935
  }
4934
4936
 
4935
4937
  interface GetUserFollowersParams {
4936
- input: ABTNodeClient.RequestUserFollowsInput;
4938
+ input: ABTNodeClient.RequestUserRelationQueryInput;
4937
4939
  }
4938
4940
 
4939
4941
  interface GetUserFollowingParams {
4940
- input: ABTNodeClient.RequestUserFollowsInput;
4942
+ input: ABTNodeClient.RequestUserRelationQueryInput;
4941
4943
  }
4942
4944
 
4943
4945
  interface GetUserFollowStatsParams {
4944
- input: ABTNodeClient.RequestUserFollowsStatsInput;
4946
+ input: ABTNodeClient.RequestUserRelationCountInput;
4945
4947
  }
4946
4948
 
4947
4949
  interface CheckFollowingParams {
@@ -4956,6 +4958,10 @@ declare namespace ABTNodeClient {
4956
4958
  input: ABTNodeClient.RequestFollowUserActionInput;
4957
4959
  }
4958
4960
 
4961
+ interface GetUserInvitesParams {
4962
+ input: ABTNodeClient.RequestUserRelationQueryInput;
4963
+ }
4964
+
4959
4965
  interface GetTagsParams {
4960
4966
  input: ABTNodeClient.RequestTagsInput;
4961
4967
  }