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
|
@@ -28,7 +28,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
28
28
|
default?: any;
|
|
29
29
|
set?: Function;
|
|
30
30
|
get?: Function;
|
|
31
|
-
|
|
31
|
+
toInternal?: Function;
|
|
32
|
+
toExternal?: Function;
|
|
32
33
|
values?: Set<any>;
|
|
33
34
|
externalName?: string;
|
|
34
35
|
env?: string[] | string;
|
|
@@ -48,7 +49,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
48
49
|
default?: any;
|
|
49
50
|
set?: Function;
|
|
50
51
|
get?: Function;
|
|
51
|
-
|
|
52
|
+
toInternal?: Function;
|
|
53
|
+
toExternal?: Function;
|
|
52
54
|
values?: Set<any>;
|
|
53
55
|
externalName?: string;
|
|
54
56
|
env?: string[] | string;
|
|
@@ -70,7 +72,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
70
72
|
default?: any;
|
|
71
73
|
set?: Function;
|
|
72
74
|
get?: Function;
|
|
73
|
-
|
|
75
|
+
toInternal?: Function;
|
|
76
|
+
toExternal?: Function;
|
|
74
77
|
externalName?: string;
|
|
75
78
|
env?: string[] | string;
|
|
76
79
|
additionalValues?: object;
|
|
@@ -92,7 +95,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
92
95
|
default?: any;
|
|
93
96
|
set?: Function;
|
|
94
97
|
get?: Function;
|
|
95
|
-
|
|
98
|
+
toInternal?: Function;
|
|
99
|
+
toExternal?: Function;
|
|
96
100
|
externalName?: string;
|
|
97
101
|
env?: string[] | string;
|
|
98
102
|
additionalValues?: object;
|
|
@@ -116,7 +120,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
116
120
|
default?: any;
|
|
117
121
|
set?: Function;
|
|
118
122
|
get?: Function;
|
|
119
|
-
|
|
123
|
+
toInternal?: Function;
|
|
124
|
+
toExternal?: Function;
|
|
120
125
|
externalName?: string;
|
|
121
126
|
env?: string[] | string;
|
|
122
127
|
additionalValues?: object;
|
|
@@ -136,7 +141,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
136
141
|
default?: any;
|
|
137
142
|
set?: Function;
|
|
138
143
|
get?: Function;
|
|
139
|
-
|
|
144
|
+
toInternal?: Function;
|
|
145
|
+
toExternal?: Function;
|
|
140
146
|
externalName?: string;
|
|
141
147
|
env?: string[] | string;
|
|
142
148
|
additionalValues?: object;
|
|
@@ -158,7 +164,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
158
164
|
default?: any;
|
|
159
165
|
set?: Function;
|
|
160
166
|
get?: Function;
|
|
161
|
-
|
|
167
|
+
toInternal?: Function;
|
|
168
|
+
toExternal?: Function;
|
|
162
169
|
values?: Set<any>;
|
|
163
170
|
externalName?: string;
|
|
164
171
|
env?: string[] | string;
|
|
@@ -180,7 +187,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
180
187
|
default?: any;
|
|
181
188
|
set?: Function;
|
|
182
189
|
get?: Function;
|
|
183
|
-
|
|
190
|
+
toInternal?: Function;
|
|
191
|
+
toExternal?: Function;
|
|
184
192
|
values?: Set<any>;
|
|
185
193
|
externalName?: string;
|
|
186
194
|
env?: string[] | string;
|
|
@@ -212,7 +220,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
212
220
|
default?: any;
|
|
213
221
|
set?: Function;
|
|
214
222
|
get?: Function;
|
|
215
|
-
|
|
223
|
+
toInternal?: Function;
|
|
224
|
+
toExternal?: Function;
|
|
216
225
|
values?: Set<any>;
|
|
217
226
|
externalName?: string;
|
|
218
227
|
env?: string[] | string;
|
|
@@ -235,7 +244,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
235
244
|
default?: any;
|
|
236
245
|
set?: Function;
|
|
237
246
|
get?: Function;
|
|
238
|
-
|
|
247
|
+
toInternal?: Function;
|
|
248
|
+
toExternal?: Function;
|
|
239
249
|
externalName?: string;
|
|
240
250
|
env?: string[] | string;
|
|
241
251
|
additionalValues?: object;
|
|
@@ -257,7 +267,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
257
267
|
default?: any;
|
|
258
268
|
set?: Function;
|
|
259
269
|
get?: Function;
|
|
260
|
-
|
|
270
|
+
toInternal?: Function;
|
|
271
|
+
toExternal?: Function;
|
|
261
272
|
values?: Set<any>;
|
|
262
273
|
externalName?: string;
|
|
263
274
|
env?: string[] | string;
|
|
@@ -291,7 +302,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
291
302
|
default?: any;
|
|
292
303
|
set?: Function;
|
|
293
304
|
get?: Function;
|
|
294
|
-
|
|
305
|
+
toInternal?: Function;
|
|
306
|
+
toExternal?: Function;
|
|
295
307
|
values?: Set<any>;
|
|
296
308
|
externalName?: string;
|
|
297
309
|
env?: string[] | string;
|
|
@@ -311,7 +323,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
311
323
|
default?: any;
|
|
312
324
|
set?: Function;
|
|
313
325
|
get?: Function;
|
|
314
|
-
|
|
326
|
+
toInternal?: Function;
|
|
327
|
+
toExternal?: Function;
|
|
315
328
|
values?: Set<any>;
|
|
316
329
|
externalName?: string;
|
|
317
330
|
env?: string[] | string;
|
|
@@ -333,7 +346,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
333
346
|
default?: any;
|
|
334
347
|
set?: Function;
|
|
335
348
|
get?: Function;
|
|
336
|
-
|
|
349
|
+
toInternal?: Function;
|
|
350
|
+
toExternal?: Function;
|
|
337
351
|
externalName?: string;
|
|
338
352
|
env?: string[] | string;
|
|
339
353
|
additionalValues?: object;
|
|
@@ -355,7 +369,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
355
369
|
default?: any;
|
|
356
370
|
set?: Function;
|
|
357
371
|
get?: Function;
|
|
358
|
-
|
|
372
|
+
toInternal?: Function;
|
|
373
|
+
toExternal?: Function;
|
|
359
374
|
externalName?: string;
|
|
360
375
|
env?: string[] | string;
|
|
361
376
|
additionalValues?: object;
|
|
@@ -379,7 +394,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
379
394
|
default?: any;
|
|
380
395
|
set?: Function;
|
|
381
396
|
get?: Function;
|
|
382
|
-
|
|
397
|
+
toInternal?: Function;
|
|
398
|
+
toExternal?: Function;
|
|
383
399
|
externalName?: string;
|
|
384
400
|
env?: string[] | string;
|
|
385
401
|
additionalValues?: object;
|
|
@@ -399,7 +415,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
399
415
|
default?: any;
|
|
400
416
|
set?: Function;
|
|
401
417
|
get?: Function;
|
|
402
|
-
|
|
418
|
+
toInternal?: Function;
|
|
419
|
+
toExternal?: Function;
|
|
403
420
|
externalName?: string;
|
|
404
421
|
env?: string[] | string;
|
|
405
422
|
additionalValues?: object;
|
|
@@ -421,7 +438,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
421
438
|
default?: any;
|
|
422
439
|
set?: Function;
|
|
423
440
|
get?: Function;
|
|
424
|
-
|
|
441
|
+
toInternal?: Function;
|
|
442
|
+
toExternal?: Function;
|
|
425
443
|
values?: Set<any>;
|
|
426
444
|
externalName?: string;
|
|
427
445
|
env?: string[] | string;
|
|
@@ -443,7 +461,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
443
461
|
default?: any;
|
|
444
462
|
set?: Function;
|
|
445
463
|
get?: Function;
|
|
446
|
-
|
|
464
|
+
toInternal?: Function;
|
|
465
|
+
toExternal?: Function;
|
|
447
466
|
values?: Set<any>;
|
|
448
467
|
externalName?: string;
|
|
449
468
|
env?: string[] | string;
|
|
@@ -475,7 +494,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
475
494
|
default?: any;
|
|
476
495
|
set?: Function;
|
|
477
496
|
get?: Function;
|
|
478
|
-
|
|
497
|
+
toInternal?: Function;
|
|
498
|
+
toExternal?: Function;
|
|
479
499
|
values?: Set<any>;
|
|
480
500
|
externalName?: string;
|
|
481
501
|
env?: string[] | string;
|
|
@@ -498,7 +518,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
498
518
|
default?: any;
|
|
499
519
|
set?: Function;
|
|
500
520
|
get?: Function;
|
|
501
|
-
|
|
521
|
+
toInternal?: Function;
|
|
522
|
+
toExternal?: Function;
|
|
502
523
|
externalName?: string;
|
|
503
524
|
env?: string[] | string;
|
|
504
525
|
additionalValues?: object;
|
|
@@ -520,7 +541,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
520
541
|
default?: any;
|
|
521
542
|
set?: Function;
|
|
522
543
|
get?: Function;
|
|
523
|
-
|
|
544
|
+
toInternal?: Function;
|
|
545
|
+
toExternal?: Function;
|
|
524
546
|
values?: Set<any>;
|
|
525
547
|
externalName?: string;
|
|
526
548
|
env?: string[] | string;
|
|
@@ -552,7 +574,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
552
574
|
default?: any;
|
|
553
575
|
set?: Function;
|
|
554
576
|
get?: Function;
|
|
555
|
-
|
|
577
|
+
toInternal?: Function;
|
|
578
|
+
toExternal?: Function;
|
|
556
579
|
values?: Set<any>;
|
|
557
580
|
externalName?: string;
|
|
558
581
|
env?: string[] | string;
|
|
@@ -572,7 +595,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
572
595
|
default?: any;
|
|
573
596
|
set?: Function;
|
|
574
597
|
get?: Function;
|
|
575
|
-
|
|
598
|
+
toInternal?: Function;
|
|
599
|
+
toExternal?: Function;
|
|
576
600
|
values?: Set<any>;
|
|
577
601
|
externalName?: string;
|
|
578
602
|
env?: string[] | string;
|
|
@@ -594,7 +618,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
594
618
|
default?: any;
|
|
595
619
|
set?: Function;
|
|
596
620
|
get?: Function;
|
|
597
|
-
|
|
621
|
+
toInternal?: Function;
|
|
622
|
+
toExternal?: Function;
|
|
598
623
|
externalName?: string;
|
|
599
624
|
env?: string[] | string;
|
|
600
625
|
additionalValues?: object;
|
|
@@ -616,7 +641,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
616
641
|
default?: any;
|
|
617
642
|
set?: Function;
|
|
618
643
|
get?: Function;
|
|
619
|
-
|
|
644
|
+
toInternal?: Function;
|
|
645
|
+
toExternal?: Function;
|
|
620
646
|
externalName?: string;
|
|
621
647
|
env?: string[] | string;
|
|
622
648
|
additionalValues?: object;
|
|
@@ -640,7 +666,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
640
666
|
default?: any;
|
|
641
667
|
set?: Function;
|
|
642
668
|
get?: Function;
|
|
643
|
-
|
|
669
|
+
toInternal?: Function;
|
|
670
|
+
toExternal?: Function;
|
|
644
671
|
externalName?: string;
|
|
645
672
|
env?: string[] | string;
|
|
646
673
|
additionalValues?: object;
|
|
@@ -660,7 +687,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
660
687
|
default?: any;
|
|
661
688
|
set?: Function;
|
|
662
689
|
get?: Function;
|
|
663
|
-
|
|
690
|
+
toInternal?: Function;
|
|
691
|
+
toExternal?: Function;
|
|
664
692
|
externalName?: string;
|
|
665
693
|
env?: string[] | string;
|
|
666
694
|
additionalValues?: object;
|
|
@@ -682,7 +710,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
682
710
|
default?: any;
|
|
683
711
|
set?: Function;
|
|
684
712
|
get?: Function;
|
|
685
|
-
|
|
713
|
+
toInternal?: Function;
|
|
714
|
+
toExternal?: Function;
|
|
686
715
|
values?: Set<any>;
|
|
687
716
|
externalName?: string;
|
|
688
717
|
env?: string[] | string;
|
|
@@ -704,7 +733,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
704
733
|
default?: any;
|
|
705
734
|
set?: Function;
|
|
706
735
|
get?: Function;
|
|
707
|
-
|
|
736
|
+
toInternal?: Function;
|
|
737
|
+
toExternal?: Function;
|
|
708
738
|
values?: Set<any>;
|
|
709
739
|
externalName?: string;
|
|
710
740
|
env?: string[] | string;
|
|
@@ -733,7 +763,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
733
763
|
default?: any;
|
|
734
764
|
set?: Function;
|
|
735
765
|
get?: Function;
|
|
736
|
-
|
|
766
|
+
toInternal?: Function;
|
|
767
|
+
toExternal?: Function;
|
|
737
768
|
values?: Set<any>;
|
|
738
769
|
externalName?: string;
|
|
739
770
|
env?: string[] | string;
|
|
@@ -753,7 +784,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
753
784
|
default?: any;
|
|
754
785
|
set?: Function;
|
|
755
786
|
get?: Function;
|
|
756
|
-
|
|
787
|
+
toInternal?: Function;
|
|
788
|
+
toExternal?: Function;
|
|
757
789
|
values?: Set<any>;
|
|
758
790
|
externalName?: string;
|
|
759
791
|
env?: string[] | string;
|
|
@@ -773,7 +805,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
773
805
|
default?: any;
|
|
774
806
|
set?: Function;
|
|
775
807
|
get?: Function;
|
|
776
|
-
|
|
808
|
+
toInternal?: Function;
|
|
809
|
+
toExternal?: Function;
|
|
777
810
|
values?: Set<any>;
|
|
778
811
|
externalName?: string;
|
|
779
812
|
env?: string[] | string;
|
|
@@ -793,7 +826,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
793
826
|
default?: any;
|
|
794
827
|
set?: Function;
|
|
795
828
|
get?: Function;
|
|
796
|
-
|
|
829
|
+
toInternal?: Function;
|
|
830
|
+
toExternal?: Function;
|
|
797
831
|
values?: Set<any>;
|
|
798
832
|
externalName?: string;
|
|
799
833
|
env?: string[] | string;
|
|
@@ -813,7 +847,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
813
847
|
default?: any;
|
|
814
848
|
set?: Function;
|
|
815
849
|
get?: Function;
|
|
816
|
-
|
|
850
|
+
toInternal?: Function;
|
|
851
|
+
toExternal?: Function;
|
|
817
852
|
values?: Set<any>;
|
|
818
853
|
externalName?: string;
|
|
819
854
|
env?: string[] | string;
|