@abtnode/schema 1.8.22 → 1.8.23
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 +16 -2
- package/lib/schema.graphqls +16 -2
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -429,6 +429,18 @@ input RequestUpdateChildBlockletsInput {
|
|
|
429
429
|
rootDid: String
|
|
430
430
|
}
|
|
431
431
|
|
|
432
|
+
input RequestUpdateComponentMountPointInput {
|
|
433
|
+
did: String
|
|
434
|
+
rootDid: String
|
|
435
|
+
mountPoint: String
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
input RequestUpdateComponentTitleInput {
|
|
439
|
+
did: String
|
|
440
|
+
rootDid: String
|
|
441
|
+
title: String
|
|
442
|
+
}
|
|
443
|
+
|
|
432
444
|
input RequestUpdateNginxHttpsCertInput {
|
|
433
445
|
id: String
|
|
434
446
|
name: String
|
|
@@ -1588,11 +1600,13 @@ type Mutation {
|
|
|
1588
1600
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1589
1601
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1590
1602
|
upgradeBlocklet(input: RequestUpgradeBlockletInput): ResponseBlocklet
|
|
1591
|
-
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1592
1603
|
checkChildBlockletsForUpdates(input: RequestBlockletInput): ResponseCheckChildBlockletsForUpdates
|
|
1593
|
-
|
|
1604
|
+
upgradeChildBlocklets(input: RequestUpdateChildBlockletsInput): ResponseBlocklet
|
|
1605
|
+
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1594
1606
|
configPublicToStore(input: RequestConfigPublicToStoreInput): ResponseBlocklet
|
|
1595
1607
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1608
|
+
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
|
1609
|
+
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
|
1596
1610
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
1597
1611
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
1598
1612
|
upgradeNodeVersion: ResponseUpgradeNodeVersion
|
package/lib/schema.graphqls
CHANGED
|
@@ -429,6 +429,18 @@ input RequestUpdateChildBlockletsInput {
|
|
|
429
429
|
rootDid: String
|
|
430
430
|
}
|
|
431
431
|
|
|
432
|
+
input RequestUpdateComponentMountPointInput {
|
|
433
|
+
did: String
|
|
434
|
+
rootDid: String
|
|
435
|
+
mountPoint: String
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
input RequestUpdateComponentTitleInput {
|
|
439
|
+
did: String
|
|
440
|
+
rootDid: String
|
|
441
|
+
title: String
|
|
442
|
+
}
|
|
443
|
+
|
|
432
444
|
input RequestUpdateNginxHttpsCertInput {
|
|
433
445
|
id: String
|
|
434
446
|
name: String
|
|
@@ -1590,11 +1602,13 @@ type Mutation {
|
|
|
1590
1602
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1591
1603
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1592
1604
|
upgradeBlocklet(input: RequestUpgradeBlockletInput): ResponseBlocklet
|
|
1593
|
-
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1594
1605
|
checkChildBlockletsForUpdates(input: RequestBlockletInput): ResponseCheckChildBlockletsForUpdates
|
|
1595
|
-
|
|
1606
|
+
upgradeChildBlocklets(input: RequestUpdateChildBlockletsInput): ResponseBlocklet
|
|
1607
|
+
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1596
1608
|
configPublicToStore(input: RequestConfigPublicToStoreInput): ResponseBlocklet
|
|
1597
1609
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1610
|
+
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
|
1611
|
+
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
|
1598
1612
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
1599
1613
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
1600
1614
|
upgradeNodeVersion: ResponseUpgradeNodeVersion
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.23",
|
|
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": "MIT",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "539a32437cf0d01d4cf12afd0dd8276716467527",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|