@abtnode/types 1.16.41-beta-20250319-034744-5c62f533 → 1.16.41-beta-20250321-223009-25dace48

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/lib/rpc_pb.d.ts CHANGED
@@ -703,6 +703,11 @@ export type TRequestUpdateUserProfile = {
703
703
  remark: string;
704
704
  locale: string;
705
705
  };
706
+ export type TRequestUpdateUserAddress = {
707
+ teamDid: string;
708
+ did: string;
709
+ address?: type_pb.TUserAddress;
710
+ };
706
711
  export type TRequestTeamUserOptions = {
707
712
  enableConnectedAccount: boolean;
708
713
  includeTags: boolean;
@@ -827,6 +832,8 @@ export type TRequestUpdateAutoBackup = {
827
832
  };
828
833
  export type TRequestGetBlockletBackups = {
829
834
  did: string;
835
+ startTime: string;
836
+ endTime: string;
830
837
  };
831
838
  export type TResponseGetBlockletBackups = {
832
839
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
@@ -1212,3 +1219,17 @@ export type TResponseGetWebhookAttempts = {
1212
1219
  list: type_pb.TWebhookAttemptWithEndpointEventState[];
1213
1220
  paging?: type_pb.TPaging;
1214
1221
  };
1222
+ export type TRequestGetBlockletBackupSummary = {
1223
+ did: string;
1224
+ startTime: string;
1225
+ endTime: string;
1226
+ };
1227
+ export type TBackupSummaryItem = {
1228
+ date: string;
1229
+ successCount: number;
1230
+ errorCount: number;
1231
+ };
1232
+ export type TResponseGetBlockletBackupSummary = {
1233
+ code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
1234
+ summary: TBackupSummaryItem[];
1235
+ };
package/lib/type_pb.d.ts CHANGED
@@ -1068,6 +1068,7 @@ export type TBackup = {
1068
1068
  status: number;
1069
1069
  message: string;
1070
1070
  progress: number;
1071
+ metadata?: Record<string, any>;
1071
1072
  };
1072
1073
  export type TAutoBackup = {
1073
1074
  enabled: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.41-beta-20250319-034744-5c62f533",
3
+ "version": "1.16.41-beta-20250321-223009-25dace48",
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": "c7d75c3c1dc4d29bef4f08c553cdfe7cf36e9492"
39
+ "gitHead": "b12975e9604c4faf73766feb325f9124226bfff1"
40
40
  }