@abtnode/types 1.16.41-beta-20250319-131732-1224cca5 → 1.16.41-beta-20250325-054737-39c060ca

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
@@ -832,6 +832,8 @@ export type TRequestUpdateAutoBackup = {
832
832
  };
833
833
  export type TRequestGetBlockletBackups = {
834
834
  did: string;
835
+ startTime: string;
836
+ endTime: string;
835
837
  };
836
838
  export type TResponseGetBlockletBackups = {
837
839
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
@@ -1217,3 +1219,17 @@ export type TResponseGetWebhookAttempts = {
1217
1219
  list: type_pb.TWebhookAttemptWithEndpointEventState[];
1218
1220
  paging?: type_pb.TPaging;
1219
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-131732-1224cca5",
3
+ "version": "1.16.41-beta-20250325-054737-39c060ca",
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": "a05391c26247f000ae87f30a36789313857f313e"
39
+ "gitHead": "9e56cfa4785c8c15e6b9091625f380bb7bc46670"
40
40
  }