pmcf 2.65.3 → 2.65.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.65.3",
3
+ "version": "2.65.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,13 +32,6 @@ const ddnsEndpoint = {
32
32
  tls: false
33
33
  };
34
34
 
35
- const KEAServiceTypes = {
36
- kea: { extends: ["dhcp"] },
37
- "kea-ddns": {
38
- endpoints: [ddnsEndpoint]
39
- }
40
- };
41
-
42
35
  const controlAgentEndpoint = {
43
36
  type: "kea-control-agent",
44
37
  port: 53002,
@@ -81,6 +74,31 @@ const controlDDNSEndpoint = {
81
74
  path: "/run/kea/ddns-ctrl-socket"
82
75
  };
83
76
 
77
+ const KEAServiceTypes = {
78
+ kea: { extends: ["dhcp"] },
79
+ "kea-ddns": {
80
+ endpoints: [ddnsEndpoint]
81
+ },
82
+ "kea-control-agent": {
83
+ endpoints: [controlAgentEndpoint]
84
+ },
85
+ "kea-ha-4": {
86
+ endpoints: [ha4Endpoint]
87
+ },
88
+ "kea-ha-6": {
89
+ endpoints: [ha6Endpoint]
90
+ },
91
+ "kea-control-dhcp4": {
92
+ endpoints: [control4Endpoint]
93
+ },
94
+ "kea-control-dhcp6": {
95
+ endpoints: [control6Endpoint]
96
+ },
97
+ "kea-control-ddns": {
98
+ endpoints: [controlDDNSEndpoint]
99
+ }
100
+ };
101
+
84
102
  const keaVersion = 2.6;
85
103
  export const fetureHasHTTPEndpoints = keaVersion > 2.7;
86
104