pmcf 4.9.1 → 4.9.2

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": "4.9.1",
3
+ "version": "4.9.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -107,6 +107,12 @@ export const ServiceTypes = {
107
107
  ],
108
108
  dnsRecord: { type: "MX" }
109
109
  },
110
+ lmtp: {
111
+ endpoints: [
112
+ { family: "IPv4", protocol: "tcp", port: 24, tls: false },
113
+ { family: "IPv6", protocol: "tcp", port: 24, tls: false }
114
+ ]
115
+ },
110
116
  ssh: {
111
117
  endpoints: [
112
118
  { family: "IPv4", protocol: "tcp", port: 22, tls: false },
@@ -140,6 +140,14 @@ export const ServiceTypes: {
140
140
  type: string;
141
141
  };
142
142
  };
143
+ lmtp: {
144
+ endpoints: {
145
+ family: string;
146
+ protocol: string;
147
+ port: number;
148
+ tls: boolean;
149
+ }[];
150
+ };
143
151
  ssh: {
144
152
  endpoints: {
145
153
  family: string;