@abtnode/schema 1.8.63 → 1.8.64-beta-0b5ede51
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 +13 -0
- package/lib/schema.graphqls +13 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -17,6 +17,7 @@ input BlockletControllerInput {
|
|
|
17
17
|
id: String
|
|
18
18
|
nftId: String
|
|
19
19
|
nftOwner: String
|
|
20
|
+
chainHost: String
|
|
20
21
|
expireDate: Uint32
|
|
21
22
|
}
|
|
22
23
|
|
|
@@ -136,6 +137,10 @@ input RequestAddRoutingSiteInput {
|
|
|
136
137
|
rules: [RoutingRuleInput!]
|
|
137
138
|
}
|
|
138
139
|
|
|
140
|
+
input RequestBackupToSpacesInput {
|
|
141
|
+
did: String
|
|
142
|
+
}
|
|
143
|
+
|
|
139
144
|
input RequestBlockletInput {
|
|
140
145
|
did: String
|
|
141
146
|
storeUrl: String
|
|
@@ -424,6 +429,11 @@ input RequestResetNodeInput {
|
|
|
424
429
|
invitations: Boolean
|
|
425
430
|
}
|
|
426
431
|
|
|
432
|
+
input RequestRestoreFromSpacesInput {
|
|
433
|
+
endpoint: String
|
|
434
|
+
blockletSecretKey: String
|
|
435
|
+
}
|
|
436
|
+
|
|
427
437
|
input RequestRevokePermissionFromRoleInput {
|
|
428
438
|
teamDid: String
|
|
429
439
|
roleName: String
|
|
@@ -705,6 +715,7 @@ type BlockletController {
|
|
|
705
715
|
id: String
|
|
706
716
|
nftId: String
|
|
707
717
|
nftOwner: String
|
|
718
|
+
chainHost: String
|
|
708
719
|
expireDate: Uint32
|
|
709
720
|
}
|
|
710
721
|
|
|
@@ -1708,6 +1719,8 @@ type Mutation {
|
|
|
1708
1719
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1709
1720
|
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
|
1710
1721
|
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
|
1722
|
+
backupToSpaces(input: RequestBackupToSpacesInput): GeneralResponse
|
|
1723
|
+
restoreFromSpaces(input: RequestRestoreFromSpacesInput): GeneralResponse
|
|
1711
1724
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
1712
1725
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
1713
1726
|
upgradeNodeVersion: ResponseUpgradeNodeVersion
|
package/lib/schema.graphqls
CHANGED
|
@@ -17,6 +17,7 @@ input BlockletControllerInput {
|
|
|
17
17
|
id: String
|
|
18
18
|
nftId: String
|
|
19
19
|
nftOwner: String
|
|
20
|
+
chainHost: String
|
|
20
21
|
expireDate: Uint32
|
|
21
22
|
}
|
|
22
23
|
|
|
@@ -136,6 +137,10 @@ input RequestAddRoutingSiteInput {
|
|
|
136
137
|
rules: [RoutingRuleInput!]
|
|
137
138
|
}
|
|
138
139
|
|
|
140
|
+
input RequestBackupToSpacesInput {
|
|
141
|
+
did: String
|
|
142
|
+
}
|
|
143
|
+
|
|
139
144
|
input RequestBlockletInput {
|
|
140
145
|
did: String
|
|
141
146
|
storeUrl: String
|
|
@@ -424,6 +429,11 @@ input RequestResetNodeInput {
|
|
|
424
429
|
invitations: Boolean
|
|
425
430
|
}
|
|
426
431
|
|
|
432
|
+
input RequestRestoreFromSpacesInput {
|
|
433
|
+
endpoint: String
|
|
434
|
+
blockletSecretKey: String
|
|
435
|
+
}
|
|
436
|
+
|
|
427
437
|
input RequestRevokePermissionFromRoleInput {
|
|
428
438
|
teamDid: String
|
|
429
439
|
roleName: String
|
|
@@ -705,6 +715,7 @@ type BlockletController {
|
|
|
705
715
|
id: String
|
|
706
716
|
nftId: String
|
|
707
717
|
nftOwner: String
|
|
718
|
+
chainHost: String
|
|
708
719
|
expireDate: Uint32
|
|
709
720
|
}
|
|
710
721
|
|
|
@@ -1710,6 +1721,8 @@ type Mutation {
|
|
|
1710
1721
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1711
1722
|
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
|
1712
1723
|
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
|
1724
|
+
backupToSpaces(input: RequestBackupToSpacesInput): GeneralResponse
|
|
1725
|
+
restoreFromSpaces(input: RequestRestoreFromSpacesInput): GeneralResponse
|
|
1713
1726
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
1714
1727
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
1715
1728
|
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.64-beta-0b5ede51",
|
|
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": "fbb72fdf88ea44c949ea951b84ab0506805bda7d",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|