@abtnode/schema 1.8.2 → 1.8.5
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 +17 -9
- package/lib/schema.graphqls +17 -9
- package/package.json +5 -2
package/lib/index.js
CHANGED
|
@@ -99,9 +99,10 @@ input RequestAddDomainAliasInput {
|
|
|
99
99
|
id: String
|
|
100
100
|
domainAlias: String
|
|
101
101
|
force: Boolean
|
|
102
|
+
teamDid: String
|
|
102
103
|
}
|
|
103
104
|
|
|
104
|
-
input
|
|
105
|
+
input RequestAddLetsEncryptCertInput {
|
|
105
106
|
domain: String
|
|
106
107
|
}
|
|
107
108
|
|
|
@@ -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
|
|
@@ -1093,7 +1105,7 @@ type ResponseAccessKeys {
|
|
|
1093
1105
|
list: [AccessKey!]
|
|
1094
1106
|
}
|
|
1095
1107
|
|
|
1096
|
-
type
|
|
1108
|
+
type ResponseAddLetsEncryptCert {
|
|
1097
1109
|
code: StatusCode
|
|
1098
1110
|
}
|
|
1099
1111
|
|
|
@@ -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
|
|
@@ -1625,7 +1633,7 @@ type Mutation {
|
|
|
1625
1633
|
updateCertificate(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
1626
1634
|
addCertificate(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
1627
1635
|
deleteCertificate(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
1628
|
-
issueLetsEncryptCert(input:
|
|
1636
|
+
issueLetsEncryptCert(input: RequestAddLetsEncryptCertInput): ResponseAddLetsEncryptCert
|
|
1629
1637
|
createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
|
|
1630
1638
|
updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
|
|
1631
1639
|
deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
|
package/lib/schema.graphqls
CHANGED
|
@@ -99,9 +99,10 @@ input RequestAddDomainAliasInput {
|
|
|
99
99
|
id: String
|
|
100
100
|
domainAlias: String
|
|
101
101
|
force: Boolean
|
|
102
|
+
teamDid: String
|
|
102
103
|
}
|
|
103
104
|
|
|
104
|
-
input
|
|
105
|
+
input RequestAddLetsEncryptCertInput {
|
|
105
106
|
domain: String
|
|
106
107
|
}
|
|
107
108
|
|
|
@@ -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
|
|
@@ -1093,7 +1105,7 @@ type ResponseAccessKeys {
|
|
|
1093
1105
|
list: [AccessKey!]
|
|
1094
1106
|
}
|
|
1095
1107
|
|
|
1096
|
-
type
|
|
1108
|
+
type ResponseAddLetsEncryptCert {
|
|
1097
1109
|
code: StatusCode
|
|
1098
1110
|
}
|
|
1099
1111
|
|
|
@@ -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
|
|
@@ -1627,7 +1635,7 @@ type Mutation {
|
|
|
1627
1635
|
updateCertificate(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
1628
1636
|
addCertificate(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
1629
1637
|
deleteCertificate(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
1630
|
-
issueLetsEncryptCert(input:
|
|
1638
|
+
issueLetsEncryptCert(input: RequestAddLetsEncryptCertInput): ResponseAddLetsEncryptCert
|
|
1631
1639
|
createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
|
|
1632
1640
|
updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
|
|
1633
1641
|
deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
|
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.5",
|
|
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": "58da88581cdf1dd45fd50e56db08a055be82626e",
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
|
+
}
|
|
17
20
|
}
|