entitlement-provider 2.9.89 → 2.9.104
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/package.json +30 -38
- package/config/config.json +0 -9
- package/config/openid-configuration +0 -84
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "entitlement-provider",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.104",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -24,34 +24,35 @@
|
|
|
24
24
|
"test": "npm run test:ava",
|
|
25
25
|
"test:ava": "ava --timeout 2m tests/*.mjs",
|
|
26
26
|
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
|
|
27
|
-
"pkg": "npm-pkgbuild --verbose
|
|
27
|
+
"pkg": "npm-pkgbuild --verbose"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@kronos-integration/interceptor-decode-json": "^2.1.
|
|
31
|
-
"@kronos-integration/service": "^10.4.
|
|
32
|
-
"@kronos-integration/service-admin": "^3.4.
|
|
33
|
-
"@kronos-integration/service-authenticator": "^1.6.
|
|
34
|
-
"@kronos-integration/service-health": "^5.0.
|
|
35
|
-
"@kronos-integration/service-http": "^10.6.
|
|
36
|
-
"@kronos-integration/service-ldap": "^4.0.
|
|
37
|
-
"@kronos-integration/service-smtp": "^1.0.
|
|
38
|
-
"model-attributes": "^4.1.
|
|
30
|
+
"@kronos-integration/interceptor-decode-json": "^2.1.63",
|
|
31
|
+
"@kronos-integration/service": "^10.4.20",
|
|
32
|
+
"@kronos-integration/service-admin": "^3.4.55",
|
|
33
|
+
"@kronos-integration/service-authenticator": "^1.6.21",
|
|
34
|
+
"@kronos-integration/service-health": "^5.0.148",
|
|
35
|
+
"@kronos-integration/service-http": "^10.6.107",
|
|
36
|
+
"@kronos-integration/service-ldap": "^4.0.81",
|
|
37
|
+
"@kronos-integration/service-smtp": "^1.0.68",
|
|
38
|
+
"model-attributes": "^4.1.14"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
42
42
|
"@semantic-release/exec": "^6.0.3",
|
|
43
43
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
44
|
-
"ava": "^4.0
|
|
44
|
+
"ava": "^4.1.0",
|
|
45
45
|
"c8": "^7.1.0",
|
|
46
|
-
"got": "12.0.
|
|
47
|
-
"npm-pkgbuild": "^
|
|
46
|
+
"got": "12.0.3",
|
|
47
|
+
"npm-pkgbuild": "^8.3.12",
|
|
48
48
|
"semantic-release": "^19.0.2"
|
|
49
49
|
},
|
|
50
50
|
"optionalDependencies": {
|
|
51
|
-
"@kronos-integration/service-systemd": "^2.5.
|
|
51
|
+
"@kronos-integration/service-systemd": "^2.5.4",
|
|
52
|
+
"mf-hosting": "github:arlac77/mf-hosting"
|
|
52
53
|
},
|
|
53
54
|
"engines": {
|
|
54
|
-
"node": ">=16.
|
|
55
|
+
"node": ">=16.14.2"
|
|
55
56
|
},
|
|
56
57
|
"os": [
|
|
57
58
|
"linux"
|
|
@@ -74,36 +75,27 @@
|
|
|
74
75
|
"socket": "/run/${name}/http/socket"
|
|
75
76
|
},
|
|
76
77
|
"pkg": {
|
|
77
|
-
"backup": "etc/${name}/config.json",
|
|
78
78
|
"content": {
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
},
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"/etc/nginx/sites/common/${name}.conf": "pkg/nginx.conf",
|
|
85
|
-
"/srv/http/.well-known/openid-configuration": "config/openid-configuration",
|
|
86
|
-
"/usr/lib/sysusers.d/${name}.conf": "pkg/sysusers.conf",
|
|
87
|
-
"${installdir}/": [
|
|
79
|
+
"${config.dir}config.json": "config/config.json",
|
|
80
|
+
"${nginx.sites.dir}${name}.conf": "pkg/nginx.conf",
|
|
81
|
+
"${well-known.content.dir}openid-configuration": "config/openid-configuration",
|
|
82
|
+
"${sysusers.config.dir}${name}.conf": "pkg/sysusers.conf",
|
|
83
|
+
"${install.dir}": [
|
|
88
84
|
{
|
|
89
85
|
"type": "npm-pack"
|
|
90
86
|
},
|
|
91
87
|
{
|
|
92
88
|
"type": "node-modules"
|
|
93
89
|
}
|
|
94
|
-
]
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"depends": {
|
|
100
|
-
"systemd": ">=250.3",
|
|
101
|
-
"nginx-mainline": ">=1.21.4"
|
|
90
|
+
],
|
|
91
|
+
"${systemd.unit.dir}": {
|
|
92
|
+
"base": "systemd"
|
|
93
|
+
},
|
|
94
|
+
"${tmpfiles.config.dir}${name}.conf": "pkg/tmpfiles.conf"
|
|
102
95
|
},
|
|
103
|
-
"groups": "user admin",
|
|
104
96
|
"hooks": "pkg/hooks.sh",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
97
|
+
"backup": "${config.dir}config.json",
|
|
98
|
+
"groups": "user admin"
|
|
107
99
|
},
|
|
108
100
|
"release": {
|
|
109
101
|
"plugins": [
|
|
@@ -122,7 +114,7 @@
|
|
|
122
114
|
"template": {
|
|
123
115
|
"inheritFrom": [
|
|
124
116
|
"arlac77/template-arlac77-github",
|
|
125
|
-
"arlac77/template-kronos-app
|
|
117
|
+
"arlac77/template-kronos-app"
|
|
126
118
|
]
|
|
127
119
|
}
|
|
128
120
|
}
|
package/config/config.json
DELETED
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"issuer":"http://acmepaymentscorp",
|
|
3
|
-
"authorization_endpoint":"http://acmepaymentscorp/oauth/auz/authorize",
|
|
4
|
-
"token_endpoint":"http://acmepaymentscorp/oauth/oauth20/token",
|
|
5
|
-
"userinfo_endpoint":"http://acmepaymentscorp/oauth/userinfo",
|
|
6
|
-
"jwks_uri":"http://acmepaymentscorp/oauth/jwks",
|
|
7
|
-
"scopes_supported":[
|
|
8
|
-
"READ",
|
|
9
|
-
"WRITE",
|
|
10
|
-
"DELETE",
|
|
11
|
-
"openid",
|
|
12
|
-
"scope",
|
|
13
|
-
"profile",
|
|
14
|
-
"email",
|
|
15
|
-
"address",
|
|
16
|
-
"phone"
|
|
17
|
-
],
|
|
18
|
-
"response_types_supported":[
|
|
19
|
-
"code",
|
|
20
|
-
"code id_token",
|
|
21
|
-
"code token",
|
|
22
|
-
"code id_token token",
|
|
23
|
-
"token",
|
|
24
|
-
"id_token",
|
|
25
|
-
"id_token token"
|
|
26
|
-
],
|
|
27
|
-
"grant_types_supported":[
|
|
28
|
-
"authorization_code",
|
|
29
|
-
"implicit",
|
|
30
|
-
"password",
|
|
31
|
-
"client_credentials",
|
|
32
|
-
"urn:ietf:params:oauth:grant-type:jwt-bearer"
|
|
33
|
-
],
|
|
34
|
-
"subject_types_supported":[
|
|
35
|
-
"public"
|
|
36
|
-
],
|
|
37
|
-
"id_token_signing_alg_values_supported":[
|
|
38
|
-
"HS256",
|
|
39
|
-
"HS384",
|
|
40
|
-
"HS512",
|
|
41
|
-
"RS256",
|
|
42
|
-
"RS384",
|
|
43
|
-
"RS512",
|
|
44
|
-
"ES256",
|
|
45
|
-
"ES384",
|
|
46
|
-
"ES512",
|
|
47
|
-
"PS256",
|
|
48
|
-
"PS384",
|
|
49
|
-
"PS512"
|
|
50
|
-
],
|
|
51
|
-
"id_token_encryption_alg_values_supported":[
|
|
52
|
-
"RSA1_5",
|
|
53
|
-
"RSA-OAEP",
|
|
54
|
-
"RSA-OAEP-256",
|
|
55
|
-
"A128KW",
|
|
56
|
-
"A192KW",
|
|
57
|
-
"A256KW",
|
|
58
|
-
"A128GCMKW",
|
|
59
|
-
"A192GCMKW",
|
|
60
|
-
"A256GCMKW",
|
|
61
|
-
"dir"
|
|
62
|
-
],
|
|
63
|
-
"id_token_encryption_enc_values_supported":[
|
|
64
|
-
"A128CBC-HS256",
|
|
65
|
-
"A192CBC-HS384",
|
|
66
|
-
"A256CBC-HS512",
|
|
67
|
-
"A128GCM",
|
|
68
|
-
"A192GCM",
|
|
69
|
-
"A256GCM"
|
|
70
|
-
],
|
|
71
|
-
"token_endpoint_auth_methods_supported":[
|
|
72
|
-
"client_secret_post",
|
|
73
|
-
"client_secret_basic",
|
|
74
|
-
"client_secret_jwt",
|
|
75
|
-
"private_key_jwt"
|
|
76
|
-
],
|
|
77
|
-
"token_endpoint_auth_signing_alg_values_supported":[
|
|
78
|
-
"HS256",
|
|
79
|
-
"RS256"
|
|
80
|
-
],
|
|
81
|
-
"claims_parameter_supported":false,
|
|
82
|
-
"request_parameter_supported":false,
|
|
83
|
-
"request_uri_parameter_supported":false
|
|
84
|
-
}
|