@abtnode/schema 1.8.1 → 1.8.4
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 +14 -6
- package/lib/schema.graphqls +14 -6
- package/package.json +5 -2
package/lib/index.js
CHANGED
|
@@ -99,6 +99,7 @@ input RequestAddDomainAliasInput {
|
|
|
99
99
|
id: String
|
|
100
100
|
domainAlias: String
|
|
101
101
|
force: Boolean
|
|
102
|
+
teamDid: String
|
|
102
103
|
}
|
|
103
104
|
|
|
104
105
|
input RequestAddLetsEcryptCertInput {
|
|
@@ -114,6 +115,7 @@ input RequestAddNginxHttpsCertInput {
|
|
|
114
115
|
input RequestAddRoutingRuleInput {
|
|
115
116
|
id: String
|
|
116
117
|
rule: RoutingRuleInput
|
|
118
|
+
teamDid: String
|
|
117
119
|
}
|
|
118
120
|
|
|
119
121
|
input RequestAddRoutingSiteInput {
|
|
@@ -218,6 +220,7 @@ input RequestDeleteComponentInput {
|
|
|
218
220
|
input RequestDeleteDomainAliasInput {
|
|
219
221
|
id: String
|
|
220
222
|
domainAlias: String
|
|
223
|
+
teamDid: String
|
|
221
224
|
}
|
|
222
225
|
|
|
223
226
|
input RequestDeleteNginxHttpsCertInput {
|
|
@@ -237,6 +240,7 @@ input RequestDeleteRoleInput {
|
|
|
237
240
|
input RequestDeleteRoutingRuleInput {
|
|
238
241
|
id: String
|
|
239
242
|
ruleId: String
|
|
243
|
+
teamDid: String
|
|
240
244
|
}
|
|
241
245
|
|
|
242
246
|
input RequestDeleteRoutingSiteInput {
|
|
@@ -419,6 +423,7 @@ input RequestUpdateAccessKeyInput {
|
|
|
419
423
|
|
|
420
424
|
input RequestUpdateChildBlockletsInput {
|
|
421
425
|
updateId: String
|
|
426
|
+
rootDid: String
|
|
422
427
|
}
|
|
423
428
|
|
|
424
429
|
input RequestUpdateNginxHttpsCertInput {
|
|
@@ -435,12 +440,14 @@ input RequestUpdatePermissionsForRoleInput {
|
|
|
435
440
|
input RequestUpdateRoutingRuleInput {
|
|
436
441
|
id: String
|
|
437
442
|
rule: RoutingRuleInput
|
|
443
|
+
teamDid: String
|
|
438
444
|
}
|
|
439
445
|
|
|
440
446
|
input RequestUpdateRoutingSiteInput {
|
|
441
447
|
id: String
|
|
442
448
|
corsAllowedOrigins: [String!]
|
|
443
449
|
domain: String
|
|
450
|
+
teamDid: String
|
|
444
451
|
}
|
|
445
452
|
|
|
446
453
|
input RequestUpdateSessionInput {
|
|
@@ -448,6 +455,11 @@ input RequestUpdateSessionInput {
|
|
|
448
455
|
data: String
|
|
449
456
|
}
|
|
450
457
|
|
|
458
|
+
input RequestUpdateWhoCanAccessInput {
|
|
459
|
+
did: String
|
|
460
|
+
whoCanAccess: String
|
|
461
|
+
}
|
|
462
|
+
|
|
451
463
|
input RequestUpgradeBlockletInput {
|
|
452
464
|
did: String
|
|
453
465
|
registryUrl: String
|
|
@@ -1140,11 +1152,6 @@ type ResponseCheckNodeVersion {
|
|
|
1140
1152
|
version: String
|
|
1141
1153
|
}
|
|
1142
1154
|
|
|
1143
|
-
type ResponseConfigBlocklet {
|
|
1144
|
-
code: StatusCode
|
|
1145
|
-
blocklet: BlockletState
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
1155
|
type ResponseCreateAccessKey {
|
|
1149
1156
|
code: StatusCode
|
|
1150
1157
|
data: CreateAccessKey
|
|
@@ -1577,10 +1584,11 @@ type Mutation {
|
|
|
1577
1584
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1578
1585
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1579
1586
|
upgradeBlocklet(input: RequestUpgradeBlockletInput): ResponseBlocklet
|
|
1580
|
-
configBlocklet(input: RequestConfigBlockletInput):
|
|
1587
|
+
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1581
1588
|
checkChildBlockletsForUpdates(input: RequestBlockletInput): ResponseCheckChildBlockletsForUpdates
|
|
1582
1589
|
updateChildBlocklets(input: RequestUpdateChildBlockletsInput): ResponseBlocklet
|
|
1583
1590
|
configPublicToStore(input: RequestConfigPublicToStoreInput): ResponseBlocklet
|
|
1591
|
+
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1584
1592
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
1585
1593
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
1586
1594
|
upgradeNodeVersion: ResponseUpgradeNodeVersion
|
package/lib/schema.graphqls
CHANGED
|
@@ -99,6 +99,7 @@ input RequestAddDomainAliasInput {
|
|
|
99
99
|
id: String
|
|
100
100
|
domainAlias: String
|
|
101
101
|
force: Boolean
|
|
102
|
+
teamDid: String
|
|
102
103
|
}
|
|
103
104
|
|
|
104
105
|
input RequestAddLetsEcryptCertInput {
|
|
@@ -114,6 +115,7 @@ input RequestAddNginxHttpsCertInput {
|
|
|
114
115
|
input RequestAddRoutingRuleInput {
|
|
115
116
|
id: String
|
|
116
117
|
rule: RoutingRuleInput
|
|
118
|
+
teamDid: String
|
|
117
119
|
}
|
|
118
120
|
|
|
119
121
|
input RequestAddRoutingSiteInput {
|
|
@@ -218,6 +220,7 @@ input RequestDeleteComponentInput {
|
|
|
218
220
|
input RequestDeleteDomainAliasInput {
|
|
219
221
|
id: String
|
|
220
222
|
domainAlias: String
|
|
223
|
+
teamDid: String
|
|
221
224
|
}
|
|
222
225
|
|
|
223
226
|
input RequestDeleteNginxHttpsCertInput {
|
|
@@ -237,6 +240,7 @@ input RequestDeleteRoleInput {
|
|
|
237
240
|
input RequestDeleteRoutingRuleInput {
|
|
238
241
|
id: String
|
|
239
242
|
ruleId: String
|
|
243
|
+
teamDid: String
|
|
240
244
|
}
|
|
241
245
|
|
|
242
246
|
input RequestDeleteRoutingSiteInput {
|
|
@@ -419,6 +423,7 @@ input RequestUpdateAccessKeyInput {
|
|
|
419
423
|
|
|
420
424
|
input RequestUpdateChildBlockletsInput {
|
|
421
425
|
updateId: String
|
|
426
|
+
rootDid: String
|
|
422
427
|
}
|
|
423
428
|
|
|
424
429
|
input RequestUpdateNginxHttpsCertInput {
|
|
@@ -435,12 +440,14 @@ input RequestUpdatePermissionsForRoleInput {
|
|
|
435
440
|
input RequestUpdateRoutingRuleInput {
|
|
436
441
|
id: String
|
|
437
442
|
rule: RoutingRuleInput
|
|
443
|
+
teamDid: String
|
|
438
444
|
}
|
|
439
445
|
|
|
440
446
|
input RequestUpdateRoutingSiteInput {
|
|
441
447
|
id: String
|
|
442
448
|
corsAllowedOrigins: [String!]
|
|
443
449
|
domain: String
|
|
450
|
+
teamDid: String
|
|
444
451
|
}
|
|
445
452
|
|
|
446
453
|
input RequestUpdateSessionInput {
|
|
@@ -448,6 +455,11 @@ input RequestUpdateSessionInput {
|
|
|
448
455
|
data: String
|
|
449
456
|
}
|
|
450
457
|
|
|
458
|
+
input RequestUpdateWhoCanAccessInput {
|
|
459
|
+
did: String
|
|
460
|
+
whoCanAccess: String
|
|
461
|
+
}
|
|
462
|
+
|
|
451
463
|
input RequestUpgradeBlockletInput {
|
|
452
464
|
did: String
|
|
453
465
|
registryUrl: String
|
|
@@ -1140,11 +1152,6 @@ type ResponseCheckNodeVersion {
|
|
|
1140
1152
|
version: String
|
|
1141
1153
|
}
|
|
1142
1154
|
|
|
1143
|
-
type ResponseConfigBlocklet {
|
|
1144
|
-
code: StatusCode
|
|
1145
|
-
blocklet: BlockletState
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
1155
|
type ResponseCreateAccessKey {
|
|
1149
1156
|
code: StatusCode
|
|
1150
1157
|
data: CreateAccessKey
|
|
@@ -1579,10 +1586,11 @@ type Mutation {
|
|
|
1579
1586
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1580
1587
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1581
1588
|
upgradeBlocklet(input: RequestUpgradeBlockletInput): ResponseBlocklet
|
|
1582
|
-
configBlocklet(input: RequestConfigBlockletInput):
|
|
1589
|
+
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1583
1590
|
checkChildBlockletsForUpdates(input: RequestBlockletInput): ResponseCheckChildBlockletsForUpdates
|
|
1584
1591
|
updateChildBlocklets(input: RequestUpdateChildBlockletsInput): ResponseBlocklet
|
|
1585
1592
|
configPublicToStore(input: RequestConfigPublicToStoreInput): ResponseBlocklet
|
|
1593
|
+
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1586
1594
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
1587
1595
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
1588
1596
|
upgradeNodeVersion: ResponseUpgradeNodeVersion
|
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.4",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,5 +13,8 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "MIT",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "c42fb1bb84c5eef0f753fd5397d8007c7a6eee19",
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"ts-protoc-gen": "^0.15.0"
|
|
19
|
+
}
|
|
17
20
|
}
|