@abtnode/constant 1.7.26 → 1.8.1
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 +5 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -189,6 +189,7 @@ const EVENTS = {
|
|
|
189
189
|
USER_REMOVED: 'user.removed',
|
|
190
190
|
USER_UPDATED: 'user.updated',
|
|
191
191
|
CERT_ISSUED: 'cert.issued',
|
|
192
|
+
CERT_UPDATED: 'cert.updated',
|
|
192
193
|
CERT_ERROR: 'cert.error',
|
|
193
194
|
RELOAD_GATEWAY: 'gateway.reload',
|
|
194
195
|
};
|
|
@@ -273,6 +274,7 @@ module.exports = Object.freeze({
|
|
|
273
274
|
}),
|
|
274
275
|
|
|
275
276
|
// Service Gateway
|
|
277
|
+
// eslint-disable-next-line prefer-regex-literals
|
|
276
278
|
IP: new RegExp('-(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\-(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}'),
|
|
277
279
|
DOMAIN_FOR_IP_SITE: '',
|
|
278
280
|
DOMAIN_FOR_IP_SITE_REGEXP: `~^\\d+.\\d+.\\d+.\\d+$`, // eslint-disable-line
|
|
@@ -336,4 +338,7 @@ module.exports = Object.freeze({
|
|
|
336
338
|
min: 10,
|
|
337
339
|
max: 100,
|
|
338
340
|
}),
|
|
341
|
+
|
|
342
|
+
// Store
|
|
343
|
+
STORE_DETAIL_PAGE_PATH_PREFIX: '/blocklets',
|
|
339
344
|
});
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.8.1",
|
|
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": "c970b8a386bebd7fe6dbc8b8eedf8bd8328b4bb5"
|
|
24
24
|
}
|