pmcf 3.20.1 → 3.20.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 +2 -2
- package/src/services/systemd-resolved.mjs +34 -6
- package/types/base.d.mts +2 -1
- package/types/cluster.d.mts +36 -18
- package/types/extra-source-service.d.mts +80 -40
- package/types/host.d.mts +16 -8
- package/types/location.d.mts +28 -14
- package/types/network-interfaces/ethernet.d.mts +96 -48
- package/types/network-interfaces/loopback.d.mts +92 -46
- package/types/network-interfaces/network-interface.d.mts +92 -46
- package/types/network-interfaces/tun.d.mts +92 -46
- package/types/network-interfaces/wireguard.d.mts +92 -46
- package/types/network-interfaces/wlan.d.mts +142 -71
- package/types/network-support.d.mts +16 -8
- package/types/network.d.mts +56 -28
- package/types/owner.d.mts +14 -7
- package/types/service.d.mts +46 -23
- package/types/services/bind.d.mts +114 -57
- package/types/services/chrony.d.mts +100 -50
- package/types/services/headscale.d.mts +60 -30
- package/types/services/influxdb.d.mts +62 -31
- package/types/services/kea.d.mts +70 -35
- package/types/services/mosquitto.d.mts +64 -32
- package/types/services/openldap.d.mts +60 -30
- package/types/services/systemd-journal-remote.d.mts +80 -40
- package/types/services/systemd-journal-upload.d.mts +70 -35
- package/types/services/systemd-journal.d.mts +106 -53
- package/types/services/systemd-resolved.d.mts +117 -60
- package/types/services/systemd-timesyncd.d.mts +100 -50
- package/types/services/tailscale.d.mts +60 -30
- package/types/subnet.d.mts +2 -1
- package/types/utils.d.mts +1 -1
package/types/host.d.mts
CHANGED
|
@@ -19,7 +19,8 @@ export class Host extends ServiceOwner {
|
|
|
19
19
|
default?: any;
|
|
20
20
|
set?: Function;
|
|
21
21
|
get?: Function;
|
|
22
|
-
|
|
22
|
+
toInternal?: Function;
|
|
23
|
+
toExternal?: Function;
|
|
23
24
|
values?: Set<any>;
|
|
24
25
|
externalName?: string;
|
|
25
26
|
env?: string[] | string;
|
|
@@ -39,7 +40,8 @@ export class Host extends ServiceOwner {
|
|
|
39
40
|
default?: any;
|
|
40
41
|
set?: Function;
|
|
41
42
|
get?: Function;
|
|
42
|
-
|
|
43
|
+
toInternal?: Function;
|
|
44
|
+
toExternal?: Function;
|
|
43
45
|
values?: Set<any>;
|
|
44
46
|
externalName?: string;
|
|
45
47
|
env?: string[] | string;
|
|
@@ -61,7 +63,8 @@ export class Host extends ServiceOwner {
|
|
|
61
63
|
default?: any;
|
|
62
64
|
set?: Function;
|
|
63
65
|
get?: Function;
|
|
64
|
-
|
|
66
|
+
toInternal?: Function;
|
|
67
|
+
toExternal?: Function;
|
|
65
68
|
externalName?: string;
|
|
66
69
|
env?: string[] | string;
|
|
67
70
|
additionalValues?: object;
|
|
@@ -83,7 +86,8 @@ export class Host extends ServiceOwner {
|
|
|
83
86
|
default?: any;
|
|
84
87
|
set?: Function;
|
|
85
88
|
get?: Function;
|
|
86
|
-
|
|
89
|
+
toInternal?: Function;
|
|
90
|
+
toExternal?: Function;
|
|
87
91
|
externalName?: string;
|
|
88
92
|
env?: string[] | string;
|
|
89
93
|
additionalValues?: object;
|
|
@@ -107,7 +111,8 @@ export class Host extends ServiceOwner {
|
|
|
107
111
|
default?: any;
|
|
108
112
|
set?: Function;
|
|
109
113
|
get?: Function;
|
|
110
|
-
|
|
114
|
+
toInternal?: Function;
|
|
115
|
+
toExternal?: Function;
|
|
111
116
|
externalName?: string;
|
|
112
117
|
env?: string[] | string;
|
|
113
118
|
additionalValues?: object;
|
|
@@ -127,7 +132,8 @@ export class Host extends ServiceOwner {
|
|
|
127
132
|
default?: any;
|
|
128
133
|
set?: Function;
|
|
129
134
|
get?: Function;
|
|
130
|
-
|
|
135
|
+
toInternal?: Function;
|
|
136
|
+
toExternal?: Function;
|
|
131
137
|
externalName?: string;
|
|
132
138
|
env?: string[] | string;
|
|
133
139
|
additionalValues?: object;
|
|
@@ -149,7 +155,8 @@ export class Host extends ServiceOwner {
|
|
|
149
155
|
default?: any;
|
|
150
156
|
set?: Function;
|
|
151
157
|
get?: Function;
|
|
152
|
-
|
|
158
|
+
toInternal?: Function;
|
|
159
|
+
toExternal?: Function;
|
|
153
160
|
values?: Set<any>;
|
|
154
161
|
externalName?: string;
|
|
155
162
|
env?: string[] | string;
|
|
@@ -171,7 +178,8 @@ export class Host extends ServiceOwner {
|
|
|
171
178
|
default?: any;
|
|
172
179
|
set?: Function;
|
|
173
180
|
get?: Function;
|
|
174
|
-
|
|
181
|
+
toInternal?: Function;
|
|
182
|
+
toExternal?: Function;
|
|
175
183
|
values?: Set<any>;
|
|
176
184
|
externalName?: string;
|
|
177
185
|
env?: string[] | string;
|
package/types/location.d.mts
CHANGED
|
@@ -21,7 +21,8 @@ export class Location extends Owner {
|
|
|
21
21
|
default?: any;
|
|
22
22
|
set?: Function;
|
|
23
23
|
get?: Function;
|
|
24
|
-
|
|
24
|
+
toInternal?: Function;
|
|
25
|
+
toExternal?: Function;
|
|
25
26
|
values?: Set<any>;
|
|
26
27
|
externalName?: string;
|
|
27
28
|
env?: string[] | string;
|
|
@@ -41,7 +42,8 @@ export class Location extends Owner {
|
|
|
41
42
|
default?: any;
|
|
42
43
|
set?: Function;
|
|
43
44
|
get?: Function;
|
|
44
|
-
|
|
45
|
+
toInternal?: Function;
|
|
46
|
+
toExternal?: Function;
|
|
45
47
|
values?: Set<any>;
|
|
46
48
|
externalName?: string;
|
|
47
49
|
env?: string[] | string;
|
|
@@ -61,7 +63,8 @@ export class Location extends Owner {
|
|
|
61
63
|
default?: any;
|
|
62
64
|
set?: Function;
|
|
63
65
|
get?: Function;
|
|
64
|
-
|
|
66
|
+
toInternal?: Function;
|
|
67
|
+
toExternal?: Function;
|
|
65
68
|
values?: Set<any>;
|
|
66
69
|
externalName?: string;
|
|
67
70
|
env?: string[] | string;
|
|
@@ -89,7 +92,8 @@ export class Location extends Owner {
|
|
|
89
92
|
default?: any;
|
|
90
93
|
set?: Function;
|
|
91
94
|
get?: Function;
|
|
92
|
-
|
|
95
|
+
toInternal?: Function;
|
|
96
|
+
toExternal?: Function;
|
|
93
97
|
values?: Set<any>;
|
|
94
98
|
externalName?: string;
|
|
95
99
|
env?: string[] | string;
|
|
@@ -111,7 +115,8 @@ export class Location extends Owner {
|
|
|
111
115
|
default?: any;
|
|
112
116
|
set?: Function;
|
|
113
117
|
get?: Function;
|
|
114
|
-
|
|
118
|
+
toInternal?: Function;
|
|
119
|
+
toExternal?: Function;
|
|
115
120
|
values?: Set<any>;
|
|
116
121
|
externalName?: string;
|
|
117
122
|
env?: string[] | string;
|
|
@@ -137,7 +142,8 @@ export class Location extends Owner {
|
|
|
137
142
|
default?: any;
|
|
138
143
|
set?: Function;
|
|
139
144
|
get?: Function;
|
|
140
|
-
|
|
145
|
+
toInternal?: Function;
|
|
146
|
+
toExternal?: Function;
|
|
141
147
|
values?: Set<any>;
|
|
142
148
|
externalName?: string;
|
|
143
149
|
env?: string[] | string;
|
|
@@ -157,7 +163,8 @@ export class Location extends Owner {
|
|
|
157
163
|
default?: any;
|
|
158
164
|
set?: Function;
|
|
159
165
|
get?: Function;
|
|
160
|
-
|
|
166
|
+
toInternal?: Function;
|
|
167
|
+
toExternal?: Function;
|
|
161
168
|
values?: Set<any>;
|
|
162
169
|
externalName?: string;
|
|
163
170
|
env?: string[] | string;
|
|
@@ -185,7 +192,8 @@ export class Location extends Owner {
|
|
|
185
192
|
default?: any;
|
|
186
193
|
set?: Function;
|
|
187
194
|
get?: Function;
|
|
188
|
-
|
|
195
|
+
toInternal?: Function;
|
|
196
|
+
toExternal?: Function;
|
|
189
197
|
values?: Set<any>;
|
|
190
198
|
externalName?: string;
|
|
191
199
|
env?: string[] | string;
|
|
@@ -205,7 +213,8 @@ export class Location extends Owner {
|
|
|
205
213
|
default?: any;
|
|
206
214
|
set?: Function;
|
|
207
215
|
get?: Function;
|
|
208
|
-
|
|
216
|
+
toInternal?: Function;
|
|
217
|
+
toExternal?: Function;
|
|
209
218
|
values?: Set<any>;
|
|
210
219
|
externalName?: string;
|
|
211
220
|
env?: string[] | string;
|
|
@@ -225,7 +234,8 @@ export class Location extends Owner {
|
|
|
225
234
|
default?: any;
|
|
226
235
|
set?: Function;
|
|
227
236
|
get?: Function;
|
|
228
|
-
|
|
237
|
+
toInternal?: Function;
|
|
238
|
+
toExternal?: Function;
|
|
229
239
|
values?: Set<any>;
|
|
230
240
|
externalName?: string;
|
|
231
241
|
env?: string[] | string;
|
|
@@ -253,7 +263,8 @@ export class Location extends Owner {
|
|
|
253
263
|
default?: any;
|
|
254
264
|
set?: Function;
|
|
255
265
|
get?: Function;
|
|
256
|
-
|
|
266
|
+
toInternal?: Function;
|
|
267
|
+
toExternal?: Function;
|
|
257
268
|
values?: Set<any>;
|
|
258
269
|
externalName?: string;
|
|
259
270
|
env?: string[] | string;
|
|
@@ -275,7 +286,8 @@ export class Location extends Owner {
|
|
|
275
286
|
default?: any;
|
|
276
287
|
set?: Function;
|
|
277
288
|
get?: Function;
|
|
278
|
-
|
|
289
|
+
toInternal?: Function;
|
|
290
|
+
toExternal?: Function;
|
|
279
291
|
values?: Set<any>;
|
|
280
292
|
externalName?: string;
|
|
281
293
|
env?: string[] | string;
|
|
@@ -301,7 +313,8 @@ export class Location extends Owner {
|
|
|
301
313
|
default?: any;
|
|
302
314
|
set?: Function;
|
|
303
315
|
get?: Function;
|
|
304
|
-
|
|
316
|
+
toInternal?: Function;
|
|
317
|
+
toExternal?: Function;
|
|
305
318
|
values?: Set<any>;
|
|
306
319
|
externalName?: string;
|
|
307
320
|
env?: string[] | string;
|
|
@@ -321,7 +334,8 @@ export class Location extends Owner {
|
|
|
321
334
|
default?: any;
|
|
322
335
|
set?: Function;
|
|
323
336
|
get?: Function;
|
|
324
|
-
|
|
337
|
+
toInternal?: Function;
|
|
338
|
+
toExternal?: Function;
|
|
325
339
|
values?: Set<any>;
|
|
326
340
|
externalName?: string;
|
|
327
341
|
env?: string[] | string;
|