@abtnode/constant 1.8.56 → 1.8.57

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 +6 -2
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -253,7 +253,7 @@ const EVENTS = {
253
253
  NOTIFICATION_CREATE: 'notification.create',
254
254
  ROUTING_UPDATED: 'routing.updated',
255
255
  NODE_UPDATED: 'node.updated',
256
- NODE_UPGRADE_PROGRESS: 'node.upgrade.progress',
256
+ NODE_MAINTAIN_PROGRESS: 'node.upgrade.progress',
257
257
  NODE_STARTED: 'node.started',
258
258
  NODE_STOPPED: 'node.stopped',
259
259
  NODE_ADDED_OWNER: 'node.addedOwner',
@@ -288,9 +288,10 @@ module.exports = Object.freeze({
288
288
 
289
289
  DEFAULT_DESCRIPTION: 'Web Interface to manage your Blocklet Server',
290
290
 
291
- NODE_UPGRADE_PROGRESS: Object.freeze({
291
+ NODE_MAINTAIN_PROGRESS: Object.freeze({
292
292
  SETUP: 'setup', // backup
293
293
  INSTALLING: 'installing',
294
+ VERIFYING: 'verifying',
294
295
  RESTARTING: 'restarting',
295
296
  CLEANUP: 'cleanup',
296
297
  COMPLETE: 'complete',
@@ -449,4 +450,7 @@ module.exports = Object.freeze({
449
450
  STOPPED: 2,
450
451
  START_FROM_CRASH: 3,
451
452
  },
453
+
454
+ LOG_RETAIN_IN_DAYS: 60,
455
+ EXPIRED_BLOCKLET_DATA_RETENTION_DAYS: 7,
452
456
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.8.56",
6
+ "version": "1.8.57",
7
7
  "description": "ABT Node constants",
8
8
  "main": "index.js",
9
9
  "files": [
@@ -20,5 +20,5 @@
20
20
  "devDependencies": {
21
21
  "jest": "^27.5.1"
22
22
  },
23
- "gitHead": "8c24c9d747e96e05510b9cbe863666960569fb46"
23
+ "gitHead": "2573eb9370c79853cba88cba418a964fb1cc8949"
24
24
  }