@abtnode/schema 1.8.4 → 1.8.7
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 +3 -13
- package/lib/schema.graphqls +3 -13
- package/package.json +3 -3
package/lib/index.js
CHANGED
|
@@ -102,7 +102,7 @@ input RequestAddDomainAliasInput {
|
|
|
102
102
|
teamDid: String
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
input
|
|
105
|
+
input RequestAddLetsEncryptCertInput {
|
|
106
106
|
domain: String
|
|
107
107
|
}
|
|
108
108
|
|
|
@@ -348,10 +348,6 @@ input RequestLimitInput {
|
|
|
348
348
|
ipHeader: String
|
|
349
349
|
}
|
|
350
350
|
|
|
351
|
-
input RequestListBlockletsInput {
|
|
352
|
-
registryUrl: String
|
|
353
|
-
}
|
|
354
|
-
|
|
355
351
|
input RequestNodeRoutingInput {
|
|
356
352
|
provider: String
|
|
357
353
|
snapshotHash: String
|
|
@@ -1105,7 +1101,7 @@ type ResponseAccessKeys {
|
|
|
1105
1101
|
list: [AccessKey!]
|
|
1106
1102
|
}
|
|
1107
1103
|
|
|
1108
|
-
type
|
|
1104
|
+
type ResponseAddLetsEncryptCert {
|
|
1109
1105
|
code: StatusCode
|
|
1110
1106
|
}
|
|
1111
1107
|
|
|
@@ -1291,11 +1287,6 @@ type ResponseLatestBlockletVersion {
|
|
|
1291
1287
|
data: LatestBlockletVersion
|
|
1292
1288
|
}
|
|
1293
1289
|
|
|
1294
|
-
type ResponseListBlocklets {
|
|
1295
|
-
code: StatusCode
|
|
1296
|
-
blocklets: [BlockletMeta!]
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
1290
|
type ResponsePermission {
|
|
1300
1291
|
code: StatusCode
|
|
1301
1292
|
permission: Permission
|
|
@@ -1633,7 +1624,7 @@ type Mutation {
|
|
|
1633
1624
|
updateCertificate(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
1634
1625
|
addCertificate(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
1635
1626
|
deleteCertificate(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
1636
|
-
issueLetsEncryptCert(input:
|
|
1627
|
+
issueLetsEncryptCert(input: RequestAddLetsEncryptCertInput): ResponseAddLetsEncryptCert
|
|
1637
1628
|
createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
|
|
1638
1629
|
updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
|
|
1639
1630
|
deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
|
|
@@ -1654,7 +1645,6 @@ type Query {
|
|
|
1654
1645
|
getNodeEnv: ResponseGetNodeEnv
|
|
1655
1646
|
checkNodeVersion: ResponseCheckNodeVersion
|
|
1656
1647
|
getDelegationState: ResponseDelegationState
|
|
1657
|
-
listBlocklets(input: RequestListBlockletsInput): ResponseListBlocklets
|
|
1658
1648
|
getBlockletMeta(input: RequestBlockletInput): ResponseBlockletMeta
|
|
1659
1649
|
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
|
1660
1650
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
package/lib/schema.graphqls
CHANGED
|
@@ -102,7 +102,7 @@ input RequestAddDomainAliasInput {
|
|
|
102
102
|
teamDid: String
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
input
|
|
105
|
+
input RequestAddLetsEncryptCertInput {
|
|
106
106
|
domain: String
|
|
107
107
|
}
|
|
108
108
|
|
|
@@ -348,10 +348,6 @@ input RequestLimitInput {
|
|
|
348
348
|
ipHeader: String
|
|
349
349
|
}
|
|
350
350
|
|
|
351
|
-
input RequestListBlockletsInput {
|
|
352
|
-
registryUrl: String
|
|
353
|
-
}
|
|
354
|
-
|
|
355
351
|
input RequestNodeRoutingInput {
|
|
356
352
|
provider: String
|
|
357
353
|
snapshotHash: String
|
|
@@ -1105,7 +1101,7 @@ type ResponseAccessKeys {
|
|
|
1105
1101
|
list: [AccessKey!]
|
|
1106
1102
|
}
|
|
1107
1103
|
|
|
1108
|
-
type
|
|
1104
|
+
type ResponseAddLetsEncryptCert {
|
|
1109
1105
|
code: StatusCode
|
|
1110
1106
|
}
|
|
1111
1107
|
|
|
@@ -1291,11 +1287,6 @@ type ResponseLatestBlockletVersion {
|
|
|
1291
1287
|
data: LatestBlockletVersion
|
|
1292
1288
|
}
|
|
1293
1289
|
|
|
1294
|
-
type ResponseListBlocklets {
|
|
1295
|
-
code: StatusCode
|
|
1296
|
-
blocklets: [BlockletMeta!]
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
1290
|
type ResponsePermission {
|
|
1300
1291
|
code: StatusCode
|
|
1301
1292
|
permission: Permission
|
|
@@ -1635,7 +1626,7 @@ type Mutation {
|
|
|
1635
1626
|
updateCertificate(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
1636
1627
|
addCertificate(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
1637
1628
|
deleteCertificate(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
1638
|
-
issueLetsEncryptCert(input:
|
|
1629
|
+
issueLetsEncryptCert(input: RequestAddLetsEncryptCertInput): ResponseAddLetsEncryptCert
|
|
1639
1630
|
createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
|
|
1640
1631
|
updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
|
|
1641
1632
|
deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
|
|
@@ -1656,7 +1647,6 @@ type Query {
|
|
|
1656
1647
|
getNodeEnv: ResponseGetNodeEnv
|
|
1657
1648
|
checkNodeVersion: ResponseCheckNodeVersion
|
|
1658
1649
|
getDelegationState: ResponseDelegationState
|
|
1659
|
-
listBlocklets(input: RequestListBlockletsInput): ResponseListBlocklets
|
|
1660
1650
|
getBlockletMeta(input: RequestBlockletInput): ResponseBlockletMeta
|
|
1661
1651
|
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
|
1662
1652
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
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.7",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "MIT",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "9807ea28b3ae634f5806c875774ac3b7e38502a1",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"ts-protoc-gen": "^0.
|
|
18
|
+
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|
|
20
20
|
}
|