@abtnode/constant 1.7.9 → 1.7.12

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 +8 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -188,6 +188,9 @@ const EVENTS = {
188
188
  USER_ADDED: 'user.added',
189
189
  USER_REMOVED: 'user.removed',
190
190
  USER_UPDATED: 'user.updated',
191
+ CERT_ISSUED: 'cert.issued',
192
+ CERT_ERROR: 'cert.error',
193
+ RELOAD_GATEWAY: 'gateway.reload',
191
194
  };
192
195
 
193
196
  const WHO_CAN_ACCESS = {
@@ -324,4 +327,9 @@ module.exports = Object.freeze({
324
327
  EVENTS,
325
328
 
326
329
  WHO_CAN_ACCESS,
330
+
331
+ GATEWAY_REQ_LIMIT: Object.freeze({
332
+ min: 10,
333
+ max: 100,
334
+ }),
327
335
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.7.9",
6
+ "version": "1.7.12",
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.4.5"
22
22
  },
23
- "gitHead": "285f4fedd41fcb8e1814ce5d8250ac10616e67e0"
23
+ "gitHead": "afc78b9cb92448676149262fb02432bc256a5524"
24
24
  }