@abtnode/schema 1.16.32-beta-93e1a798 → 1.16.32-beta-76103be3
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 -2
- package/lib/schema.graphqls +14 -2
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -103,7 +103,10 @@ input LoginEmailSettingsInput {
|
|
|
103
103
|
requireVerified: Boolean
|
|
104
104
|
requireUnique: Boolean
|
|
105
105
|
trustOauthProviders: Boolean
|
|
106
|
+
enableDomainBlackList: Boolean
|
|
106
107
|
domainBlackList: [String!]
|
|
108
|
+
enableDomainWhiteList: Boolean
|
|
109
|
+
domainWhiteList: [String!]
|
|
107
110
|
trustedIssuers: [IssuerInput!]
|
|
108
111
|
}
|
|
109
112
|
|
|
@@ -111,8 +114,11 @@ input LoginPhoneSettingsInput {
|
|
|
111
114
|
enabled: Boolean
|
|
112
115
|
requireVerified: Boolean
|
|
113
116
|
requireUnique: Boolean
|
|
114
|
-
regionBlackList: [String!]
|
|
115
117
|
trustedIssuers: [IssuerInput!]
|
|
118
|
+
enableRegionBlackList: Boolean
|
|
119
|
+
regionBlackList: [String!]
|
|
120
|
+
enableRegionWhiteList: Boolean
|
|
121
|
+
regionWhiteList: [String!]
|
|
116
122
|
}
|
|
117
123
|
|
|
118
124
|
input NodeInfoInput {
|
|
@@ -1679,7 +1685,10 @@ type LoginEmailSettings {
|
|
|
1679
1685
|
requireVerified: Boolean
|
|
1680
1686
|
requireUnique: Boolean
|
|
1681
1687
|
trustOauthProviders: Boolean
|
|
1688
|
+
enableDomainBlackList: Boolean
|
|
1682
1689
|
domainBlackList: [String!]
|
|
1690
|
+
enableDomainWhiteList: Boolean
|
|
1691
|
+
domainWhiteList: [String!]
|
|
1683
1692
|
trustedIssuers: [Issuer!]
|
|
1684
1693
|
}
|
|
1685
1694
|
|
|
@@ -1687,8 +1696,11 @@ type LoginPhoneSettings {
|
|
|
1687
1696
|
enabled: Boolean
|
|
1688
1697
|
requireVerified: Boolean
|
|
1689
1698
|
requireUnique: Boolean
|
|
1690
|
-
regionBlackList: [String!]
|
|
1691
1699
|
trustedIssuers: [Issuer!]
|
|
1700
|
+
enableRegionBlackList: Boolean
|
|
1701
|
+
regionBlackList: [String!]
|
|
1702
|
+
enableRegionWhiteList: Boolean
|
|
1703
|
+
regionWhiteList: [String!]
|
|
1692
1704
|
}
|
|
1693
1705
|
|
|
1694
1706
|
type MatchedSites {
|
package/lib/schema.graphqls
CHANGED
|
@@ -103,7 +103,10 @@ input LoginEmailSettingsInput {
|
|
|
103
103
|
requireVerified: Boolean
|
|
104
104
|
requireUnique: Boolean
|
|
105
105
|
trustOauthProviders: Boolean
|
|
106
|
+
enableDomainBlackList: Boolean
|
|
106
107
|
domainBlackList: [String!]
|
|
108
|
+
enableDomainWhiteList: Boolean
|
|
109
|
+
domainWhiteList: [String!]
|
|
107
110
|
trustedIssuers: [IssuerInput!]
|
|
108
111
|
}
|
|
109
112
|
|
|
@@ -111,8 +114,11 @@ input LoginPhoneSettingsInput {
|
|
|
111
114
|
enabled: Boolean
|
|
112
115
|
requireVerified: Boolean
|
|
113
116
|
requireUnique: Boolean
|
|
114
|
-
regionBlackList: [String!]
|
|
115
117
|
trustedIssuers: [IssuerInput!]
|
|
118
|
+
enableRegionBlackList: Boolean
|
|
119
|
+
regionBlackList: [String!]
|
|
120
|
+
enableRegionWhiteList: Boolean
|
|
121
|
+
regionWhiteList: [String!]
|
|
116
122
|
}
|
|
117
123
|
|
|
118
124
|
input NodeInfoInput {
|
|
@@ -1679,7 +1685,10 @@ type LoginEmailSettings {
|
|
|
1679
1685
|
requireVerified: Boolean
|
|
1680
1686
|
requireUnique: Boolean
|
|
1681
1687
|
trustOauthProviders: Boolean
|
|
1688
|
+
enableDomainBlackList: Boolean
|
|
1682
1689
|
domainBlackList: [String!]
|
|
1690
|
+
enableDomainWhiteList: Boolean
|
|
1691
|
+
domainWhiteList: [String!]
|
|
1683
1692
|
trustedIssuers: [Issuer!]
|
|
1684
1693
|
}
|
|
1685
1694
|
|
|
@@ -1687,8 +1696,11 @@ type LoginPhoneSettings {
|
|
|
1687
1696
|
enabled: Boolean
|
|
1688
1697
|
requireVerified: Boolean
|
|
1689
1698
|
requireUnique: Boolean
|
|
1690
|
-
regionBlackList: [String!]
|
|
1691
1699
|
trustedIssuers: [Issuer!]
|
|
1700
|
+
enableRegionBlackList: Boolean
|
|
1701
|
+
regionBlackList: [String!]
|
|
1702
|
+
enableRegionWhiteList: Boolean
|
|
1703
|
+
regionWhiteList: [String!]
|
|
1692
1704
|
}
|
|
1693
1705
|
|
|
1694
1706
|
type MatchedSites {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.32-beta-
|
|
6
|
+
"version": "1.16.32-beta-76103be3",
|
|
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": "6d7afe107a349b1267b29e7f2216db9997085015",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|