@abtnode/constant 1.7.10 → 1.7.13
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.
- package/index.js +6 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -190,6 +190,7 @@ const EVENTS = {
|
|
|
190
190
|
USER_UPDATED: 'user.updated',
|
|
191
191
|
CERT_ISSUED: 'cert.issued',
|
|
192
192
|
CERT_ERROR: 'cert.error',
|
|
193
|
+
RELOAD_GATEWAY: 'gateway.reload',
|
|
193
194
|
};
|
|
194
195
|
|
|
195
196
|
const WHO_CAN_ACCESS = {
|
|
@@ -326,4 +327,9 @@ module.exports = Object.freeze({
|
|
|
326
327
|
EVENTS,
|
|
327
328
|
|
|
328
329
|
WHO_CAN_ACCESS,
|
|
330
|
+
|
|
331
|
+
GATEWAY_REQ_LIMIT: Object.freeze({
|
|
332
|
+
min: 10,
|
|
333
|
+
max: 100,
|
|
334
|
+
}),
|
|
329
335
|
});
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.7.
|
|
6
|
+
"version": "1.7.13",
|
|
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": "
|
|
23
|
+
"gitHead": "c35c485417df0e023c06c09557644b46a6c8c655"
|
|
24
24
|
}
|