@abtnode/schema 1.16.32-beta-4d47ae7f → 1.16.32-beta-17be26d7
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 +1682 -1638
- package/lib/schema.graphqls +44 -0
- package/package.json +2 -2
package/lib/schema.graphqls
CHANGED
|
@@ -98,6 +98,23 @@ input IssuerInput {
|
|
|
98
98
|
pk: String
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
+
input LoginEmailSettingsInput {
|
|
102
|
+
enabled: Boolean
|
|
103
|
+
requireVerified: Boolean
|
|
104
|
+
requireUnique: Boolean
|
|
105
|
+
trustOauthProviders: Boolean
|
|
106
|
+
domainBlackList: [String!]
|
|
107
|
+
trustedIssuers: [IssuerInput!]
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
input LoginPhoneSettingsInput {
|
|
111
|
+
enabled: Boolean
|
|
112
|
+
requireVerified: Boolean
|
|
113
|
+
requireUnique: Boolean
|
|
114
|
+
regionBlackList: [String!]
|
|
115
|
+
trustedIssuers: [IssuerInput!]
|
|
116
|
+
}
|
|
117
|
+
|
|
101
118
|
input NodeInfoInput {
|
|
102
119
|
name: String
|
|
103
120
|
description: String
|
|
@@ -132,6 +149,7 @@ input PassportInput {
|
|
|
132
149
|
status: String
|
|
133
150
|
role: String
|
|
134
151
|
lastLoginAt: Uint32
|
|
152
|
+
scope: String
|
|
135
153
|
}
|
|
136
154
|
|
|
137
155
|
input PermissionInput {
|
|
@@ -955,6 +973,8 @@ input RoutingRuleToInput {
|
|
|
955
973
|
input SessionConfigInput {
|
|
956
974
|
cacheTtl: Uint32
|
|
957
975
|
ttl: Uint32
|
|
976
|
+
email: LoginEmailSettingsInput
|
|
977
|
+
phone: LoginPhoneSettingsInput
|
|
958
978
|
}
|
|
959
979
|
|
|
960
980
|
input SpaceGatewayInput {
|
|
@@ -1034,6 +1054,8 @@ input UserInfoInput {
|
|
|
1034
1054
|
phone: String
|
|
1035
1055
|
inviter: String
|
|
1036
1056
|
generation: Uint32
|
|
1057
|
+
emailVerified: Boolean
|
|
1058
|
+
phoneVerified: Boolean
|
|
1037
1059
|
}
|
|
1038
1060
|
|
|
1039
1061
|
input UserProfileInput {
|
|
@@ -1652,6 +1674,23 @@ type LauncherInfo {
|
|
|
1652
1674
|
chainHost: String
|
|
1653
1675
|
}
|
|
1654
1676
|
|
|
1677
|
+
type LoginEmailSettings {
|
|
1678
|
+
enabled: Boolean
|
|
1679
|
+
requireVerified: Boolean
|
|
1680
|
+
requireUnique: Boolean
|
|
1681
|
+
trustOauthProviders: Boolean
|
|
1682
|
+
domainBlackList: [String!]
|
|
1683
|
+
trustedIssuers: [Issuer!]
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
type LoginPhoneSettings {
|
|
1687
|
+
enabled: Boolean
|
|
1688
|
+
requireVerified: Boolean
|
|
1689
|
+
requireUnique: Boolean
|
|
1690
|
+
regionBlackList: [String!]
|
|
1691
|
+
trustedIssuers: [Issuer!]
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1655
1694
|
type MatchedSites {
|
|
1656
1695
|
id: String
|
|
1657
1696
|
domain: String
|
|
@@ -1785,6 +1824,7 @@ type Passport {
|
|
|
1785
1824
|
status: String
|
|
1786
1825
|
role: String
|
|
1787
1826
|
lastLoginAt: Uint32
|
|
1827
|
+
scope: String
|
|
1788
1828
|
}
|
|
1789
1829
|
|
|
1790
1830
|
type PassportIssuanceInfo {
|
|
@@ -2336,6 +2376,8 @@ type RuntimeInfo {
|
|
|
2336
2376
|
type SessionConfig {
|
|
2337
2377
|
cacheTtl: Uint32
|
|
2338
2378
|
ttl: Uint32
|
|
2379
|
+
email: LoginEmailSettings
|
|
2380
|
+
phone: LoginPhoneSettings
|
|
2339
2381
|
}
|
|
2340
2382
|
|
|
2341
2383
|
type SimpleBlockletMeta {
|
|
@@ -2451,6 +2493,8 @@ type UserInfo {
|
|
|
2451
2493
|
phone: String
|
|
2452
2494
|
inviter: String
|
|
2453
2495
|
generation: Uint32
|
|
2496
|
+
emailVerified: Boolean
|
|
2497
|
+
phoneVerified: Boolean
|
|
2454
2498
|
}
|
|
2455
2499
|
|
|
2456
2500
|
type UserSession {
|
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-17be26d7",
|
|
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": "9fa42d5a545aea6d57d2e1c51849fe227c8acb5e",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|