@mocanetwork/airkit 1.4.0-beta.2 → 1.4.0
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/dist/airkit.cjs.js
CHANGED
|
@@ -97,7 +97,7 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
97
97
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
98
98
|
};
|
|
99
99
|
|
|
100
|
-
var version = "1.4.0
|
|
100
|
+
var version = "1.4.0";
|
|
101
101
|
var airkitPackage = {
|
|
102
102
|
version: version};
|
|
103
103
|
|
package/dist/airkit.esm.js
CHANGED
|
@@ -95,7 +95,7 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
95
95
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
96
96
|
};
|
|
97
97
|
|
|
98
|
-
var version = "1.4.0
|
|
98
|
+
var version = "1.4.0";
|
|
99
99
|
var airkitPackage = {
|
|
100
100
|
version: version};
|
|
101
101
|
|
package/dist/airkit.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ConfirmationStrategy, RealmLoginWalletId } from "../wallet";
|
|
2
|
-
export type
|
|
2
|
+
export type AliasValidation = {
|
|
3
3
|
minLength: number;
|
|
4
4
|
maxLength: number;
|
|
5
5
|
};
|
|
@@ -20,7 +20,7 @@ export type RealmPartnerConfig = {
|
|
|
20
20
|
allowedDomains?: string[];
|
|
21
21
|
publicKey?: string;
|
|
22
22
|
jwksUrl?: string;
|
|
23
|
-
|
|
23
|
+
aliasValidation: AliasValidation;
|
|
24
24
|
style?: RealmPartnerConfigStyle;
|
|
25
25
|
loginMethods?: RealmLoginMethod[];
|
|
26
26
|
walletLoginMethods?: RealmLoginWalletId[];
|