@abtnode/schema 1.16.43-beta-20250424-125523-08a65a5c → 1.16.43-beta-20250427-132304-6da95c55
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 +19 -0
- package/lib/schema.graphqls +19 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -745,6 +745,11 @@ input RequestDisconnectFromStoreInput {
|
|
|
745
745
|
storeScope: String
|
|
746
746
|
}
|
|
747
747
|
|
|
748
|
+
input RequestDomainDNSInput {
|
|
749
|
+
teamDid: String
|
|
750
|
+
domain: String
|
|
751
|
+
}
|
|
752
|
+
|
|
748
753
|
input RequestFindCertificateByDomainInput {
|
|
749
754
|
domain: String
|
|
750
755
|
did: String
|
|
@@ -953,7 +958,10 @@ input RequestLaunchBlockletByLauncherInput {
|
|
|
953
958
|
|
|
954
959
|
input RequestLimitInput {
|
|
955
960
|
enabled: Boolean
|
|
961
|
+
global: Uint32
|
|
962
|
+
burstFactor: Uint32
|
|
956
963
|
rate: Uint32
|
|
964
|
+
methods: [String!]
|
|
957
965
|
}
|
|
958
966
|
|
|
959
967
|
input RequestLogoutUserInput {
|
|
@@ -2724,7 +2732,10 @@ type ReleaseComponent {
|
|
|
2724
2732
|
|
|
2725
2733
|
type RequestLimit {
|
|
2726
2734
|
enabled: Boolean
|
|
2735
|
+
global: Uint32
|
|
2736
|
+
burstFactor: Uint32
|
|
2727
2737
|
rate: Uint32
|
|
2738
|
+
methods: [String!]
|
|
2728
2739
|
}
|
|
2729
2740
|
|
|
2730
2741
|
type Requirement {
|
|
@@ -2918,6 +2929,13 @@ type ResponseDisconnectFromStore {
|
|
|
2918
2929
|
code: StatusCode
|
|
2919
2930
|
}
|
|
2920
2931
|
|
|
2932
|
+
type ResponseDomainDNS {
|
|
2933
|
+
isDnsResolved: Boolean
|
|
2934
|
+
hasCname: Boolean
|
|
2935
|
+
isCnameMatch: Boolean
|
|
2936
|
+
error: String
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2921
2939
|
type ResponseFindCertificateByDomain {
|
|
2922
2940
|
code: StatusCode
|
|
2923
2941
|
cert: Certificate
|
|
@@ -3965,4 +3983,5 @@ type Query {
|
|
|
3965
3983
|
getPassportLogs(input: RequestPassportLogInput): ResponsePassportLog
|
|
3966
3984
|
getRelatedPassports(input: RequestRelatedPassportsInput): ResponsePassport
|
|
3967
3985
|
getBlockletBaseInfo(input: TeamInput): ResponseBlockletInfo
|
|
3986
|
+
getDomainDNS(input: RequestDomainDNSInput): ResponseDomainDNS
|
|
3968
3987
|
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -745,6 +745,11 @@ input RequestDisconnectFromStoreInput {
|
|
|
745
745
|
storeScope: String
|
|
746
746
|
}
|
|
747
747
|
|
|
748
|
+
input RequestDomainDNSInput {
|
|
749
|
+
teamDid: String
|
|
750
|
+
domain: String
|
|
751
|
+
}
|
|
752
|
+
|
|
748
753
|
input RequestFindCertificateByDomainInput {
|
|
749
754
|
domain: String
|
|
750
755
|
did: String
|
|
@@ -953,7 +958,10 @@ input RequestLaunchBlockletByLauncherInput {
|
|
|
953
958
|
|
|
954
959
|
input RequestLimitInput {
|
|
955
960
|
enabled: Boolean
|
|
961
|
+
global: Uint32
|
|
962
|
+
burstFactor: Uint32
|
|
956
963
|
rate: Uint32
|
|
964
|
+
methods: [String!]
|
|
957
965
|
}
|
|
958
966
|
|
|
959
967
|
input RequestLogoutUserInput {
|
|
@@ -2724,7 +2732,10 @@ type ReleaseComponent {
|
|
|
2724
2732
|
|
|
2725
2733
|
type RequestLimit {
|
|
2726
2734
|
enabled: Boolean
|
|
2735
|
+
global: Uint32
|
|
2736
|
+
burstFactor: Uint32
|
|
2727
2737
|
rate: Uint32
|
|
2738
|
+
methods: [String!]
|
|
2728
2739
|
}
|
|
2729
2740
|
|
|
2730
2741
|
type Requirement {
|
|
@@ -2918,6 +2929,13 @@ type ResponseDisconnectFromStore {
|
|
|
2918
2929
|
code: StatusCode
|
|
2919
2930
|
}
|
|
2920
2931
|
|
|
2932
|
+
type ResponseDomainDNS {
|
|
2933
|
+
isDnsResolved: Boolean
|
|
2934
|
+
hasCname: Boolean
|
|
2935
|
+
isCnameMatch: Boolean
|
|
2936
|
+
error: String
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2921
2939
|
type ResponseFindCertificateByDomain {
|
|
2922
2940
|
code: StatusCode
|
|
2923
2941
|
cert: Certificate
|
|
@@ -3967,5 +3985,6 @@ type Query {
|
|
|
3967
3985
|
getPassportLogs(input: RequestPassportLogInput): ResponsePassportLog
|
|
3968
3986
|
getRelatedPassports(input: RequestRelatedPassportsInput): ResponsePassport
|
|
3969
3987
|
getBlockletBaseInfo(input: TeamInput): ResponseBlockletInfo
|
|
3988
|
+
getDomainDNS(input: RequestDomainDNSInput): ResponseDomainDNS
|
|
3970
3989
|
}
|
|
3971
3990
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.43-beta-
|
|
6
|
+
"version": "1.16.43-beta-20250427-132304-6da95c55",
|
|
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": "Apache-2.0",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "9df10dcb3135a528912241e7fc1ed54171bfeb03",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|