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
|
@@ -23,7 +23,8 @@ export class SystemdJournalService extends Service {
|
|
|
23
23
|
default?: any;
|
|
24
24
|
set?: Function;
|
|
25
25
|
get?: Function;
|
|
26
|
-
|
|
26
|
+
toInternal?: Function;
|
|
27
|
+
toExternal?: Function;
|
|
27
28
|
values?: Set<any>;
|
|
28
29
|
externalName?: string;
|
|
29
30
|
env?: string[] | string;
|
|
@@ -43,7 +44,8 @@ export class SystemdJournalService extends Service {
|
|
|
43
44
|
default?: any;
|
|
44
45
|
set?: Function;
|
|
45
46
|
get?: Function;
|
|
46
|
-
|
|
47
|
+
toInternal?: Function;
|
|
48
|
+
toExternal?: Function;
|
|
47
49
|
values?: Set<any>;
|
|
48
50
|
externalName?: string;
|
|
49
51
|
env?: string[] | string;
|
|
@@ -65,7 +67,8 @@ export class SystemdJournalService extends Service {
|
|
|
65
67
|
default?: any;
|
|
66
68
|
set?: Function;
|
|
67
69
|
get?: Function;
|
|
68
|
-
|
|
70
|
+
toInternal?: Function;
|
|
71
|
+
toExternal?: Function;
|
|
69
72
|
externalName?: string;
|
|
70
73
|
env?: string[] | string;
|
|
71
74
|
additionalValues?: object;
|
|
@@ -87,7 +90,8 @@ export class SystemdJournalService extends Service {
|
|
|
87
90
|
default?: any;
|
|
88
91
|
set?: Function;
|
|
89
92
|
get?: Function;
|
|
90
|
-
|
|
93
|
+
toInternal?: Function;
|
|
94
|
+
toExternal?: Function;
|
|
91
95
|
externalName?: string;
|
|
92
96
|
env?: string[] | string;
|
|
93
97
|
additionalValues?: object;
|
|
@@ -111,7 +115,8 @@ export class SystemdJournalService extends Service {
|
|
|
111
115
|
default?: any;
|
|
112
116
|
set?: Function;
|
|
113
117
|
get?: Function;
|
|
114
|
-
|
|
118
|
+
toInternal?: Function;
|
|
119
|
+
toExternal?: Function;
|
|
115
120
|
externalName?: string;
|
|
116
121
|
env?: string[] | string;
|
|
117
122
|
additionalValues?: object;
|
|
@@ -131,7 +136,8 @@ export class SystemdJournalService extends Service {
|
|
|
131
136
|
default?: any;
|
|
132
137
|
set?: Function;
|
|
133
138
|
get?: Function;
|
|
134
|
-
|
|
139
|
+
toInternal?: Function;
|
|
140
|
+
toExternal?: Function;
|
|
135
141
|
externalName?: string;
|
|
136
142
|
env?: string[] | string;
|
|
137
143
|
additionalValues?: object;
|
|
@@ -153,7 +159,8 @@ export class SystemdJournalService extends Service {
|
|
|
153
159
|
default?: any;
|
|
154
160
|
set?: Function;
|
|
155
161
|
get?: Function;
|
|
156
|
-
|
|
162
|
+
toInternal?: Function;
|
|
163
|
+
toExternal?: Function;
|
|
157
164
|
values?: Set<any>;
|
|
158
165
|
externalName?: string;
|
|
159
166
|
env?: string[] | string;
|
|
@@ -175,7 +182,8 @@ export class SystemdJournalService extends Service {
|
|
|
175
182
|
default?: any;
|
|
176
183
|
set?: Function;
|
|
177
184
|
get?: Function;
|
|
178
|
-
|
|
185
|
+
toInternal?: Function;
|
|
186
|
+
toExternal?: Function;
|
|
179
187
|
values?: Set<any>;
|
|
180
188
|
externalName?: string;
|
|
181
189
|
env?: string[] | string;
|
|
@@ -207,7 +215,8 @@ export class SystemdJournalService extends Service {
|
|
|
207
215
|
default?: any;
|
|
208
216
|
set?: Function;
|
|
209
217
|
get?: Function;
|
|
210
|
-
|
|
218
|
+
toInternal?: Function;
|
|
219
|
+
toExternal?: Function;
|
|
211
220
|
values?: Set<any>;
|
|
212
221
|
externalName?: string;
|
|
213
222
|
env?: string[] | string;
|
|
@@ -230,7 +239,8 @@ export class SystemdJournalService extends Service {
|
|
|
230
239
|
default?: any;
|
|
231
240
|
set?: Function;
|
|
232
241
|
get?: Function;
|
|
233
|
-
|
|
242
|
+
toInternal?: Function;
|
|
243
|
+
toExternal?: Function;
|
|
234
244
|
externalName?: string;
|
|
235
245
|
env?: string[] | string;
|
|
236
246
|
additionalValues?: object;
|
|
@@ -252,7 +262,8 @@ export class SystemdJournalService extends Service {
|
|
|
252
262
|
default?: any;
|
|
253
263
|
set?: Function;
|
|
254
264
|
get?: Function;
|
|
255
|
-
|
|
265
|
+
toInternal?: Function;
|
|
266
|
+
toExternal?: Function;
|
|
256
267
|
values?: Set<any>;
|
|
257
268
|
externalName?: string;
|
|
258
269
|
env?: string[] | string;
|
|
@@ -286,7 +297,8 @@ export class SystemdJournalService extends Service {
|
|
|
286
297
|
default?: any;
|
|
287
298
|
set?: Function;
|
|
288
299
|
get?: Function;
|
|
289
|
-
|
|
300
|
+
toInternal?: Function;
|
|
301
|
+
toExternal?: Function;
|
|
290
302
|
values?: Set<any>;
|
|
291
303
|
externalName?: string;
|
|
292
304
|
env?: string[] | string;
|
|
@@ -306,7 +318,8 @@ export class SystemdJournalService extends Service {
|
|
|
306
318
|
default?: any;
|
|
307
319
|
set?: Function;
|
|
308
320
|
get?: Function;
|
|
309
|
-
|
|
321
|
+
toInternal?: Function;
|
|
322
|
+
toExternal?: Function;
|
|
310
323
|
values?: Set<any>;
|
|
311
324
|
externalName?: string;
|
|
312
325
|
env?: string[] | string;
|
|
@@ -328,7 +341,8 @@ export class SystemdJournalService extends Service {
|
|
|
328
341
|
default?: any;
|
|
329
342
|
set?: Function;
|
|
330
343
|
get?: Function;
|
|
331
|
-
|
|
344
|
+
toInternal?: Function;
|
|
345
|
+
toExternal?: Function;
|
|
332
346
|
externalName?: string;
|
|
333
347
|
env?: string[] | string;
|
|
334
348
|
additionalValues?: object;
|
|
@@ -350,7 +364,8 @@ export class SystemdJournalService extends Service {
|
|
|
350
364
|
default?: any;
|
|
351
365
|
set?: Function;
|
|
352
366
|
get?: Function;
|
|
353
|
-
|
|
367
|
+
toInternal?: Function;
|
|
368
|
+
toExternal?: Function;
|
|
354
369
|
externalName?: string;
|
|
355
370
|
env?: string[] | string;
|
|
356
371
|
additionalValues?: object;
|
|
@@ -374,7 +389,8 @@ export class SystemdJournalService extends Service {
|
|
|
374
389
|
default?: any;
|
|
375
390
|
set?: Function;
|
|
376
391
|
get?: Function;
|
|
377
|
-
|
|
392
|
+
toInternal?: Function;
|
|
393
|
+
toExternal?: Function;
|
|
378
394
|
externalName?: string;
|
|
379
395
|
env?: string[] | string;
|
|
380
396
|
additionalValues?: object;
|
|
@@ -394,7 +410,8 @@ export class SystemdJournalService extends Service {
|
|
|
394
410
|
default?: any;
|
|
395
411
|
set?: Function;
|
|
396
412
|
get?: Function;
|
|
397
|
-
|
|
413
|
+
toInternal?: Function;
|
|
414
|
+
toExternal?: Function;
|
|
398
415
|
externalName?: string;
|
|
399
416
|
env?: string[] | string;
|
|
400
417
|
additionalValues?: object;
|
|
@@ -416,7 +433,8 @@ export class SystemdJournalService extends Service {
|
|
|
416
433
|
default?: any;
|
|
417
434
|
set?: Function;
|
|
418
435
|
get?: Function;
|
|
419
|
-
|
|
436
|
+
toInternal?: Function;
|
|
437
|
+
toExternal?: Function;
|
|
420
438
|
values?: Set<any>;
|
|
421
439
|
externalName?: string;
|
|
422
440
|
env?: string[] | string;
|
|
@@ -438,7 +456,8 @@ export class SystemdJournalService extends Service {
|
|
|
438
456
|
default?: any;
|
|
439
457
|
set?: Function;
|
|
440
458
|
get?: Function;
|
|
441
|
-
|
|
459
|
+
toInternal?: Function;
|
|
460
|
+
toExternal?: Function;
|
|
442
461
|
values?: Set<any>;
|
|
443
462
|
externalName?: string;
|
|
444
463
|
env?: string[] | string;
|
|
@@ -470,7 +489,8 @@ export class SystemdJournalService extends Service {
|
|
|
470
489
|
default?: any;
|
|
471
490
|
set?: Function;
|
|
472
491
|
get?: Function;
|
|
473
|
-
|
|
492
|
+
toInternal?: Function;
|
|
493
|
+
toExternal?: Function;
|
|
474
494
|
values?: Set<any>;
|
|
475
495
|
externalName?: string;
|
|
476
496
|
env?: string[] | string;
|
|
@@ -493,7 +513,8 @@ export class SystemdJournalService extends Service {
|
|
|
493
513
|
default?: any;
|
|
494
514
|
set?: Function;
|
|
495
515
|
get?: Function;
|
|
496
|
-
|
|
516
|
+
toInternal?: Function;
|
|
517
|
+
toExternal?: Function;
|
|
497
518
|
externalName?: string;
|
|
498
519
|
env?: string[] | string;
|
|
499
520
|
additionalValues?: object;
|
|
@@ -515,7 +536,8 @@ export class SystemdJournalService extends Service {
|
|
|
515
536
|
default?: any;
|
|
516
537
|
set?: Function;
|
|
517
538
|
get?: Function;
|
|
518
|
-
|
|
539
|
+
toInternal?: Function;
|
|
540
|
+
toExternal?: Function;
|
|
519
541
|
values?: Set<any>;
|
|
520
542
|
externalName?: string;
|
|
521
543
|
env?: string[] | string;
|
|
@@ -547,7 +569,8 @@ export class SystemdJournalService extends Service {
|
|
|
547
569
|
default?: any;
|
|
548
570
|
set?: Function;
|
|
549
571
|
get?: Function;
|
|
550
|
-
|
|
572
|
+
toInternal?: Function;
|
|
573
|
+
toExternal?: Function;
|
|
551
574
|
values?: Set<any>;
|
|
552
575
|
externalName?: string;
|
|
553
576
|
env?: string[] | string;
|
|
@@ -567,7 +590,8 @@ export class SystemdJournalService extends Service {
|
|
|
567
590
|
default?: any;
|
|
568
591
|
set?: Function;
|
|
569
592
|
get?: Function;
|
|
570
|
-
|
|
593
|
+
toInternal?: Function;
|
|
594
|
+
toExternal?: Function;
|
|
571
595
|
values?: Set<any>;
|
|
572
596
|
externalName?: string;
|
|
573
597
|
env?: string[] | string;
|
|
@@ -589,7 +613,8 @@ export class SystemdJournalService extends Service {
|
|
|
589
613
|
default?: any;
|
|
590
614
|
set?: Function;
|
|
591
615
|
get?: Function;
|
|
592
|
-
|
|
616
|
+
toInternal?: Function;
|
|
617
|
+
toExternal?: Function;
|
|
593
618
|
externalName?: string;
|
|
594
619
|
env?: string[] | string;
|
|
595
620
|
additionalValues?: object;
|
|
@@ -611,7 +636,8 @@ export class SystemdJournalService extends Service {
|
|
|
611
636
|
default?: any;
|
|
612
637
|
set?: Function;
|
|
613
638
|
get?: Function;
|
|
614
|
-
|
|
639
|
+
toInternal?: Function;
|
|
640
|
+
toExternal?: Function;
|
|
615
641
|
externalName?: string;
|
|
616
642
|
env?: string[] | string;
|
|
617
643
|
additionalValues?: object;
|
|
@@ -635,7 +661,8 @@ export class SystemdJournalService extends Service {
|
|
|
635
661
|
default?: any;
|
|
636
662
|
set?: Function;
|
|
637
663
|
get?: Function;
|
|
638
|
-
|
|
664
|
+
toInternal?: Function;
|
|
665
|
+
toExternal?: Function;
|
|
639
666
|
externalName?: string;
|
|
640
667
|
env?: string[] | string;
|
|
641
668
|
additionalValues?: object;
|
|
@@ -655,7 +682,8 @@ export class SystemdJournalService extends Service {
|
|
|
655
682
|
default?: any;
|
|
656
683
|
set?: Function;
|
|
657
684
|
get?: Function;
|
|
658
|
-
|
|
685
|
+
toInternal?: Function;
|
|
686
|
+
toExternal?: Function;
|
|
659
687
|
externalName?: string;
|
|
660
688
|
env?: string[] | string;
|
|
661
689
|
additionalValues?: object;
|
|
@@ -677,7 +705,8 @@ export class SystemdJournalService extends Service {
|
|
|
677
705
|
default?: any;
|
|
678
706
|
set?: Function;
|
|
679
707
|
get?: Function;
|
|
680
|
-
|
|
708
|
+
toInternal?: Function;
|
|
709
|
+
toExternal?: Function;
|
|
681
710
|
values?: Set<any>;
|
|
682
711
|
externalName?: string;
|
|
683
712
|
env?: string[] | string;
|
|
@@ -699,7 +728,8 @@ export class SystemdJournalService extends Service {
|
|
|
699
728
|
default?: any;
|
|
700
729
|
set?: Function;
|
|
701
730
|
get?: Function;
|
|
702
|
-
|
|
731
|
+
toInternal?: Function;
|
|
732
|
+
toExternal?: Function;
|
|
703
733
|
values?: Set<any>;
|
|
704
734
|
externalName?: string;
|
|
705
735
|
env?: string[] | string;
|
|
@@ -727,7 +757,8 @@ export class SystemdJournalService extends Service {
|
|
|
727
757
|
default?: any;
|
|
728
758
|
set?: Function;
|
|
729
759
|
get?: Function;
|
|
730
|
-
|
|
760
|
+
toInternal?: Function;
|
|
761
|
+
toExternal?: Function;
|
|
731
762
|
values?: Set<any>;
|
|
732
763
|
externalName?: string;
|
|
733
764
|
env?: string[] | string;
|
|
@@ -747,7 +778,8 @@ export class SystemdJournalService extends Service {
|
|
|
747
778
|
default?: any;
|
|
748
779
|
set?: Function;
|
|
749
780
|
get?: Function;
|
|
750
|
-
|
|
781
|
+
toInternal?: Function;
|
|
782
|
+
toExternal?: Function;
|
|
751
783
|
values?: Set<any>;
|
|
752
784
|
externalName?: string;
|
|
753
785
|
env?: string[] | string;
|
|
@@ -767,7 +799,8 @@ export class SystemdJournalService extends Service {
|
|
|
767
799
|
default?: any;
|
|
768
800
|
set?: Function;
|
|
769
801
|
get?: Function;
|
|
770
|
-
|
|
802
|
+
toInternal?: Function;
|
|
803
|
+
toExternal?: Function;
|
|
771
804
|
values?: Set<any>;
|
|
772
805
|
externalName?: string;
|
|
773
806
|
env?: string[] | string;
|
|
@@ -787,7 +820,8 @@ export class SystemdJournalService extends Service {
|
|
|
787
820
|
default?: any;
|
|
788
821
|
set?: Function;
|
|
789
822
|
get?: Function;
|
|
790
|
-
|
|
823
|
+
toInternal?: Function;
|
|
824
|
+
toExternal?: Function;
|
|
791
825
|
values?: Set<any>;
|
|
792
826
|
externalName?: string;
|
|
793
827
|
env?: string[] | string;
|
|
@@ -807,7 +841,8 @@ export class SystemdJournalService extends Service {
|
|
|
807
841
|
default?: any;
|
|
808
842
|
set?: Function;
|
|
809
843
|
get?: Function;
|
|
810
|
-
|
|
844
|
+
toInternal?: Function;
|
|
845
|
+
toExternal?: Function;
|
|
811
846
|
values?: Set<any>;
|
|
812
847
|
externalName?: string;
|
|
813
848
|
env?: string[] | string;
|
|
@@ -827,7 +862,8 @@ export class SystemdJournalService extends Service {
|
|
|
827
862
|
default?: any;
|
|
828
863
|
set?: Function;
|
|
829
864
|
get?: Function;
|
|
830
|
-
|
|
865
|
+
toInternal?: Function;
|
|
866
|
+
toExternal?: Function;
|
|
831
867
|
values?: Set<any>;
|
|
832
868
|
externalName?: string;
|
|
833
869
|
env?: string[] | string;
|
|
@@ -847,7 +883,8 @@ export class SystemdJournalService extends Service {
|
|
|
847
883
|
default?: any;
|
|
848
884
|
set?: Function;
|
|
849
885
|
get?: Function;
|
|
850
|
-
|
|
886
|
+
toInternal?: Function;
|
|
887
|
+
toExternal?: Function;
|
|
851
888
|
values?: Set<any>;
|
|
852
889
|
externalName?: string;
|
|
853
890
|
env?: string[] | string;
|
|
@@ -867,7 +904,8 @@ export class SystemdJournalService extends Service {
|
|
|
867
904
|
default?: any;
|
|
868
905
|
set?: Function;
|
|
869
906
|
get?: Function;
|
|
870
|
-
|
|
907
|
+
toInternal?: Function;
|
|
908
|
+
toExternal?: Function;
|
|
871
909
|
values?: Set<any>;
|
|
872
910
|
externalName?: string;
|
|
873
911
|
env?: string[] | string;
|
|
@@ -887,7 +925,8 @@ export class SystemdJournalService extends Service {
|
|
|
887
925
|
default?: any;
|
|
888
926
|
set?: Function;
|
|
889
927
|
get?: Function;
|
|
890
|
-
|
|
928
|
+
toInternal?: Function;
|
|
929
|
+
toExternal?: Function;
|
|
891
930
|
values?: Set<any>;
|
|
892
931
|
externalName?: string;
|
|
893
932
|
env?: string[] | string;
|
|
@@ -907,7 +946,8 @@ export class SystemdJournalService extends Service {
|
|
|
907
946
|
default?: any;
|
|
908
947
|
set?: Function;
|
|
909
948
|
get?: Function;
|
|
910
|
-
|
|
949
|
+
toInternal?: Function;
|
|
950
|
+
toExternal?: Function;
|
|
911
951
|
values?: Set<any>;
|
|
912
952
|
externalName?: string;
|
|
913
953
|
env?: string[] | string;
|
|
@@ -927,7 +967,8 @@ export class SystemdJournalService extends Service {
|
|
|
927
967
|
default?: any;
|
|
928
968
|
set?: Function;
|
|
929
969
|
get?: Function;
|
|
930
|
-
|
|
970
|
+
toInternal?: Function;
|
|
971
|
+
toExternal?: Function;
|
|
931
972
|
values?: Set<any>;
|
|
932
973
|
externalName?: string;
|
|
933
974
|
env?: string[] | string;
|
|
@@ -947,7 +988,8 @@ export class SystemdJournalService extends Service {
|
|
|
947
988
|
default?: any;
|
|
948
989
|
set?: Function;
|
|
949
990
|
get?: Function;
|
|
950
|
-
|
|
991
|
+
toInternal?: Function;
|
|
992
|
+
toExternal?: Function;
|
|
951
993
|
values?: Set<any>;
|
|
952
994
|
externalName?: string;
|
|
953
995
|
env?: string[] | string;
|
|
@@ -967,7 +1009,8 @@ export class SystemdJournalService extends Service {
|
|
|
967
1009
|
default?: any;
|
|
968
1010
|
set?: Function;
|
|
969
1011
|
get?: Function;
|
|
970
|
-
|
|
1012
|
+
toInternal?: Function;
|
|
1013
|
+
toExternal?: Function;
|
|
971
1014
|
values?: Set<any>;
|
|
972
1015
|
externalName?: string;
|
|
973
1016
|
env?: string[] | string;
|
|
@@ -987,7 +1030,8 @@ export class SystemdJournalService extends Service {
|
|
|
987
1030
|
default?: any;
|
|
988
1031
|
set?: Function;
|
|
989
1032
|
get?: Function;
|
|
990
|
-
|
|
1033
|
+
toInternal?: Function;
|
|
1034
|
+
toExternal?: Function;
|
|
991
1035
|
values?: Set<any>;
|
|
992
1036
|
externalName?: string;
|
|
993
1037
|
env?: string[] | string;
|
|
@@ -1007,7 +1051,8 @@ export class SystemdJournalService extends Service {
|
|
|
1007
1051
|
default?: any;
|
|
1008
1052
|
set?: Function;
|
|
1009
1053
|
get?: Function;
|
|
1010
|
-
|
|
1054
|
+
toInternal?: Function;
|
|
1055
|
+
toExternal?: Function;
|
|
1011
1056
|
values?: Set<any>;
|
|
1012
1057
|
externalName?: string;
|
|
1013
1058
|
env?: string[] | string;
|
|
@@ -1027,7 +1072,8 @@ export class SystemdJournalService extends Service {
|
|
|
1027
1072
|
default?: any;
|
|
1028
1073
|
set?: Function;
|
|
1029
1074
|
get?: Function;
|
|
1030
|
-
|
|
1075
|
+
toInternal?: Function;
|
|
1076
|
+
toExternal?: Function;
|
|
1031
1077
|
values?: Set<any>;
|
|
1032
1078
|
externalName?: string;
|
|
1033
1079
|
env?: string[] | string;
|
|
@@ -1047,7 +1093,8 @@ export class SystemdJournalService extends Service {
|
|
|
1047
1093
|
default?: any;
|
|
1048
1094
|
set?: Function;
|
|
1049
1095
|
get?: Function;
|
|
1050
|
-
|
|
1096
|
+
toInternal?: Function;
|
|
1097
|
+
toExternal?: Function;
|
|
1051
1098
|
values?: Set<any>;
|
|
1052
1099
|
externalName?: string;
|
|
1053
1100
|
env?: string[] | string;
|
|
@@ -1067,7 +1114,8 @@ export class SystemdJournalService extends Service {
|
|
|
1067
1114
|
default?: any;
|
|
1068
1115
|
set?: Function;
|
|
1069
1116
|
get?: Function;
|
|
1070
|
-
|
|
1117
|
+
toInternal?: Function;
|
|
1118
|
+
toExternal?: Function;
|
|
1071
1119
|
values?: Set<any>;
|
|
1072
1120
|
externalName?: string;
|
|
1073
1121
|
env?: string[] | string;
|
|
@@ -1087,7 +1135,8 @@ export class SystemdJournalService extends Service {
|
|
|
1087
1135
|
default?: any;
|
|
1088
1136
|
set?: Function;
|
|
1089
1137
|
get?: Function;
|
|
1090
|
-
|
|
1138
|
+
toInternal?: Function;
|
|
1139
|
+
toExternal?: Function;
|
|
1091
1140
|
values?: Set<any>;
|
|
1092
1141
|
externalName?: string;
|
|
1093
1142
|
env?: string[] | string;
|
|
@@ -1107,7 +1156,8 @@ export class SystemdJournalService extends Service {
|
|
|
1107
1156
|
default?: any;
|
|
1108
1157
|
set?: Function;
|
|
1109
1158
|
get?: Function;
|
|
1110
|
-
|
|
1159
|
+
toInternal?: Function;
|
|
1160
|
+
toExternal?: Function;
|
|
1111
1161
|
values?: Set<any>;
|
|
1112
1162
|
externalName?: string;
|
|
1113
1163
|
env?: string[] | string;
|
|
@@ -1127,7 +1177,8 @@ export class SystemdJournalService extends Service {
|
|
|
1127
1177
|
default?: any;
|
|
1128
1178
|
set?: Function;
|
|
1129
1179
|
get?: Function;
|
|
1130
|
-
|
|
1180
|
+
toInternal?: Function;
|
|
1181
|
+
toExternal?: Function;
|
|
1131
1182
|
values?: Set<any>;
|
|
1132
1183
|
externalName?: string;
|
|
1133
1184
|
env?: string[] | string;
|
|
@@ -1147,7 +1198,8 @@ export class SystemdJournalService extends Service {
|
|
|
1147
1198
|
default?: any;
|
|
1148
1199
|
set?: Function;
|
|
1149
1200
|
get?: Function;
|
|
1150
|
-
|
|
1201
|
+
toInternal?: Function;
|
|
1202
|
+
toExternal?: Function;
|
|
1151
1203
|
values?: Set<any>;
|
|
1152
1204
|
externalName?: string;
|
|
1153
1205
|
env?: string[] | string;
|
|
@@ -1167,7 +1219,8 @@ export class SystemdJournalService extends Service {
|
|
|
1167
1219
|
default?: any;
|
|
1168
1220
|
set?: Function;
|
|
1169
1221
|
get?: Function;
|
|
1170
|
-
|
|
1222
|
+
toInternal?: Function;
|
|
1223
|
+
toExternal?: Function;
|
|
1171
1224
|
values?: Set<any>;
|
|
1172
1225
|
externalName?: string;
|
|
1173
1226
|
env?: string[] | string;
|