@blocklet/constant 1.17.2-beta-20251113-233643-ab2254af → 1.17.2-beta-20251114-122922-4319f1ac
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 +5 -0
- package/index.js +7 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -96,6 +96,7 @@ __export(lib_exports, {
|
|
|
96
96
|
SUPPORTED_LANGUAGES: () => languages_default,
|
|
97
97
|
SUSPENDED_REASON: () => SUSPENDED_REASON,
|
|
98
98
|
TeamEvents: () => TeamEvents,
|
|
99
|
+
USER_SESSION_STATUS: () => USER_SESSION_STATUS,
|
|
99
100
|
baseLanguages: () => baseLanguages,
|
|
100
101
|
fromBlockletSource: () => fromBlockletSource,
|
|
101
102
|
fromBlockletStatus: () => fromBlockletStatus,
|
|
@@ -1209,6 +1210,11 @@ var SIG_VERSION = {
|
|
|
1209
1210
|
V1: "1",
|
|
1210
1211
|
DEFAULT: "1"
|
|
1211
1212
|
};
|
|
1213
|
+
var USER_SESSION_STATUS = {
|
|
1214
|
+
ONLINE: "online",
|
|
1215
|
+
OFFLINE: "offline",
|
|
1216
|
+
EXPIRED: "expired"
|
|
1217
|
+
};
|
|
1212
1218
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1213
1219
|
0 && (module.exports = {
|
|
1214
1220
|
ABT_NODE_KERNEL_OR_BLOCKLET_MODE,
|
|
@@ -1288,6 +1294,7 @@ var SIG_VERSION = {
|
|
|
1288
1294
|
SUPPORTED_LANGUAGES,
|
|
1289
1295
|
SUSPENDED_REASON,
|
|
1290
1296
|
TeamEvents,
|
|
1297
|
+
USER_SESSION_STATUS,
|
|
1291
1298
|
baseLanguages,
|
|
1292
1299
|
fromBlockletSource,
|
|
1293
1300
|
fromBlockletStatus,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.17.2-beta-
|
|
6
|
+
"version": "1.17.2-beta-20251114-122922-4319f1ac",
|
|
7
7
|
"description": "Blocklet constants",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"type": "commonjs",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"prettier": "^3.3.2",
|
|
32
32
|
"typescript": "^5.6.3"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "eb484ccabce50c438b8eec1be3738da18cd28f75"
|
|
35
35
|
}
|