@abtnode/types 1.16.17-beta-4f13d99d → 1.16.17-beta-5d4664f8
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 +17 -0
- package/lib/type_pb.d.ts +1 -1
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -836,3 +836,20 @@ export type TResponseRelease = {
|
|
836
836
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap],
|
837
837
|
release?: type_pb.TRelease,
|
838
838
|
}
|
839
|
+
export type TRequestGetSelectedResources = {
|
840
|
+
did: string,
|
841
|
+
projectId: string,
|
842
|
+
releaseId: string,
|
843
|
+
componentDid: string,
|
844
|
+
}
|
845
|
+
export type TResponseGetSelectedResources = {
|
846
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap],
|
847
|
+
resources: string[],
|
848
|
+
}
|
849
|
+
export type TRequestUpdateSelectedResources = {
|
850
|
+
did: string,
|
851
|
+
projectId: string,
|
852
|
+
releaseId: string,
|
853
|
+
componentDid: string,
|
854
|
+
resources: string[],
|
855
|
+
}
|
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-5d4664f8",
|
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": "e03febafae50406a3fb12706a2349e87ef2c1caa"
|
40
40
|
}
|