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