entitlement-provider 2.10.34 → 2.10.36

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/package.json +9 -10
  2. package/src/initialize.mjs +2 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "entitlement-provider",
3
- "version": "2.10.34",
3
+ "version": "2.10.36",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
@@ -28,29 +28,28 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@kronos-integration/interceptor-decode-json": "^2.1.76",
31
- "@kronos-integration/service": "^11.1.0",
32
- "@kronos-integration/service-admin": "^3.4.67",
33
- "@kronos-integration/service-authenticator": "^1.6.57",
34
- "@kronos-integration/service-health": "^5.1.1",
35
- "@kronos-integration/service-http": "^10.9.5",
31
+ "@kronos-integration/service": "^11.2.0",
32
+ "@kronos-integration/service-admin": "^3.4.68",
33
+ "@kronos-integration/service-authenticator": "^1.6.58",
34
+ "@kronos-integration/service-health": "^5.1.2",
35
+ "@kronos-integration/service-http": "^10.9.9",
36
36
  "@kronos-integration/service-ldap": "^4.0.138",
37
- "@kronos-integration/service-smtp": "^1.0.79",
38
37
  "model-attributes": "^4.2.2"
39
38
  },
40
39
  "devDependencies": {
41
40
  "@semantic-release/commit-analyzer": "^13.0.0",
42
41
  "@semantic-release/exec": "^6.0.3",
43
- "@semantic-release/github": "^10.3.5",
42
+ "@semantic-release/github": "^11.0.0",
44
43
  "@semantic-release/release-notes-generator": "^14.0.1",
45
44
  "ava": "^6.1.3",
46
45
  "c8": "^10.1.2",
47
46
  "got": "^14.4.2",
48
- "npm-pkgbuild": "^15.5.0",
47
+ "npm-pkgbuild": "^15.5.4",
49
48
  "semantic-release": "^24.1.1"
50
49
  },
51
50
  "optionalDependencies": {
52
51
  "@kronos-integration/service-systemd": "^2.6.2",
53
- "mf-hosting": "^2.7.0"
52
+ "mf-hosting": "^2.8.0"
54
53
  },
55
54
  "engines": {
56
55
  "node": ">=22.9.0"
@@ -1,5 +1,4 @@
1
1
  import ServiceHealth from "@kronos-integration/service-health";
2
- import ServiceSMTP from "@kronos-integration/service-smtp";
3
2
  import ServiceLDAP from "@kronos-integration/service-ldap";
4
3
  import ServiceAuthenticator from "@kronos-integration/service-authenticator";
5
4
  import {
@@ -21,10 +20,9 @@ import {
21
20
  } from "@kronos-integration/service-http";
22
21
 
23
22
  export default async function initialize(sp) {
24
- sp.registerFactories([
23
+ await sp.registerFactories([
25
24
  ServiceHTTP,
26
25
  ServiceLDAP,
27
- ServiceSMTP,
28
26
  ServiceAuthenticator,
29
27
  ServiceHealth,
30
28
  ServiceAdmin,
@@ -213,7 +211,6 @@ export default async function initialize(sp) {
213
211
  },
214
212
  ldap: {},
215
213
  health: {},
216
- admin: {},
217
- smtp: {}
214
+ admin: {}
218
215
  });
219
216
  }