@blocklet/constant 1.17.2-beta-20251113-233840-b720c2e6 → 1.17.2

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.
Files changed (3) hide show
  1. package/index.d.ts +5 -0
  2. package/index.js +7 -0
  3. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -1018,5 +1018,10 @@ export declare const SIG_VERSION: {
1018
1018
  V1: string;
1019
1019
  DEFAULT: string;
1020
1020
  };
1021
+ export declare const USER_SESSION_STATUS: {
1022
+ ONLINE: string;
1023
+ OFFLINE: string;
1024
+ EXPIRED: string;
1025
+ };
1021
1026
 
1022
1027
  export {};
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-20251113-233840-b720c2e6",
6
+ "version": "1.17.2",
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": "48e4475970ca42fc5da23d6d72ebfe892115077a"
34
+ "gitHead": "d11c73575f9211d0794ccb72ea8981c50700ad10"
35
35
  }