@abtnode/types 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.
Files changed (2) hide show
  1. package/lib/rpc_pb.d.ts +8 -3
  2. package/package.json +2 -2
package/lib/rpc_pb.d.ts CHANGED
@@ -741,14 +741,19 @@ export type TQueryUserFollowOptions = {
741
741
  includeUserInfo: boolean;
742
742
  includeFollowStatus: boolean;
743
743
  };
744
- export type TRequestUserFollows = {
744
+ export type TRequestUserRelationQuery = {
745
745
  teamDid: string;
746
746
  userDid: string;
747
747
  paging?: type_pb.TPaging;
748
748
  sort?: type_pb.TUserSort;
749
749
  options?: TQueryUserFollowOptions;
750
750
  };
751
- export type TRequestUserFollowsStats = {
751
+ export type TResponseGetUserInvites = {
752
+ code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
753
+ data: type_pb.TUserInfo[];
754
+ paging?: type_pb.TPaging;
755
+ };
756
+ export type TRequestUserRelationCount = {
752
757
  teamDid: string;
753
758
  userDids: string[];
754
759
  };
@@ -782,7 +787,7 @@ export type TResponseUserFollows = {
782
787
  data: TUserFollows[];
783
788
  paging?: type_pb.TPaging;
784
789
  };
785
- export type TResponseFollowStats = {
790
+ export type TResponseUserRelationCount = {
786
791
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
787
792
  data?: Record<string, any>;
788
793
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.52-beta-20250908-085420-224a58fa",
3
+ "version": "1.16.52-beta-20250909-073849-4e392ab1",
4
4
  "description": "Typescript definitions generated from protobuf",
5
5
  "keywords": [
6
6
  "abtnode",
@@ -36,5 +36,5 @@
36
36
  "bugs": {
37
37
  "url": "https://github.com/ArcBlock/abt-node/issues"
38
38
  },
39
- "gitHead": "400eda55fc1058c961fd622907237a649b5c4f86"
39
+ "gitHead": "3b4b1551b181606f84799ba8b294fb36b483c9c3"
40
40
  }