@abtnode/types 1.16.17-beta-5d4664f8 → 1.16.17-beta-ce49fe0e

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
@@ -709,6 +709,17 @@ export type TResponseGetBlockletSpaceGateways = {
709
709
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap],
710
710
  spaceGateways: type_pb.TSpaceGateway[],
711
711
  }
712
+ export type TRequestUpdateAutoBackup = {
713
+ did: string,
714
+ autobackup?: type_pb.TAutoBackup,
715
+ }
716
+ export type TRequestGetAutoBackup = {
717
+ did: string,
718
+ }
719
+ export type TResponseGetAutoBackup = {
720
+ code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap],
721
+ autobackup?: type_pb.TAutoBackup,
722
+ }
712
723
  export type TRequestGetBlockletBackups = {
713
724
  did: string,
714
725
  }
package/lib/type_pb.d.ts CHANGED
@@ -772,6 +772,9 @@ export type TBackup = {
772
772
  message: string,
773
773
  progress: number,
774
774
  }
775
+ export type TAutoBackup = {
776
+ enabled: boolean,
777
+ }
775
778
  export type TSessionConfig = {
776
779
  cacheTtl: number,
777
780
  ttl: number,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.17-beta-5d4664f8",
3
+ "version": "1.16.17-beta-ce49fe0e",
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": "e03febafae50406a3fb12706a2349e87ef2c1caa"
39
+ "gitHead": "d8a04ff2ef9cd52a02d019bc2c9a743785e869c3"
40
40
  }