@abtnode/schema 1.8.67-beta-794a8082 → 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 -5
- package/lib/schema.graphqls +12 -5
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -313,7 +313,6 @@ input RequestFindCertificateByDomainInput {
|
|
|
313
313
|
|
|
314
314
|
input RequestGatewayInput {
|
|
315
315
|
requestLimit: RequestLimitInput
|
|
316
|
-
cacheEnabled: Boolean
|
|
317
316
|
}
|
|
318
317
|
|
|
319
318
|
input RequestGetAuditLogsInput {
|
|
@@ -382,6 +381,11 @@ input RequestInstallComponentInput {
|
|
|
382
381
|
skipNavigation: Boolean
|
|
383
382
|
}
|
|
384
383
|
|
|
384
|
+
input RequestInstallFromVcInput {
|
|
385
|
+
challenge: String
|
|
386
|
+
vcPresentation: Any
|
|
387
|
+
}
|
|
388
|
+
|
|
385
389
|
input RequestIssuePassportToUserInput {
|
|
386
390
|
teamDid: String
|
|
387
391
|
userDid: String
|
|
@@ -427,7 +431,7 @@ input RequestResetNodeInput {
|
|
|
427
431
|
|
|
428
432
|
input RequestRestoreFromSpacesInput {
|
|
429
433
|
endpoint: String
|
|
430
|
-
|
|
434
|
+
blockletSecretKey: String
|
|
431
435
|
}
|
|
432
436
|
|
|
433
437
|
input RequestRevokePermissionFromRoleInput {
|
|
@@ -1033,7 +1037,6 @@ type Fuel {
|
|
|
1033
1037
|
|
|
1034
1038
|
type Gateway {
|
|
1035
1039
|
requestLimit: RequestLimit
|
|
1036
|
-
cacheEnabled: Boolean
|
|
1037
1040
|
}
|
|
1038
1041
|
|
|
1039
1042
|
type GeneralResponse {
|
|
@@ -1113,7 +1116,6 @@ type NodeRouting {
|
|
|
1113
1116
|
snapshotHash: String
|
|
1114
1117
|
adminPath: String
|
|
1115
1118
|
requestLimit: RequestLimit
|
|
1116
|
-
cacheEnabled: Boolean
|
|
1117
1119
|
}
|
|
1118
1120
|
|
|
1119
1121
|
type NodeState {
|
|
@@ -1330,7 +1332,6 @@ type ResponseFindCertificateByDomain {
|
|
|
1330
1332
|
type ResponseGateway {
|
|
1331
1333
|
code: StatusCode
|
|
1332
1334
|
gateway: Gateway
|
|
1333
|
-
cacheEnabled: Boolean
|
|
1334
1335
|
}
|
|
1335
1336
|
|
|
1336
1337
|
type ResponseGetAuditLogs {
|
|
@@ -1405,6 +1406,11 @@ type ResponseGetUsersCountPerRole {
|
|
|
1405
1406
|
counts: [KeyValue!]
|
|
1406
1407
|
}
|
|
1407
1408
|
|
|
1409
|
+
type ResponseInstallFromVc {
|
|
1410
|
+
code: StatusCode
|
|
1411
|
+
blocklet: BlockletState
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1408
1414
|
type ResponseLatestBlockletVersion {
|
|
1409
1415
|
code: StatusCode
|
|
1410
1416
|
data: LatestBlockletVersion
|
|
@@ -1697,6 +1703,7 @@ scalar Upload
|
|
|
1697
1703
|
|
|
1698
1704
|
type Mutation {
|
|
1699
1705
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1706
|
+
installBlockletFromVc(input: RequestInstallFromVcInput): ResponseInstallFromVc
|
|
1700
1707
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1701
1708
|
startBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1702
1709
|
stopBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
package/lib/schema.graphqls
CHANGED
|
@@ -313,7 +313,6 @@ input RequestFindCertificateByDomainInput {
|
|
|
313
313
|
|
|
314
314
|
input RequestGatewayInput {
|
|
315
315
|
requestLimit: RequestLimitInput
|
|
316
|
-
cacheEnabled: Boolean
|
|
317
316
|
}
|
|
318
317
|
|
|
319
318
|
input RequestGetAuditLogsInput {
|
|
@@ -382,6 +381,11 @@ input RequestInstallComponentInput {
|
|
|
382
381
|
skipNavigation: Boolean
|
|
383
382
|
}
|
|
384
383
|
|
|
384
|
+
input RequestInstallFromVcInput {
|
|
385
|
+
challenge: String
|
|
386
|
+
vcPresentation: Any
|
|
387
|
+
}
|
|
388
|
+
|
|
385
389
|
input RequestIssuePassportToUserInput {
|
|
386
390
|
teamDid: String
|
|
387
391
|
userDid: String
|
|
@@ -427,7 +431,7 @@ input RequestResetNodeInput {
|
|
|
427
431
|
|
|
428
432
|
input RequestRestoreFromSpacesInput {
|
|
429
433
|
endpoint: String
|
|
430
|
-
|
|
434
|
+
blockletSecretKey: String
|
|
431
435
|
}
|
|
432
436
|
|
|
433
437
|
input RequestRevokePermissionFromRoleInput {
|
|
@@ -1033,7 +1037,6 @@ type Fuel {
|
|
|
1033
1037
|
|
|
1034
1038
|
type Gateway {
|
|
1035
1039
|
requestLimit: RequestLimit
|
|
1036
|
-
cacheEnabled: Boolean
|
|
1037
1040
|
}
|
|
1038
1041
|
|
|
1039
1042
|
type GeneralResponse {
|
|
@@ -1113,7 +1116,6 @@ type NodeRouting {
|
|
|
1113
1116
|
snapshotHash: String
|
|
1114
1117
|
adminPath: String
|
|
1115
1118
|
requestLimit: RequestLimit
|
|
1116
|
-
cacheEnabled: Boolean
|
|
1117
1119
|
}
|
|
1118
1120
|
|
|
1119
1121
|
type NodeState {
|
|
@@ -1330,7 +1332,6 @@ type ResponseFindCertificateByDomain {
|
|
|
1330
1332
|
type ResponseGateway {
|
|
1331
1333
|
code: StatusCode
|
|
1332
1334
|
gateway: Gateway
|
|
1333
|
-
cacheEnabled: Boolean
|
|
1334
1335
|
}
|
|
1335
1336
|
|
|
1336
1337
|
type ResponseGetAuditLogs {
|
|
@@ -1405,6 +1406,11 @@ type ResponseGetUsersCountPerRole {
|
|
|
1405
1406
|
counts: [KeyValue!]
|
|
1406
1407
|
}
|
|
1407
1408
|
|
|
1409
|
+
type ResponseInstallFromVc {
|
|
1410
|
+
code: StatusCode
|
|
1411
|
+
blocklet: BlockletState
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1408
1414
|
type ResponseLatestBlockletVersion {
|
|
1409
1415
|
code: StatusCode
|
|
1410
1416
|
data: LatestBlockletVersion
|
|
@@ -1699,6 +1705,7 @@ enum Upload {
|
|
|
1699
1705
|
|
|
1700
1706
|
type Mutation {
|
|
1701
1707
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1708
|
+
installBlockletFromVc(input: RequestInstallFromVcInput): ResponseInstallFromVc
|
|
1702
1709
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1703
1710
|
startBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1704
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
|
}
|