@abtnode/constant 1.16.30-beta-958ae719 → 1.16.30-beta-b80c7bcd

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 +7 -2
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -401,18 +401,22 @@ const ROUTING_RESPONSE_TYPES = [
401
401
  value: 'image/svg+xml',
402
402
  },
403
403
  ];
404
+
405
+ const SERVERLESS_BLOCKLET_DATA_RETENTION_DAYS = 30;
406
+
404
407
  const LAUNCH_SESSION_STATUS = Object.freeze({
405
408
  created: 0,
406
409
  selected: 10,
407
410
  connected: 20,
411
+ timeout: 25,
408
412
  paid: 30,
409
413
  nftMinted: 35,
410
414
  allocated: 40,
411
415
  consuming: 46,
412
416
  installed: 50,
413
- expired: 60,
417
+ overdue: 60,
418
+ canceled: 65,
414
419
  terminated: 70,
415
- timeout: 80,
416
420
  transferred: 90,
417
421
  });
418
422
 
@@ -657,6 +661,7 @@ module.exports = Object.freeze({
657
661
  FEDERATED,
658
662
  SESSION_TOKEN_STORAGE_KEY: 'login_token',
659
663
  REFRESH_TOKEN_STORAGE_KEY: 'refresh_token',
664
+ SERVERLESS_BLOCKLET_DATA_RETENTION_DAYS,
660
665
  LAUNCH_SESSION_STATUS,
661
666
  UNOWNED_DID: 'z'.repeat(35),
662
667
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.30-beta-958ae719",
6
+ "version": "1.16.30-beta-b80c7bcd",
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": "75590ff3be51e7fe2a070124541aebc203ed16dc"
23
+ "gitHead": "9d68833290b1a59357b7c362018416b82b5d1503"
24
24
  }