@blocklet/constant 1.16.37-beta-20250102-115729-ae7f327e → 1.16.37-beta-20250106-134442-ea92021c
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/LICENSE +1 -1
- package/index.d.ts +2 -0
- package/index.js +4 -2
- package/package.json +2 -2
package/LICENSE
CHANGED
package/index.d.ts
CHANGED
|
@@ -968,6 +968,7 @@ export declare const LOGIN_PROVIDER: {
|
|
|
968
968
|
GITHUB: string;
|
|
969
969
|
WALLET: string;
|
|
970
970
|
NFT: string;
|
|
971
|
+
PASSKEY: string;
|
|
971
972
|
};
|
|
972
973
|
export declare const PROVIDER_NAME: {
|
|
973
974
|
auth0: string;
|
|
@@ -977,6 +978,7 @@ export declare const PROVIDER_NAME: {
|
|
|
977
978
|
email: string;
|
|
978
979
|
wallet: string;
|
|
979
980
|
federated: string;
|
|
981
|
+
passkey: string;
|
|
980
982
|
};
|
|
981
983
|
export declare const APP_CONFIG_DIR = "/.config";
|
|
982
984
|
export declare const APP_CONFIG_PUBLIC_DIR = "/.config/public";
|
package/index.js
CHANGED
|
@@ -1111,7 +1111,8 @@ var LOGIN_PROVIDER = {
|
|
|
1111
1111
|
APPLE: "apple",
|
|
1112
1112
|
GITHUB: "github",
|
|
1113
1113
|
WALLET: "wallet",
|
|
1114
|
-
NFT: "nft"
|
|
1114
|
+
NFT: "nft",
|
|
1115
|
+
PASSKEY: "passkey"
|
|
1115
1116
|
};
|
|
1116
1117
|
var PROVIDER_NAME = {
|
|
1117
1118
|
auth0: "Auth0",
|
|
@@ -1120,7 +1121,8 @@ var PROVIDER_NAME = {
|
|
|
1120
1121
|
apple: "Apple",
|
|
1121
1122
|
email: "Email",
|
|
1122
1123
|
wallet: "DID wallet",
|
|
1123
|
-
federated: "Federated"
|
|
1124
|
+
federated: "Federated",
|
|
1125
|
+
passkey: "Passkey"
|
|
1124
1126
|
};
|
|
1125
1127
|
var APP_CONFIG_DIR = "/.config";
|
|
1126
1128
|
var APP_CONFIG_PUBLIC_DIR = "/.config/public";
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.37-beta-
|
|
6
|
+
"version": "1.16.37-beta-20250106-134442-ea92021c",
|
|
7
7
|
"description": "Blocklet constants",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"type": "commonjs",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"ts-jest": "^29.2.5",
|
|
37
37
|
"typescript": "^5.6.3"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "3ca08cceb016a318c7c00ec1f1bef4db19a3c723"
|
|
40
40
|
}
|