@abtnode/constant 1.16.43-beta-20250425-130658-8da18f4d → 1.16.43-beta-20250427-232837-e671de06
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 +8 -4
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -542,6 +542,7 @@ module.exports = Object.freeze({
|
|
|
542
542
|
WELLKNOWN_ACME_CHALLENGE_PREFIX: '/.well-known/acme-challenge',
|
|
543
543
|
WELLKNOWN_DID_RESOLVER_PREFIX: '/.well-known/did.json', // server wellknown endpoint
|
|
544
544
|
WELLKNOWN_OAUTH_SERVER: '/.well-known/oauth-authorization-server',
|
|
545
|
+
WELLKNOWN_OPENID_SERVER: '/.well-known/openid-configuration',
|
|
545
546
|
WELLKNOWN_BLACKLIST_PREFIX: '/.well-known/blacklist',
|
|
546
547
|
WELLKNOWN_PING_PREFIX: '/.well-known/ping',
|
|
547
548
|
WELLKNOWN_ANALYTICS_PREFIX: '/.well-known/analytics',
|
|
@@ -610,10 +611,10 @@ module.exports = Object.freeze({
|
|
|
610
611
|
WHO_CAN_ACCESS,
|
|
611
612
|
WHO_CAN_ACCESS_PREFIX_ROLES: 'roles:',
|
|
612
613
|
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
614
|
+
GATEWAY_RATE_LIMIT: { min: 5, max: 500 },
|
|
615
|
+
GATEWAY_RATE_LIMIT_BURST_FACTOR: { min: 1, max: 10 },
|
|
616
|
+
GATEWAY_RATE_LIMIT_GLOBAL: { min: 100, max: 5000 },
|
|
617
|
+
GATEWAY_RATE_LIMIT_METHODS: ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS', 'HEAD'],
|
|
617
618
|
|
|
618
619
|
// Store
|
|
619
620
|
STORE_DETAIL_PAGE_PATH_PREFIX: '/blocklets',
|
|
@@ -811,6 +812,9 @@ module.exports = Object.freeze({
|
|
|
811
812
|
TOKEN: '/token',
|
|
812
813
|
REGISTRATION: '/register',
|
|
813
814
|
REVOCATION: '/revoke',
|
|
815
|
+
USERINFO: '/userinfo',
|
|
816
|
+
JWKS: '/jwks',
|
|
817
|
+
LOGOUT: '/logout',
|
|
814
818
|
},
|
|
815
819
|
OAUTH_CODE_TTL: 10 * 60, // 10 minutes
|
|
816
820
|
OAUTH_ACCESS_TOKEN_TTL: 24 * 60 * 60, // 1 day
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.43-beta-
|
|
6
|
+
"version": "1.16.43-beta-20250427-232837-e671de06",
|
|
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": "
|
|
23
|
+
"gitHead": "3644f271b67d5ebaa7a8b852173860a005f1d057"
|
|
24
24
|
}
|