@abtnode/types 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/type_pb.d.ts +7 -1
- package/package.json +2 -2
package/lib/type_pb.d.ts
CHANGED
@@ -889,15 +889,21 @@ export type TLoginEmailSettings = {
|
|
889
889
|
requireVerified: boolean;
|
890
890
|
requireUnique: boolean;
|
891
891
|
trustOauthProviders: boolean;
|
892
|
+
enableDomainBlackList: boolean;
|
892
893
|
domainBlackList: string[];
|
894
|
+
enableDomainWhiteList: boolean;
|
895
|
+
domainWhiteList: string[];
|
893
896
|
trustedIssuers: TIssuer[];
|
894
897
|
};
|
895
898
|
export type TLoginPhoneSettings = {
|
896
899
|
enabled: boolean;
|
897
900
|
requireVerified: boolean;
|
898
901
|
requireUnique: boolean;
|
899
|
-
regionBlackList: string[];
|
900
902
|
trustedIssuers: TIssuer[];
|
903
|
+
enableRegionBlackList: boolean;
|
904
|
+
regionBlackList: string[];
|
905
|
+
enableRegionWhiteList: boolean;
|
906
|
+
regionWhiteList: string[];
|
901
907
|
};
|
902
908
|
export type TSessionConfig = {
|
903
909
|
cacheTtl: number;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.32-beta-
|
3
|
+
"version": "1.16.32-beta-76103be3",
|
4
4
|
"description": "Typescript definitions generated from protobuf",
|
5
5
|
"keywords": [
|
6
6
|
"abtnode",
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"bugs": {
|
37
37
|
"url": "https://github.com/ArcBlock/abt-node/issues"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "6d7afe107a349b1267b29e7f2216db9997085015"
|
40
40
|
}
|