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