pmcf 3.13.9 → 3.13.11
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": "3.13.
|
|
3
|
+
"version": "3.13.11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"package-directory": "^8.1.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@types/node": "^24.
|
|
60
|
+
"@types/node": "^24.7.0",
|
|
61
61
|
"ava": "^6.4.1",
|
|
62
62
|
"c8": "^10.1.3",
|
|
63
63
|
"documentation": "^14.0.3",
|
|
@@ -9,6 +9,10 @@ const HeadscaleServiceTypeDefinition = {
|
|
|
9
9
|
key: "name",
|
|
10
10
|
service: {
|
|
11
11
|
endpoints: [
|
|
12
|
+
{
|
|
13
|
+
family: "unix",
|
|
14
|
+
path: "/run/headscale/headscale.sock"
|
|
15
|
+
},
|
|
12
16
|
{
|
|
13
17
|
family: "IPv4",
|
|
14
18
|
port: 8080,
|
|
@@ -16,10 +20,18 @@ const HeadscaleServiceTypeDefinition = {
|
|
|
16
20
|
tls: false
|
|
17
21
|
},
|
|
18
22
|
{
|
|
23
|
+
description: "grpc",
|
|
19
24
|
family: "IPv4",
|
|
20
25
|
port: 50443,
|
|
21
26
|
protocol: "tcp",
|
|
22
27
|
tls: false
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
description: "metrics debug",
|
|
31
|
+
family: "IPv4",
|
|
32
|
+
port: 9090,
|
|
33
|
+
protocol: "tcp",
|
|
34
|
+
tls: false
|
|
23
35
|
}
|
|
24
36
|
]
|
|
25
37
|
}
|
package/src/services/kea.mjs
CHANGED
|
@@ -424,7 +424,8 @@ export class KeaService extends Service {
|
|
|
424
424
|
s =>
|
|
425
425
|
s.family === "IPv4" &&
|
|
426
426
|
// TODO keep out tailscale
|
|
427
|
-
s.cidr !== "100.64.0.2/32"
|
|
427
|
+
s.cidr !== "100.64.0.2/32" &&
|
|
428
|
+
s.cidr !== "100.64.0.3/32"
|
|
428
429
|
)
|
|
429
430
|
.map((subnet, index) => {
|
|
430
431
|
return {
|
|
@@ -808,12 +808,28 @@ export class HeadscaleService extends Service {
|
|
|
808
808
|
})[];
|
|
809
809
|
key: string;
|
|
810
810
|
service: {
|
|
811
|
-
endpoints: {
|
|
811
|
+
endpoints: ({
|
|
812
|
+
family: string;
|
|
813
|
+
path: string;
|
|
814
|
+
port?: undefined;
|
|
815
|
+
protocol?: undefined;
|
|
816
|
+
tls?: undefined;
|
|
817
|
+
description?: undefined;
|
|
818
|
+
} | {
|
|
819
|
+
family: string;
|
|
820
|
+
port: number;
|
|
821
|
+
protocol: string;
|
|
822
|
+
tls: boolean;
|
|
823
|
+
path?: undefined;
|
|
824
|
+
description?: undefined;
|
|
825
|
+
} | {
|
|
826
|
+
description: string;
|
|
812
827
|
family: string;
|
|
813
828
|
port: number;
|
|
814
829
|
protocol: string;
|
|
815
830
|
tls: boolean;
|
|
816
|
-
|
|
831
|
+
path?: undefined;
|
|
832
|
+
})[];
|
|
817
833
|
};
|
|
818
834
|
};
|
|
819
835
|
}
|