@abtnode/schema 1.16.11-beta-8e4c6e5c → 1.16.11-beta-0ae58a71
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/index.js +12 -0
- package/lib/schema.graphqls +12 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -22,6 +22,12 @@ input BlockletControllerInput {
|
|
|
22
22
|
chainHost: String
|
|
23
23
|
expireDate: Uint32
|
|
24
24
|
consumedAt: String
|
|
25
|
+
status: BlockletControllerStatusInput
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
input BlockletControllerStatusInput {
|
|
29
|
+
value: Uint32
|
|
30
|
+
reason: String
|
|
25
31
|
}
|
|
26
32
|
|
|
27
33
|
input BlockletQueryInput {
|
|
@@ -821,6 +827,12 @@ type BlockletController {
|
|
|
821
827
|
chainHost: String
|
|
822
828
|
expireDate: Uint32
|
|
823
829
|
consumedAt: String
|
|
830
|
+
status: BlockletControllerStatus
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
type BlockletControllerStatus {
|
|
834
|
+
value: Uint32
|
|
835
|
+
reason: String
|
|
824
836
|
}
|
|
825
837
|
|
|
826
838
|
type BlockletDiff {
|
package/lib/schema.graphqls
CHANGED
|
@@ -22,6 +22,12 @@ input BlockletControllerInput {
|
|
|
22
22
|
chainHost: String
|
|
23
23
|
expireDate: Uint32
|
|
24
24
|
consumedAt: String
|
|
25
|
+
status: BlockletControllerStatusInput
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
input BlockletControllerStatusInput {
|
|
29
|
+
value: Uint32
|
|
30
|
+
reason: String
|
|
25
31
|
}
|
|
26
32
|
|
|
27
33
|
input BlockletQueryInput {
|
|
@@ -821,6 +827,12 @@ type BlockletController {
|
|
|
821
827
|
chainHost: String
|
|
822
828
|
expireDate: Uint32
|
|
823
829
|
consumedAt: String
|
|
830
|
+
status: BlockletControllerStatus
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
type BlockletControllerStatus {
|
|
834
|
+
value: Uint32
|
|
835
|
+
reason: String
|
|
824
836
|
}
|
|
825
837
|
|
|
826
838
|
type BlockletDiff {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.11-beta-
|
|
6
|
+
"version": "1.16.11-beta-0ae58a71",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "5d044a08b4399eb855563e670af7cbd0d3851e94",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|