@abtnode/types 1.16.17-beta-1cab4b42 → 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 +11 -0
- package/lib/type_pb.d.ts +3 -0
- package/package.json +2 -2
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
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.17-beta-
|
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": "
|
39
|
+
"gitHead": "d8a04ff2ef9cd52a02d019bc2c9a743785e869c3"
|
40
40
|
}
|