@blocklet/constant 1.16.42 → 1.16.43-beta-20250419-231352-c78ac93d
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/index.d.ts +2 -0
- package/index.js +4 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -813,6 +813,8 @@ export declare const BlockletEvents: Readonly<{
|
|
|
813
813
|
nftConsumed: "blocklet.nftConsumed";
|
|
814
814
|
securityConfigUpdated: "blocklet.securityConfigUpdated";
|
|
815
815
|
configTheme: "blocklet.configTheme";
|
|
816
|
+
addUserSession: "blocklet.addUserSession";
|
|
817
|
+
updateUserSession: "blocklet.updateUserSession";
|
|
816
818
|
}>;
|
|
817
819
|
export declare const BlockletInternalEvents: Readonly<{
|
|
818
820
|
appConfigChanged: "blocklet.appConfigChanged";
|
package/index.js
CHANGED
|
@@ -966,7 +966,10 @@ var BlockletEvents = Object.freeze({
|
|
|
966
966
|
// securityConfig
|
|
967
967
|
securityConfigUpdated: "blocklet.securityConfigUpdated",
|
|
968
968
|
// appearance
|
|
969
|
-
configTheme: "blocklet.configTheme"
|
|
969
|
+
configTheme: "blocklet.configTheme",
|
|
970
|
+
// user session
|
|
971
|
+
addUserSession: "blocklet.addUserSession",
|
|
972
|
+
updateUserSession: "blocklet.updateUserSession"
|
|
970
973
|
});
|
|
971
974
|
var BlockletInternalEvents = Object.freeze({
|
|
972
975
|
appConfigChanged: "blocklet.appConfigChanged",
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.43-beta-20250419-231352-c78ac93d",
|
|
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": "207acad34e8ccf318cd7539c1ac717cee7951b53"
|
|
40
40
|
}
|