@abtnode/schema 1.8.67-beta-f8b4c9ec → 1.8.67
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 -1
- package/lib/schema.graphqls +12 -1
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -381,6 +381,11 @@ input RequestInstallComponentInput {
|
|
|
381
381
|
skipNavigation: Boolean
|
|
382
382
|
}
|
|
383
383
|
|
|
384
|
+
input RequestInstallFromVcInput {
|
|
385
|
+
challenge: String
|
|
386
|
+
vcPresentation: Any
|
|
387
|
+
}
|
|
388
|
+
|
|
384
389
|
input RequestIssuePassportToUserInput {
|
|
385
390
|
teamDid: String
|
|
386
391
|
userDid: String
|
|
@@ -426,7 +431,7 @@ input RequestResetNodeInput {
|
|
|
426
431
|
|
|
427
432
|
input RequestRestoreFromSpacesInput {
|
|
428
433
|
endpoint: String
|
|
429
|
-
|
|
434
|
+
blockletSecretKey: String
|
|
430
435
|
}
|
|
431
436
|
|
|
432
437
|
input RequestRevokePermissionFromRoleInput {
|
|
@@ -1401,6 +1406,11 @@ type ResponseGetUsersCountPerRole {
|
|
|
1401
1406
|
counts: [KeyValue!]
|
|
1402
1407
|
}
|
|
1403
1408
|
|
|
1409
|
+
type ResponseInstallFromVc {
|
|
1410
|
+
code: StatusCode
|
|
1411
|
+
blocklet: BlockletState
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1404
1414
|
type ResponseLatestBlockletVersion {
|
|
1405
1415
|
code: StatusCode
|
|
1406
1416
|
data: LatestBlockletVersion
|
|
@@ -1693,6 +1703,7 @@ scalar Upload
|
|
|
1693
1703
|
|
|
1694
1704
|
type Mutation {
|
|
1695
1705
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1706
|
+
installBlockletFromVc(input: RequestInstallFromVcInput): ResponseInstallFromVc
|
|
1696
1707
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1697
1708
|
startBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1698
1709
|
stopBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
package/lib/schema.graphqls
CHANGED
|
@@ -381,6 +381,11 @@ input RequestInstallComponentInput {
|
|
|
381
381
|
skipNavigation: Boolean
|
|
382
382
|
}
|
|
383
383
|
|
|
384
|
+
input RequestInstallFromVcInput {
|
|
385
|
+
challenge: String
|
|
386
|
+
vcPresentation: Any
|
|
387
|
+
}
|
|
388
|
+
|
|
384
389
|
input RequestIssuePassportToUserInput {
|
|
385
390
|
teamDid: String
|
|
386
391
|
userDid: String
|
|
@@ -426,7 +431,7 @@ input RequestResetNodeInput {
|
|
|
426
431
|
|
|
427
432
|
input RequestRestoreFromSpacesInput {
|
|
428
433
|
endpoint: String
|
|
429
|
-
|
|
434
|
+
blockletSecretKey: String
|
|
430
435
|
}
|
|
431
436
|
|
|
432
437
|
input RequestRevokePermissionFromRoleInput {
|
|
@@ -1401,6 +1406,11 @@ type ResponseGetUsersCountPerRole {
|
|
|
1401
1406
|
counts: [KeyValue!]
|
|
1402
1407
|
}
|
|
1403
1408
|
|
|
1409
|
+
type ResponseInstallFromVc {
|
|
1410
|
+
code: StatusCode
|
|
1411
|
+
blocklet: BlockletState
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1404
1414
|
type ResponseLatestBlockletVersion {
|
|
1405
1415
|
code: StatusCode
|
|
1406
1416
|
data: LatestBlockletVersion
|
|
@@ -1695,6 +1705,7 @@ enum Upload {
|
|
|
1695
1705
|
|
|
1696
1706
|
type Mutation {
|
|
1697
1707
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1708
|
+
installBlockletFromVc(input: RequestInstallFromVcInput): ResponseInstallFromVc
|
|
1698
1709
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1699
1710
|
startBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1700
1711
|
stopBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.8.67
|
|
6
|
+
"version": "1.8.67",
|
|
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": "543dbadffd29dc4f096261e136a2a306885d6508",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|