@abtnode/schema 1.6.5 → 1.6.9
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 +25 -10
- package/lib/schema.graphqls +25 -10
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -118,6 +118,10 @@ input RequestAddDomainAliasInput {
|
|
|
118
118
|
domainAlias: String
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
+
input RequestAddLetsEcryptCertInput {
|
|
122
|
+
domain: String
|
|
123
|
+
}
|
|
124
|
+
|
|
121
125
|
input RequestAddNginxHttpsCertInput {
|
|
122
126
|
name: String
|
|
123
127
|
privateKey: String
|
|
@@ -391,10 +395,8 @@ input RequestUpdateChildBlockletsInput {
|
|
|
391
395
|
}
|
|
392
396
|
|
|
393
397
|
input RequestUpdateNginxHttpsCertInput {
|
|
398
|
+
id: String
|
|
394
399
|
name: String
|
|
395
|
-
domain: String
|
|
396
|
-
privateKey: String
|
|
397
|
-
certificate: String
|
|
398
400
|
public: Boolean
|
|
399
401
|
}
|
|
400
402
|
|
|
@@ -693,19 +695,15 @@ type BooleanResponse {
|
|
|
693
695
|
type Certificate {
|
|
694
696
|
name: String
|
|
695
697
|
domain: String
|
|
696
|
-
validFrom: Int64
|
|
697
|
-
validTo: Int64
|
|
698
|
-
issuer: CertificateIssuer
|
|
699
|
-
sans: [String!]
|
|
700
698
|
id: String
|
|
701
|
-
|
|
702
|
-
fingerprint: String
|
|
703
|
-
validityPeriod: Int64
|
|
699
|
+
meta: CertificateMeta
|
|
704
700
|
matchedSites: [MatchedSites!]
|
|
705
701
|
createdAt: String
|
|
706
702
|
updatedAt: String
|
|
707
703
|
public: Boolean
|
|
708
704
|
isProtected: Boolean
|
|
705
|
+
source: String
|
|
706
|
+
status: String
|
|
709
707
|
}
|
|
710
708
|
|
|
711
709
|
type CertificateIssuer {
|
|
@@ -714,6 +712,16 @@ type CertificateIssuer {
|
|
|
714
712
|
commonName: String
|
|
715
713
|
}
|
|
716
714
|
|
|
715
|
+
type CertificateMeta {
|
|
716
|
+
issuer: CertificateIssuer
|
|
717
|
+
sans: [String!]
|
|
718
|
+
validFrom: Int64
|
|
719
|
+
validTo: Int64
|
|
720
|
+
fingerprintAlg: String
|
|
721
|
+
fingerprint: String
|
|
722
|
+
validityPeriod: Int64
|
|
723
|
+
}
|
|
724
|
+
|
|
717
725
|
type ConfigEntry {
|
|
718
726
|
key: String
|
|
719
727
|
value: String
|
|
@@ -849,6 +857,8 @@ type NodeState {
|
|
|
849
857
|
trustedPassports: [TrustedPassport!]
|
|
850
858
|
launcherInfo: LauncherInfo
|
|
851
859
|
enablePassportIssuance: Boolean
|
|
860
|
+
didRegistry: String
|
|
861
|
+
didDomain: String
|
|
852
862
|
}
|
|
853
863
|
|
|
854
864
|
type Notification {
|
|
@@ -910,6 +920,10 @@ type ResponseAccessKeys {
|
|
|
910
920
|
list: [AccessKey!]
|
|
911
921
|
}
|
|
912
922
|
|
|
923
|
+
type ResponseAddLetsEcryptCert {
|
|
924
|
+
code: StatusCode
|
|
925
|
+
}
|
|
926
|
+
|
|
913
927
|
type ResponseAddNginxHttpsCert {
|
|
914
928
|
code: StatusCode
|
|
915
929
|
}
|
|
@@ -1370,6 +1384,7 @@ type Mutation {
|
|
|
1370
1384
|
updateNginxHttpsCert(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
1371
1385
|
addNginxHttpsCert(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
1372
1386
|
deleteNginxHttpsCert(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
1387
|
+
issueLetsEncryptCert(input: RequestAddLetsEcryptCertInput): ResponseAddLetsEcryptCert
|
|
1373
1388
|
createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
|
|
1374
1389
|
updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
|
|
1375
1390
|
deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
|
package/lib/schema.graphqls
CHANGED
|
@@ -118,6 +118,10 @@ input RequestAddDomainAliasInput {
|
|
|
118
118
|
domainAlias: String
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
+
input RequestAddLetsEcryptCertInput {
|
|
122
|
+
domain: String
|
|
123
|
+
}
|
|
124
|
+
|
|
121
125
|
input RequestAddNginxHttpsCertInput {
|
|
122
126
|
name: String
|
|
123
127
|
privateKey: String
|
|
@@ -391,10 +395,8 @@ input RequestUpdateChildBlockletsInput {
|
|
|
391
395
|
}
|
|
392
396
|
|
|
393
397
|
input RequestUpdateNginxHttpsCertInput {
|
|
398
|
+
id: String
|
|
394
399
|
name: String
|
|
395
|
-
domain: String
|
|
396
|
-
privateKey: String
|
|
397
|
-
certificate: String
|
|
398
400
|
public: Boolean
|
|
399
401
|
}
|
|
400
402
|
|
|
@@ -693,19 +695,15 @@ type BooleanResponse {
|
|
|
693
695
|
type Certificate {
|
|
694
696
|
name: String
|
|
695
697
|
domain: String
|
|
696
|
-
validFrom: Int64
|
|
697
|
-
validTo: Int64
|
|
698
|
-
issuer: CertificateIssuer
|
|
699
|
-
sans: [String!]
|
|
700
698
|
id: String
|
|
701
|
-
|
|
702
|
-
fingerprint: String
|
|
703
|
-
validityPeriod: Int64
|
|
699
|
+
meta: CertificateMeta
|
|
704
700
|
matchedSites: [MatchedSites!]
|
|
705
701
|
createdAt: String
|
|
706
702
|
updatedAt: String
|
|
707
703
|
public: Boolean
|
|
708
704
|
isProtected: Boolean
|
|
705
|
+
source: String
|
|
706
|
+
status: String
|
|
709
707
|
}
|
|
710
708
|
|
|
711
709
|
type CertificateIssuer {
|
|
@@ -714,6 +712,16 @@ type CertificateIssuer {
|
|
|
714
712
|
commonName: String
|
|
715
713
|
}
|
|
716
714
|
|
|
715
|
+
type CertificateMeta {
|
|
716
|
+
issuer: CertificateIssuer
|
|
717
|
+
sans: [String!]
|
|
718
|
+
validFrom: Int64
|
|
719
|
+
validTo: Int64
|
|
720
|
+
fingerprintAlg: String
|
|
721
|
+
fingerprint: String
|
|
722
|
+
validityPeriod: Int64
|
|
723
|
+
}
|
|
724
|
+
|
|
717
725
|
type ConfigEntry {
|
|
718
726
|
key: String
|
|
719
727
|
value: String
|
|
@@ -849,6 +857,8 @@ type NodeState {
|
|
|
849
857
|
trustedPassports: [TrustedPassport!]
|
|
850
858
|
launcherInfo: LauncherInfo
|
|
851
859
|
enablePassportIssuance: Boolean
|
|
860
|
+
didRegistry: String
|
|
861
|
+
didDomain: String
|
|
852
862
|
}
|
|
853
863
|
|
|
854
864
|
type Notification {
|
|
@@ -910,6 +920,10 @@ type ResponseAccessKeys {
|
|
|
910
920
|
list: [AccessKey!]
|
|
911
921
|
}
|
|
912
922
|
|
|
923
|
+
type ResponseAddLetsEcryptCert {
|
|
924
|
+
code: StatusCode
|
|
925
|
+
}
|
|
926
|
+
|
|
913
927
|
type ResponseAddNginxHttpsCert {
|
|
914
928
|
code: StatusCode
|
|
915
929
|
}
|
|
@@ -1372,6 +1386,7 @@ type Mutation {
|
|
|
1372
1386
|
updateNginxHttpsCert(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
1373
1387
|
addNginxHttpsCert(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
1374
1388
|
deleteNginxHttpsCert(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
1389
|
+
issueLetsEncryptCert(input: RequestAddLetsEcryptCertInput): ResponseAddLetsEcryptCert
|
|
1375
1390
|
createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
|
|
1376
1391
|
updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
|
|
1377
1392
|
deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.6.
|
|
6
|
+
"version": "1.6.9",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "MIT",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "372e95513bd9a510702d93650c0c004589579cb3"
|
|
17
17
|
}
|