@abtnode/constant 1.16.25-beta-85e265d1 → 1.16.25-beta-bc165d9b

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 +15 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -387,6 +387,20 @@ const ROUTING_RESPONSE_TYPES = [
387
387
  value: 'image/svg+xml',
388
388
  },
389
389
  ];
390
+ const LAUNCH_SESSION_STATUS = Object.freeze({
391
+ created: 0,
392
+ selected: 10,
393
+ connected: 20,
394
+ paid: 30,
395
+ nftMinted: 35,
396
+ allocated: 40,
397
+ consuming: 46,
398
+ installed: 50,
399
+ expired: 60,
400
+ terminated: 70,
401
+ timeout: 80,
402
+ transferred: 90,
403
+ });
390
404
 
391
405
  module.exports = Object.freeze({
392
406
  // Blocklet Server
@@ -575,7 +589,6 @@ module.exports = Object.freeze({
575
589
  },
576
590
 
577
591
  LOG_RETAIN_IN_DAYS: 60,
578
- EXPIRED_BLOCKLET_DATA_RETENTION_DAYS: 30,
579
592
 
580
593
  BLOCKLET_INSTALL_TYPE: {
581
594
  STORE: 'store',
@@ -626,4 +639,5 @@ module.exports = Object.freeze({
626
639
  FEDERATED,
627
640
  SESSION_TOKEN_STORAGE_KEY: 'login_token',
628
641
  REFRESH_TOKEN_STORAGE_KEY: 'refresh_token',
642
+ LAUNCH_SESSION_STATUS,
629
643
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.25-beta-85e265d1",
6
+ "version": "1.16.25-beta-bc165d9b",
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": "ea2dbf135591636c3d1899374b99d66eee61c7d2"
23
+ "gitHead": "a7895ed39e47c8c6bd10d32317804cc1904714ef"
24
24
  }