@abtnode/schema 1.8.68-beta-500af7e5 → 1.8.68
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 -19
- package/lib/schema.graphqls +12 -19
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -3,8 +3,6 @@ module.exports = `# Code generated by protoc-gen-gogql. DO NOT EDIT
|
|
|
3
3
|
|
|
4
4
|
scalar Any
|
|
5
5
|
|
|
6
|
-
scalar Bytes
|
|
7
|
-
|
|
8
6
|
scalar Float32
|
|
9
7
|
|
|
10
8
|
scalar Int32
|
|
@@ -315,7 +313,6 @@ input RequestFindCertificateByDomainInput {
|
|
|
315
313
|
|
|
316
314
|
input RequestGatewayInput {
|
|
317
315
|
requestLimit: RequestLimitInput
|
|
318
|
-
cacheEnabled: Boolean
|
|
319
316
|
}
|
|
320
317
|
|
|
321
318
|
input RequestGetAuditLogsInput {
|
|
@@ -384,6 +381,11 @@ input RequestInstallComponentInput {
|
|
|
384
381
|
skipNavigation: Boolean
|
|
385
382
|
}
|
|
386
383
|
|
|
384
|
+
input RequestInstallFromVcInput {
|
|
385
|
+
challenge: String
|
|
386
|
+
vcPresentation: Any
|
|
387
|
+
}
|
|
388
|
+
|
|
387
389
|
input RequestIssuePassportToUserInput {
|
|
388
390
|
teamDid: String
|
|
389
391
|
userDid: String
|
|
@@ -429,10 +431,7 @@ input RequestResetNodeInput {
|
|
|
429
431
|
|
|
430
432
|
input RequestRestoreFromSpacesInput {
|
|
431
433
|
endpoint: String
|
|
432
|
-
|
|
433
|
-
delegation: String
|
|
434
|
-
password: Bytes
|
|
435
|
-
wallet: Any
|
|
434
|
+
blockletSecretKey: String
|
|
436
435
|
}
|
|
437
436
|
|
|
438
437
|
input RequestRevokePermissionFromRoleInput {
|
|
@@ -806,12 +805,6 @@ type BlockletMetaService {
|
|
|
806
805
|
config: Any
|
|
807
806
|
}
|
|
808
807
|
|
|
809
|
-
type BlockletMigrateRecord {
|
|
810
|
-
appSk: String
|
|
811
|
-
appDid: String
|
|
812
|
-
at: String
|
|
813
|
-
}
|
|
814
|
-
|
|
815
808
|
type BlockletPayment {
|
|
816
809
|
price: [BlockletPaymentPrice!]
|
|
817
810
|
share: [BlockletPaymentShare!]
|
|
@@ -880,9 +873,6 @@ type BlockletState {
|
|
|
880
873
|
appDid: String
|
|
881
874
|
site: RoutingSite
|
|
882
875
|
controller: BlockletController
|
|
883
|
-
migratedFrom: [BlockletMigrateRecord!]
|
|
884
|
-
appPid: String
|
|
885
|
-
externalSk: Boolean
|
|
886
876
|
}
|
|
887
877
|
|
|
888
878
|
type BlockletStats {
|
|
@@ -1047,7 +1037,6 @@ type Fuel {
|
|
|
1047
1037
|
|
|
1048
1038
|
type Gateway {
|
|
1049
1039
|
requestLimit: RequestLimit
|
|
1050
|
-
cacheEnabled: Boolean
|
|
1051
1040
|
}
|
|
1052
1041
|
|
|
1053
1042
|
type GeneralResponse {
|
|
@@ -1127,7 +1116,6 @@ type NodeRouting {
|
|
|
1127
1116
|
snapshotHash: String
|
|
1128
1117
|
adminPath: String
|
|
1129
1118
|
requestLimit: RequestLimit
|
|
1130
|
-
cacheEnabled: Boolean
|
|
1131
1119
|
}
|
|
1132
1120
|
|
|
1133
1121
|
type NodeState {
|
|
@@ -1344,7 +1332,6 @@ type ResponseFindCertificateByDomain {
|
|
|
1344
1332
|
type ResponseGateway {
|
|
1345
1333
|
code: StatusCode
|
|
1346
1334
|
gateway: Gateway
|
|
1347
|
-
cacheEnabled: Boolean
|
|
1348
1335
|
}
|
|
1349
1336
|
|
|
1350
1337
|
type ResponseGetAuditLogs {
|
|
@@ -1419,6 +1406,11 @@ type ResponseGetUsersCountPerRole {
|
|
|
1419
1406
|
counts: [KeyValue!]
|
|
1420
1407
|
}
|
|
1421
1408
|
|
|
1409
|
+
type ResponseInstallFromVc {
|
|
1410
|
+
code: StatusCode
|
|
1411
|
+
blocklet: BlockletState
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1422
1414
|
type ResponseLatestBlockletVersion {
|
|
1423
1415
|
code: StatusCode
|
|
1424
1416
|
data: LatestBlockletVersion
|
|
@@ -1711,6 +1703,7 @@ scalar Upload
|
|
|
1711
1703
|
|
|
1712
1704
|
type Mutation {
|
|
1713
1705
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1706
|
+
installBlockletFromVc(input: RequestInstallFromVcInput): ResponseInstallFromVc
|
|
1714
1707
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1715
1708
|
startBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1716
1709
|
stopBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
package/lib/schema.graphqls
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
scalar Any
|
|
5
5
|
|
|
6
|
-
scalar Bytes
|
|
7
|
-
|
|
8
6
|
scalar Float32
|
|
9
7
|
|
|
10
8
|
scalar Int32
|
|
@@ -315,7 +313,6 @@ input RequestFindCertificateByDomainInput {
|
|
|
315
313
|
|
|
316
314
|
input RequestGatewayInput {
|
|
317
315
|
requestLimit: RequestLimitInput
|
|
318
|
-
cacheEnabled: Boolean
|
|
319
316
|
}
|
|
320
317
|
|
|
321
318
|
input RequestGetAuditLogsInput {
|
|
@@ -384,6 +381,11 @@ input RequestInstallComponentInput {
|
|
|
384
381
|
skipNavigation: Boolean
|
|
385
382
|
}
|
|
386
383
|
|
|
384
|
+
input RequestInstallFromVcInput {
|
|
385
|
+
challenge: String
|
|
386
|
+
vcPresentation: Any
|
|
387
|
+
}
|
|
388
|
+
|
|
387
389
|
input RequestIssuePassportToUserInput {
|
|
388
390
|
teamDid: String
|
|
389
391
|
userDid: String
|
|
@@ -429,10 +431,7 @@ input RequestResetNodeInput {
|
|
|
429
431
|
|
|
430
432
|
input RequestRestoreFromSpacesInput {
|
|
431
433
|
endpoint: String
|
|
432
|
-
|
|
433
|
-
delegation: String
|
|
434
|
-
password: Bytes
|
|
435
|
-
wallet: Any
|
|
434
|
+
blockletSecretKey: String
|
|
436
435
|
}
|
|
437
436
|
|
|
438
437
|
input RequestRevokePermissionFromRoleInput {
|
|
@@ -806,12 +805,6 @@ type BlockletMetaService {
|
|
|
806
805
|
config: Any
|
|
807
806
|
}
|
|
808
807
|
|
|
809
|
-
type BlockletMigrateRecord {
|
|
810
|
-
appSk: String
|
|
811
|
-
appDid: String
|
|
812
|
-
at: String
|
|
813
|
-
}
|
|
814
|
-
|
|
815
808
|
type BlockletPayment {
|
|
816
809
|
price: [BlockletPaymentPrice!]
|
|
817
810
|
share: [BlockletPaymentShare!]
|
|
@@ -880,9 +873,6 @@ type BlockletState {
|
|
|
880
873
|
appDid: String
|
|
881
874
|
site: RoutingSite
|
|
882
875
|
controller: BlockletController
|
|
883
|
-
migratedFrom: [BlockletMigrateRecord!]
|
|
884
|
-
appPid: String
|
|
885
|
-
externalSk: Boolean
|
|
886
876
|
}
|
|
887
877
|
|
|
888
878
|
type BlockletStats {
|
|
@@ -1047,7 +1037,6 @@ type Fuel {
|
|
|
1047
1037
|
|
|
1048
1038
|
type Gateway {
|
|
1049
1039
|
requestLimit: RequestLimit
|
|
1050
|
-
cacheEnabled: Boolean
|
|
1051
1040
|
}
|
|
1052
1041
|
|
|
1053
1042
|
type GeneralResponse {
|
|
@@ -1127,7 +1116,6 @@ type NodeRouting {
|
|
|
1127
1116
|
snapshotHash: String
|
|
1128
1117
|
adminPath: String
|
|
1129
1118
|
requestLimit: RequestLimit
|
|
1130
|
-
cacheEnabled: Boolean
|
|
1131
1119
|
}
|
|
1132
1120
|
|
|
1133
1121
|
type NodeState {
|
|
@@ -1344,7 +1332,6 @@ type ResponseFindCertificateByDomain {
|
|
|
1344
1332
|
type ResponseGateway {
|
|
1345
1333
|
code: StatusCode
|
|
1346
1334
|
gateway: Gateway
|
|
1347
|
-
cacheEnabled: Boolean
|
|
1348
1335
|
}
|
|
1349
1336
|
|
|
1350
1337
|
type ResponseGetAuditLogs {
|
|
@@ -1419,6 +1406,11 @@ type ResponseGetUsersCountPerRole {
|
|
|
1419
1406
|
counts: [KeyValue!]
|
|
1420
1407
|
}
|
|
1421
1408
|
|
|
1409
|
+
type ResponseInstallFromVc {
|
|
1410
|
+
code: StatusCode
|
|
1411
|
+
blocklet: BlockletState
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1422
1414
|
type ResponseLatestBlockletVersion {
|
|
1423
1415
|
code: StatusCode
|
|
1424
1416
|
data: LatestBlockletVersion
|
|
@@ -1713,6 +1705,7 @@ enum Upload {
|
|
|
1713
1705
|
|
|
1714
1706
|
type Mutation {
|
|
1715
1707
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1708
|
+
installBlockletFromVc(input: RequestInstallFromVcInput): ResponseInstallFromVc
|
|
1716
1709
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1717
1710
|
startBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1718
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.68
|
|
6
|
+
"version": "1.8.68",
|
|
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": "1392044ac5677bde567797adeb9a6d3f0b9264b8",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|