pmcf 2.66.1 → 2.66.3

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.66.1",
3
+ "version": "2.66.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -14,7 +14,7 @@ export const ServiceTypes = {
14
14
  dnsRecord: { type: "HTTPS", parameters: { alpn: "h2" } }
15
15
  },
16
16
  http3: {
17
- extends: ["https"],
17
+ endpoints: [{ protocol: "udp", port: 443, tls: false }],
18
18
  dnsRecord: {
19
19
  type: "HTTPS",
20
20
  parameters: { "no-default-alpn": undefined, alpn: "h3" }
@@ -91,7 +91,7 @@ const BindServiceTypeDefinition = {
91
91
  };
92
92
 
93
93
  const BindServiceTypes = {
94
- "bind": {
94
+ [BindServiceTypeDefinition.name]: {
95
95
  extends: ["dns"]
96
96
  },
97
97
  "bind-statistics": {
@@ -169,7 +169,7 @@ export class BindService extends ExtraSourceService {
169
169
  }
170
170
 
171
171
  get type() {
172
- return "bind";
172
+ return BindServiceTypeDefinition.name;
173
173
  }
174
174
 
175
175
  get serviceTypeEndpoints() {
@@ -31,7 +31,7 @@ export class OpenLDAPService extends Service {
31
31
  }
32
32
 
33
33
  get type() {
34
- return "openldap";
34
+ return OpenLDAPServiceTypeDefinition.name;
35
35
  }
36
36
 
37
37
  async *preparePackages(dir) {
@@ -12,7 +12,7 @@ const SystemdJournalRemoteServiceTypeDefinition = {
12
12
  };
13
13
 
14
14
  const SystemdJournalRemoteServiceTypes = {
15
- "systemd-journal-remote": {
15
+ [SystemdJournalRemoteServiceTypeDefinition.name]: {
16
16
  extends: ["http"],
17
17
  endpoints: [
18
18
  {
@@ -67,7 +67,11 @@ export const ServiceTypes: {
67
67
  };
68
68
  };
69
69
  http3: {
70
- extends: string[];
70
+ endpoints: {
71
+ protocol: string;
72
+ port: number;
73
+ tls: boolean;
74
+ }[];
71
75
  dnsRecord: {
72
76
  type: string;
73
77
  parameters: {