pmcf 3.20.0 → 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/README.md +33 -10
- package/package.json +2 -2
- package/src/services/systemd-journal-upload.mjs +12 -4
- package/src/services/systemd-journal.mjs +11 -1
- 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
|
@@ -21,7 +21,8 @@ export class TailscaleService extends Service {
|
|
|
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 TailscaleService extends Service {
|
|
|
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;
|
|
@@ -63,7 +65,8 @@ export class TailscaleService extends Service {
|
|
|
63
65
|
default?: any;
|
|
64
66
|
set?: Function;
|
|
65
67
|
get?: Function;
|
|
66
|
-
|
|
68
|
+
toInternal?: Function;
|
|
69
|
+
toExternal?: Function;
|
|
67
70
|
externalName?: string;
|
|
68
71
|
env?: string[] | string;
|
|
69
72
|
additionalValues?: object;
|
|
@@ -85,7 +88,8 @@ export class TailscaleService extends Service {
|
|
|
85
88
|
default?: any;
|
|
86
89
|
set?: Function;
|
|
87
90
|
get?: Function;
|
|
88
|
-
|
|
91
|
+
toInternal?: Function;
|
|
92
|
+
toExternal?: Function;
|
|
89
93
|
externalName?: string;
|
|
90
94
|
env?: string[] | string;
|
|
91
95
|
additionalValues?: object;
|
|
@@ -109,7 +113,8 @@ export class TailscaleService extends Service {
|
|
|
109
113
|
default?: any;
|
|
110
114
|
set?: Function;
|
|
111
115
|
get?: Function;
|
|
112
|
-
|
|
116
|
+
toInternal?: Function;
|
|
117
|
+
toExternal?: Function;
|
|
113
118
|
externalName?: string;
|
|
114
119
|
env?: string[] | string;
|
|
115
120
|
additionalValues?: object;
|
|
@@ -129,7 +134,8 @@ export class TailscaleService extends Service {
|
|
|
129
134
|
default?: any;
|
|
130
135
|
set?: Function;
|
|
131
136
|
get?: Function;
|
|
132
|
-
|
|
137
|
+
toInternal?: Function;
|
|
138
|
+
toExternal?: Function;
|
|
133
139
|
externalName?: string;
|
|
134
140
|
env?: string[] | string;
|
|
135
141
|
additionalValues?: object;
|
|
@@ -151,7 +157,8 @@ export class TailscaleService extends Service {
|
|
|
151
157
|
default?: any;
|
|
152
158
|
set?: Function;
|
|
153
159
|
get?: Function;
|
|
154
|
-
|
|
160
|
+
toInternal?: Function;
|
|
161
|
+
toExternal?: Function;
|
|
155
162
|
values?: Set<any>;
|
|
156
163
|
externalName?: string;
|
|
157
164
|
env?: string[] | string;
|
|
@@ -173,7 +180,8 @@ export class TailscaleService extends Service {
|
|
|
173
180
|
default?: any;
|
|
174
181
|
set?: Function;
|
|
175
182
|
get?: Function;
|
|
176
|
-
|
|
183
|
+
toInternal?: Function;
|
|
184
|
+
toExternal?: Function;
|
|
177
185
|
values?: Set<any>;
|
|
178
186
|
externalName?: string;
|
|
179
187
|
env?: string[] | string;
|
|
@@ -205,7 +213,8 @@ export class TailscaleService extends Service {
|
|
|
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;
|
|
@@ -228,7 +237,8 @@ export class TailscaleService extends Service {
|
|
|
228
237
|
default?: any;
|
|
229
238
|
set?: Function;
|
|
230
239
|
get?: Function;
|
|
231
|
-
|
|
240
|
+
toInternal?: Function;
|
|
241
|
+
toExternal?: Function;
|
|
232
242
|
externalName?: string;
|
|
233
243
|
env?: string[] | string;
|
|
234
244
|
additionalValues?: object;
|
|
@@ -250,7 +260,8 @@ export class TailscaleService extends Service {
|
|
|
250
260
|
default?: any;
|
|
251
261
|
set?: Function;
|
|
252
262
|
get?: Function;
|
|
253
|
-
|
|
263
|
+
toInternal?: Function;
|
|
264
|
+
toExternal?: Function;
|
|
254
265
|
values?: Set<any>;
|
|
255
266
|
externalName?: string;
|
|
256
267
|
env?: string[] | string;
|
|
@@ -284,7 +295,8 @@ export class TailscaleService extends Service {
|
|
|
284
295
|
default?: any;
|
|
285
296
|
set?: Function;
|
|
286
297
|
get?: Function;
|
|
287
|
-
|
|
298
|
+
toInternal?: Function;
|
|
299
|
+
toExternal?: Function;
|
|
288
300
|
values?: Set<any>;
|
|
289
301
|
externalName?: string;
|
|
290
302
|
env?: string[] | string;
|
|
@@ -304,7 +316,8 @@ export class TailscaleService extends Service {
|
|
|
304
316
|
default?: any;
|
|
305
317
|
set?: Function;
|
|
306
318
|
get?: Function;
|
|
307
|
-
|
|
319
|
+
toInternal?: Function;
|
|
320
|
+
toExternal?: Function;
|
|
308
321
|
values?: Set<any>;
|
|
309
322
|
externalName?: string;
|
|
310
323
|
env?: string[] | string;
|
|
@@ -326,7 +339,8 @@ export class TailscaleService extends Service {
|
|
|
326
339
|
default?: any;
|
|
327
340
|
set?: Function;
|
|
328
341
|
get?: Function;
|
|
329
|
-
|
|
342
|
+
toInternal?: Function;
|
|
343
|
+
toExternal?: Function;
|
|
330
344
|
externalName?: string;
|
|
331
345
|
env?: string[] | string;
|
|
332
346
|
additionalValues?: object;
|
|
@@ -348,7 +362,8 @@ export class TailscaleService extends Service {
|
|
|
348
362
|
default?: any;
|
|
349
363
|
set?: Function;
|
|
350
364
|
get?: Function;
|
|
351
|
-
|
|
365
|
+
toInternal?: Function;
|
|
366
|
+
toExternal?: Function;
|
|
352
367
|
externalName?: string;
|
|
353
368
|
env?: string[] | string;
|
|
354
369
|
additionalValues?: object;
|
|
@@ -372,7 +387,8 @@ export class TailscaleService extends Service {
|
|
|
372
387
|
default?: any;
|
|
373
388
|
set?: Function;
|
|
374
389
|
get?: Function;
|
|
375
|
-
|
|
390
|
+
toInternal?: Function;
|
|
391
|
+
toExternal?: Function;
|
|
376
392
|
externalName?: string;
|
|
377
393
|
env?: string[] | string;
|
|
378
394
|
additionalValues?: object;
|
|
@@ -392,7 +408,8 @@ export class TailscaleService extends Service {
|
|
|
392
408
|
default?: any;
|
|
393
409
|
set?: Function;
|
|
394
410
|
get?: Function;
|
|
395
|
-
|
|
411
|
+
toInternal?: Function;
|
|
412
|
+
toExternal?: Function;
|
|
396
413
|
externalName?: string;
|
|
397
414
|
env?: string[] | string;
|
|
398
415
|
additionalValues?: object;
|
|
@@ -414,7 +431,8 @@ export class TailscaleService extends Service {
|
|
|
414
431
|
default?: any;
|
|
415
432
|
set?: Function;
|
|
416
433
|
get?: Function;
|
|
417
|
-
|
|
434
|
+
toInternal?: Function;
|
|
435
|
+
toExternal?: Function;
|
|
418
436
|
values?: Set<any>;
|
|
419
437
|
externalName?: string;
|
|
420
438
|
env?: string[] | string;
|
|
@@ -436,7 +454,8 @@ export class TailscaleService extends Service {
|
|
|
436
454
|
default?: any;
|
|
437
455
|
set?: Function;
|
|
438
456
|
get?: Function;
|
|
439
|
-
|
|
457
|
+
toInternal?: Function;
|
|
458
|
+
toExternal?: Function;
|
|
440
459
|
values?: Set<any>;
|
|
441
460
|
externalName?: string;
|
|
442
461
|
env?: string[] | string;
|
|
@@ -468,7 +487,8 @@ export class TailscaleService extends Service {
|
|
|
468
487
|
default?: any;
|
|
469
488
|
set?: Function;
|
|
470
489
|
get?: Function;
|
|
471
|
-
|
|
490
|
+
toInternal?: Function;
|
|
491
|
+
toExternal?: Function;
|
|
472
492
|
values?: Set<any>;
|
|
473
493
|
externalName?: string;
|
|
474
494
|
env?: string[] | string;
|
|
@@ -491,7 +511,8 @@ export class TailscaleService extends Service {
|
|
|
491
511
|
default?: any;
|
|
492
512
|
set?: Function;
|
|
493
513
|
get?: Function;
|
|
494
|
-
|
|
514
|
+
toInternal?: Function;
|
|
515
|
+
toExternal?: Function;
|
|
495
516
|
externalName?: string;
|
|
496
517
|
env?: string[] | string;
|
|
497
518
|
additionalValues?: object;
|
|
@@ -513,7 +534,8 @@ export class TailscaleService extends Service {
|
|
|
513
534
|
default?: any;
|
|
514
535
|
set?: Function;
|
|
515
536
|
get?: Function;
|
|
516
|
-
|
|
537
|
+
toInternal?: Function;
|
|
538
|
+
toExternal?: Function;
|
|
517
539
|
values?: Set<any>;
|
|
518
540
|
externalName?: string;
|
|
519
541
|
env?: string[] | string;
|
|
@@ -545,7 +567,8 @@ export class TailscaleService extends Service {
|
|
|
545
567
|
default?: any;
|
|
546
568
|
set?: Function;
|
|
547
569
|
get?: Function;
|
|
548
|
-
|
|
570
|
+
toInternal?: Function;
|
|
571
|
+
toExternal?: Function;
|
|
549
572
|
values?: Set<any>;
|
|
550
573
|
externalName?: string;
|
|
551
574
|
env?: string[] | string;
|
|
@@ -565,7 +588,8 @@ export class TailscaleService extends Service {
|
|
|
565
588
|
default?: any;
|
|
566
589
|
set?: Function;
|
|
567
590
|
get?: Function;
|
|
568
|
-
|
|
591
|
+
toInternal?: Function;
|
|
592
|
+
toExternal?: Function;
|
|
569
593
|
values?: Set<any>;
|
|
570
594
|
externalName?: string;
|
|
571
595
|
env?: string[] | string;
|
|
@@ -587,7 +611,8 @@ export class TailscaleService extends Service {
|
|
|
587
611
|
default?: any;
|
|
588
612
|
set?: Function;
|
|
589
613
|
get?: Function;
|
|
590
|
-
|
|
614
|
+
toInternal?: Function;
|
|
615
|
+
toExternal?: Function;
|
|
591
616
|
externalName?: string;
|
|
592
617
|
env?: string[] | string;
|
|
593
618
|
additionalValues?: object;
|
|
@@ -609,7 +634,8 @@ export class TailscaleService extends Service {
|
|
|
609
634
|
default?: any;
|
|
610
635
|
set?: Function;
|
|
611
636
|
get?: Function;
|
|
612
|
-
|
|
637
|
+
toInternal?: Function;
|
|
638
|
+
toExternal?: Function;
|
|
613
639
|
externalName?: string;
|
|
614
640
|
env?: string[] | string;
|
|
615
641
|
additionalValues?: object;
|
|
@@ -633,7 +659,8 @@ export class TailscaleService extends Service {
|
|
|
633
659
|
default?: any;
|
|
634
660
|
set?: Function;
|
|
635
661
|
get?: Function;
|
|
636
|
-
|
|
662
|
+
toInternal?: Function;
|
|
663
|
+
toExternal?: Function;
|
|
637
664
|
externalName?: string;
|
|
638
665
|
env?: string[] | string;
|
|
639
666
|
additionalValues?: object;
|
|
@@ -653,7 +680,8 @@ export class TailscaleService extends Service {
|
|
|
653
680
|
default?: any;
|
|
654
681
|
set?: Function;
|
|
655
682
|
get?: Function;
|
|
656
|
-
|
|
683
|
+
toInternal?: Function;
|
|
684
|
+
toExternal?: Function;
|
|
657
685
|
externalName?: string;
|
|
658
686
|
env?: string[] | string;
|
|
659
687
|
additionalValues?: object;
|
|
@@ -675,7 +703,8 @@ export class TailscaleService extends Service {
|
|
|
675
703
|
default?: any;
|
|
676
704
|
set?: Function;
|
|
677
705
|
get?: Function;
|
|
678
|
-
|
|
706
|
+
toInternal?: Function;
|
|
707
|
+
toExternal?: Function;
|
|
679
708
|
values?: Set<any>;
|
|
680
709
|
externalName?: string;
|
|
681
710
|
env?: string[] | string;
|
|
@@ -697,7 +726,8 @@ export class TailscaleService extends Service {
|
|
|
697
726
|
default?: any;
|
|
698
727
|
set?: Function;
|
|
699
728
|
get?: Function;
|
|
700
|
-
|
|
729
|
+
toInternal?: Function;
|
|
730
|
+
toExternal?: Function;
|
|
701
731
|
values?: Set<any>;
|
|
702
732
|
externalName?: string;
|
|
703
733
|
env?: string[] | string;
|
package/types/subnet.d.mts
CHANGED
package/types/utils.d.mts
CHANGED