@abtnode/schema 1.16.11-next-a232f5fb → 1.16.11-next-3d2b39f7
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 +9 -4
- package/lib/schema.graphqls +9 -4
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -212,6 +212,11 @@ input RequestCheckDomainsInput {
|
|
|
212
212
|
did: String
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
input RequestComponentsInput {
|
|
216
|
+
did: String
|
|
217
|
+
componentDids: [String!]
|
|
218
|
+
}
|
|
219
|
+
|
|
215
220
|
input RequestConfigBlockletInput {
|
|
216
221
|
did: [String!]
|
|
217
222
|
configs: [ConfigEntryInput!]
|
|
@@ -1884,10 +1889,10 @@ scalar Upload
|
|
|
1884
1889
|
type Mutation {
|
|
1885
1890
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1886
1891
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1887
|
-
startBlocklet(input:
|
|
1888
|
-
stopBlocklet(input:
|
|
1889
|
-
reloadBlocklet(input:
|
|
1890
|
-
restartBlocklet(input:
|
|
1892
|
+
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1893
|
+
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1894
|
+
reloadBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1895
|
+
restartBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1891
1896
|
deleteBlocklet(input: RequestDeleteBlockletInput): ResponseBlocklet
|
|
1892
1897
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1893
1898
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
package/lib/schema.graphqls
CHANGED
|
@@ -212,6 +212,11 @@ input RequestCheckDomainsInput {
|
|
|
212
212
|
did: String
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
input RequestComponentsInput {
|
|
216
|
+
did: String
|
|
217
|
+
componentDids: [String!]
|
|
218
|
+
}
|
|
219
|
+
|
|
215
220
|
input RequestConfigBlockletInput {
|
|
216
221
|
did: [String!]
|
|
217
222
|
configs: [ConfigEntryInput!]
|
|
@@ -1886,10 +1891,10 @@ enum Upload {
|
|
|
1886
1891
|
type Mutation {
|
|
1887
1892
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1888
1893
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1889
|
-
startBlocklet(input:
|
|
1890
|
-
stopBlocklet(input:
|
|
1891
|
-
reloadBlocklet(input:
|
|
1892
|
-
restartBlocklet(input:
|
|
1894
|
+
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1895
|
+
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1896
|
+
reloadBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1897
|
+
restartBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1893
1898
|
deleteBlocklet(input: RequestDeleteBlockletInput): ResponseBlocklet
|
|
1894
1899
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1895
1900
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.11-next-
|
|
6
|
+
"version": "1.16.11-next-3d2b39f7",
|
|
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": "d0142bd2d1e49b94dcb5542d78e294a7b2258faa",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|