@abtnode/constant 1.16.25-next-be3a37f4 → 1.16.25-next-0ba03ffc

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 (2) hide show
  1. package/index.js +16 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -341,6 +341,21 @@ const FEDERATED = {
341
341
  SYNC_LIMIT: 3,
342
342
  };
343
343
 
344
+ const LAUNCH_SESSION_STATUS = Object.freeze({
345
+ created: 0,
346
+ selected: 10,
347
+ connected: 20,
348
+ paid: 30,
349
+ nftMinted: 35,
350
+ allocated: 40,
351
+ consuming: 46,
352
+ installed: 50,
353
+ expired: 60,
354
+ terminated: 70,
355
+ timeout: 80,
356
+ transferred: 90,
357
+ });
358
+
344
359
  module.exports = Object.freeze({
345
360
  // Blocklet Server
346
361
  NODE_MODES: Object.freeze({
@@ -527,7 +542,6 @@ module.exports = Object.freeze({
527
542
  },
528
543
 
529
544
  LOG_RETAIN_IN_DAYS: 60,
530
- EXPIRED_BLOCKLET_DATA_RETENTION_DAYS: 30,
531
545
 
532
546
  BLOCKLET_INSTALL_TYPE: {
533
547
  STORE: 'store',
@@ -576,4 +590,5 @@ module.exports = Object.freeze({
576
590
  FEDERATED,
577
591
  SESSION_TOKEN_STORAGE_KEY: 'login_token',
578
592
  REFRESH_TOKEN_STORAGE_KEY: 'refresh_token',
593
+ LAUNCH_SESSION_STATUS,
579
594
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.25-next-be3a37f4",
6
+ "version": "1.16.25-next-0ba03ffc",
7
7
  "description": "ABT Node constants",
8
8
  "main": "index.js",
9
9
  "files": [
@@ -20,5 +20,5 @@
20
20
  "devDependencies": {
21
21
  "jest": "^29.7.0"
22
22
  },
23
- "gitHead": "908fb6a1dbf4f815474f02879990e5888c3e8577"
23
+ "gitHead": "4003cb3e4d32c47cdf097b00b551959db4d5d31a"
24
24
  }