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
|
@@ -23,7 +23,8 @@ export class OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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 OpenLDAPService 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;
|
|
@@ -27,7 +27,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
27
27
|
default?: any;
|
|
28
28
|
set?: Function;
|
|
29
29
|
get?: Function;
|
|
30
|
-
|
|
30
|
+
toInternal?: Function;
|
|
31
|
+
toExternal?: Function;
|
|
31
32
|
values?: Set<any>;
|
|
32
33
|
externalName?: string;
|
|
33
34
|
env?: string[] | string;
|
|
@@ -47,7 +48,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
47
48
|
default?: any;
|
|
48
49
|
set?: Function;
|
|
49
50
|
get?: Function;
|
|
50
|
-
|
|
51
|
+
toInternal?: Function;
|
|
52
|
+
toExternal?: Function;
|
|
51
53
|
values?: Set<any>;
|
|
52
54
|
externalName?: string;
|
|
53
55
|
env?: string[] | string;
|
|
@@ -69,7 +71,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
69
71
|
default?: any;
|
|
70
72
|
set?: Function;
|
|
71
73
|
get?: Function;
|
|
72
|
-
|
|
74
|
+
toInternal?: Function;
|
|
75
|
+
toExternal?: Function;
|
|
73
76
|
externalName?: string;
|
|
74
77
|
env?: string[] | string;
|
|
75
78
|
additionalValues?: object;
|
|
@@ -91,7 +94,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
91
94
|
default?: any;
|
|
92
95
|
set?: Function;
|
|
93
96
|
get?: Function;
|
|
94
|
-
|
|
97
|
+
toInternal?: Function;
|
|
98
|
+
toExternal?: Function;
|
|
95
99
|
externalName?: string;
|
|
96
100
|
env?: string[] | string;
|
|
97
101
|
additionalValues?: object;
|
|
@@ -115,7 +119,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
115
119
|
default?: any;
|
|
116
120
|
set?: Function;
|
|
117
121
|
get?: Function;
|
|
118
|
-
|
|
122
|
+
toInternal?: Function;
|
|
123
|
+
toExternal?: Function;
|
|
119
124
|
externalName?: string;
|
|
120
125
|
env?: string[] | string;
|
|
121
126
|
additionalValues?: object;
|
|
@@ -135,7 +140,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
135
140
|
default?: any;
|
|
136
141
|
set?: Function;
|
|
137
142
|
get?: Function;
|
|
138
|
-
|
|
143
|
+
toInternal?: Function;
|
|
144
|
+
toExternal?: Function;
|
|
139
145
|
externalName?: string;
|
|
140
146
|
env?: string[] | string;
|
|
141
147
|
additionalValues?: object;
|
|
@@ -157,7 +163,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
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;
|
|
@@ -179,7 +186,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
179
186
|
default?: any;
|
|
180
187
|
set?: Function;
|
|
181
188
|
get?: Function;
|
|
182
|
-
|
|
189
|
+
toInternal?: Function;
|
|
190
|
+
toExternal?: Function;
|
|
183
191
|
values?: Set<any>;
|
|
184
192
|
externalName?: string;
|
|
185
193
|
env?: string[] | string;
|
|
@@ -211,7 +219,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
211
219
|
default?: any;
|
|
212
220
|
set?: Function;
|
|
213
221
|
get?: Function;
|
|
214
|
-
|
|
222
|
+
toInternal?: Function;
|
|
223
|
+
toExternal?: Function;
|
|
215
224
|
values?: Set<any>;
|
|
216
225
|
externalName?: string;
|
|
217
226
|
env?: string[] | string;
|
|
@@ -234,7 +243,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
234
243
|
default?: any;
|
|
235
244
|
set?: Function;
|
|
236
245
|
get?: Function;
|
|
237
|
-
|
|
246
|
+
toInternal?: Function;
|
|
247
|
+
toExternal?: Function;
|
|
238
248
|
externalName?: string;
|
|
239
249
|
env?: string[] | string;
|
|
240
250
|
additionalValues?: object;
|
|
@@ -256,7 +266,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
256
266
|
default?: any;
|
|
257
267
|
set?: Function;
|
|
258
268
|
get?: Function;
|
|
259
|
-
|
|
269
|
+
toInternal?: Function;
|
|
270
|
+
toExternal?: Function;
|
|
260
271
|
values?: Set<any>;
|
|
261
272
|
externalName?: string;
|
|
262
273
|
env?: string[] | string;
|
|
@@ -290,7 +301,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
290
301
|
default?: any;
|
|
291
302
|
set?: Function;
|
|
292
303
|
get?: Function;
|
|
293
|
-
|
|
304
|
+
toInternal?: Function;
|
|
305
|
+
toExternal?: Function;
|
|
294
306
|
values?: Set<any>;
|
|
295
307
|
externalName?: string;
|
|
296
308
|
env?: string[] | string;
|
|
@@ -310,7 +322,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
310
322
|
default?: any;
|
|
311
323
|
set?: Function;
|
|
312
324
|
get?: Function;
|
|
313
|
-
|
|
325
|
+
toInternal?: Function;
|
|
326
|
+
toExternal?: Function;
|
|
314
327
|
values?: Set<any>;
|
|
315
328
|
externalName?: string;
|
|
316
329
|
env?: string[] | string;
|
|
@@ -332,7 +345,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
332
345
|
default?: any;
|
|
333
346
|
set?: Function;
|
|
334
347
|
get?: Function;
|
|
335
|
-
|
|
348
|
+
toInternal?: Function;
|
|
349
|
+
toExternal?: Function;
|
|
336
350
|
externalName?: string;
|
|
337
351
|
env?: string[] | string;
|
|
338
352
|
additionalValues?: object;
|
|
@@ -354,7 +368,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
354
368
|
default?: any;
|
|
355
369
|
set?: Function;
|
|
356
370
|
get?: Function;
|
|
357
|
-
|
|
371
|
+
toInternal?: Function;
|
|
372
|
+
toExternal?: Function;
|
|
358
373
|
externalName?: string;
|
|
359
374
|
env?: string[] | string;
|
|
360
375
|
additionalValues?: object;
|
|
@@ -378,7 +393,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
378
393
|
default?: any;
|
|
379
394
|
set?: Function;
|
|
380
395
|
get?: Function;
|
|
381
|
-
|
|
396
|
+
toInternal?: Function;
|
|
397
|
+
toExternal?: Function;
|
|
382
398
|
externalName?: string;
|
|
383
399
|
env?: string[] | string;
|
|
384
400
|
additionalValues?: object;
|
|
@@ -398,7 +414,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
398
414
|
default?: any;
|
|
399
415
|
set?: Function;
|
|
400
416
|
get?: Function;
|
|
401
|
-
|
|
417
|
+
toInternal?: Function;
|
|
418
|
+
toExternal?: Function;
|
|
402
419
|
externalName?: string;
|
|
403
420
|
env?: string[] | string;
|
|
404
421
|
additionalValues?: object;
|
|
@@ -420,7 +437,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
420
437
|
default?: any;
|
|
421
438
|
set?: Function;
|
|
422
439
|
get?: Function;
|
|
423
|
-
|
|
440
|
+
toInternal?: Function;
|
|
441
|
+
toExternal?: Function;
|
|
424
442
|
values?: Set<any>;
|
|
425
443
|
externalName?: string;
|
|
426
444
|
env?: string[] | string;
|
|
@@ -442,7 +460,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
442
460
|
default?: any;
|
|
443
461
|
set?: Function;
|
|
444
462
|
get?: Function;
|
|
445
|
-
|
|
463
|
+
toInternal?: Function;
|
|
464
|
+
toExternal?: Function;
|
|
446
465
|
values?: Set<any>;
|
|
447
466
|
externalName?: string;
|
|
448
467
|
env?: string[] | string;
|
|
@@ -474,7 +493,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
474
493
|
default?: any;
|
|
475
494
|
set?: Function;
|
|
476
495
|
get?: Function;
|
|
477
|
-
|
|
496
|
+
toInternal?: Function;
|
|
497
|
+
toExternal?: Function;
|
|
478
498
|
values?: Set<any>;
|
|
479
499
|
externalName?: string;
|
|
480
500
|
env?: string[] | string;
|
|
@@ -497,7 +517,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
497
517
|
default?: any;
|
|
498
518
|
set?: Function;
|
|
499
519
|
get?: Function;
|
|
500
|
-
|
|
520
|
+
toInternal?: Function;
|
|
521
|
+
toExternal?: Function;
|
|
501
522
|
externalName?: string;
|
|
502
523
|
env?: string[] | string;
|
|
503
524
|
additionalValues?: object;
|
|
@@ -519,7 +540,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
519
540
|
default?: any;
|
|
520
541
|
set?: Function;
|
|
521
542
|
get?: Function;
|
|
522
|
-
|
|
543
|
+
toInternal?: Function;
|
|
544
|
+
toExternal?: Function;
|
|
523
545
|
values?: Set<any>;
|
|
524
546
|
externalName?: string;
|
|
525
547
|
env?: string[] | string;
|
|
@@ -551,7 +573,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
551
573
|
default?: any;
|
|
552
574
|
set?: Function;
|
|
553
575
|
get?: Function;
|
|
554
|
-
|
|
576
|
+
toInternal?: Function;
|
|
577
|
+
toExternal?: Function;
|
|
555
578
|
values?: Set<any>;
|
|
556
579
|
externalName?: string;
|
|
557
580
|
env?: string[] | string;
|
|
@@ -571,7 +594,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
571
594
|
default?: any;
|
|
572
595
|
set?: Function;
|
|
573
596
|
get?: Function;
|
|
574
|
-
|
|
597
|
+
toInternal?: Function;
|
|
598
|
+
toExternal?: Function;
|
|
575
599
|
values?: Set<any>;
|
|
576
600
|
externalName?: string;
|
|
577
601
|
env?: string[] | string;
|
|
@@ -593,7 +617,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
593
617
|
default?: any;
|
|
594
618
|
set?: Function;
|
|
595
619
|
get?: Function;
|
|
596
|
-
|
|
620
|
+
toInternal?: Function;
|
|
621
|
+
toExternal?: Function;
|
|
597
622
|
externalName?: string;
|
|
598
623
|
env?: string[] | string;
|
|
599
624
|
additionalValues?: object;
|
|
@@ -615,7 +640,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
615
640
|
default?: any;
|
|
616
641
|
set?: Function;
|
|
617
642
|
get?: Function;
|
|
618
|
-
|
|
643
|
+
toInternal?: Function;
|
|
644
|
+
toExternal?: Function;
|
|
619
645
|
externalName?: string;
|
|
620
646
|
env?: string[] | string;
|
|
621
647
|
additionalValues?: object;
|
|
@@ -639,7 +665,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
639
665
|
default?: any;
|
|
640
666
|
set?: Function;
|
|
641
667
|
get?: Function;
|
|
642
|
-
|
|
668
|
+
toInternal?: Function;
|
|
669
|
+
toExternal?: Function;
|
|
643
670
|
externalName?: string;
|
|
644
671
|
env?: string[] | string;
|
|
645
672
|
additionalValues?: object;
|
|
@@ -659,7 +686,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
659
686
|
default?: any;
|
|
660
687
|
set?: Function;
|
|
661
688
|
get?: Function;
|
|
662
|
-
|
|
689
|
+
toInternal?: Function;
|
|
690
|
+
toExternal?: Function;
|
|
663
691
|
externalName?: string;
|
|
664
692
|
env?: string[] | string;
|
|
665
693
|
additionalValues?: object;
|
|
@@ -681,7 +709,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
681
709
|
default?: any;
|
|
682
710
|
set?: Function;
|
|
683
711
|
get?: Function;
|
|
684
|
-
|
|
712
|
+
toInternal?: Function;
|
|
713
|
+
toExternal?: Function;
|
|
685
714
|
values?: Set<any>;
|
|
686
715
|
externalName?: string;
|
|
687
716
|
env?: string[] | string;
|
|
@@ -703,7 +732,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
703
732
|
default?: any;
|
|
704
733
|
set?: Function;
|
|
705
734
|
get?: Function;
|
|
706
|
-
|
|
735
|
+
toInternal?: Function;
|
|
736
|
+
toExternal?: Function;
|
|
707
737
|
values?: Set<any>;
|
|
708
738
|
externalName?: string;
|
|
709
739
|
env?: string[] | string;
|
|
@@ -731,7 +761,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
731
761
|
default?: any;
|
|
732
762
|
set?: Function;
|
|
733
763
|
get?: Function;
|
|
734
|
-
|
|
764
|
+
toInternal?: Function;
|
|
765
|
+
toExternal?: Function;
|
|
735
766
|
values?: Set<any>;
|
|
736
767
|
externalName?: string;
|
|
737
768
|
env?: string[] | string;
|
|
@@ -752,7 +783,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
752
783
|
default?: any;
|
|
753
784
|
set?: Function;
|
|
754
785
|
get?: Function;
|
|
755
|
-
|
|
786
|
+
toInternal?: Function;
|
|
787
|
+
toExternal?: Function;
|
|
756
788
|
externalName?: string;
|
|
757
789
|
env?: string[] | string;
|
|
758
790
|
additionalValues?: object;
|
|
@@ -771,7 +803,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
771
803
|
default?: any;
|
|
772
804
|
set?: Function;
|
|
773
805
|
get?: Function;
|
|
774
|
-
|
|
806
|
+
toInternal?: Function;
|
|
807
|
+
toExternal?: Function;
|
|
775
808
|
values?: Set<any>;
|
|
776
809
|
externalName?: string;
|
|
777
810
|
env?: string[] | string;
|
|
@@ -791,7 +824,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
791
824
|
default?: any;
|
|
792
825
|
set?: Function;
|
|
793
826
|
get?: Function;
|
|
794
|
-
|
|
827
|
+
toInternal?: Function;
|
|
828
|
+
toExternal?: Function;
|
|
795
829
|
values?: Set<any>;
|
|
796
830
|
externalName?: string;
|
|
797
831
|
env?: string[] | string;
|
|
@@ -811,7 +845,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
811
845
|
default?: any;
|
|
812
846
|
set?: Function;
|
|
813
847
|
get?: Function;
|
|
814
|
-
|
|
848
|
+
toInternal?: Function;
|
|
849
|
+
toExternal?: Function;
|
|
815
850
|
values?: Set<any>;
|
|
816
851
|
externalName?: string;
|
|
817
852
|
env?: string[] | string;
|
|
@@ -831,7 +866,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
831
866
|
default?: any;
|
|
832
867
|
set?: Function;
|
|
833
868
|
get?: Function;
|
|
834
|
-
|
|
869
|
+
toInternal?: Function;
|
|
870
|
+
toExternal?: Function;
|
|
835
871
|
values?: Set<any>;
|
|
836
872
|
externalName?: string;
|
|
837
873
|
env?: string[] | string;
|
|
@@ -851,7 +887,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
851
887
|
default?: any;
|
|
852
888
|
set?: Function;
|
|
853
889
|
get?: Function;
|
|
854
|
-
|
|
890
|
+
toInternal?: Function;
|
|
891
|
+
toExternal?: Function;
|
|
855
892
|
values?: Set<any>;
|
|
856
893
|
externalName?: string;
|
|
857
894
|
env?: string[] | string;
|
|
@@ -871,7 +908,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
871
908
|
default?: any;
|
|
872
909
|
set?: Function;
|
|
873
910
|
get?: Function;
|
|
874
|
-
|
|
911
|
+
toInternal?: Function;
|
|
912
|
+
toExternal?: Function;
|
|
875
913
|
values?: Set<any>;
|
|
876
914
|
externalName?: string;
|
|
877
915
|
env?: string[] | string;
|
|
@@ -891,7 +929,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
891
929
|
default?: any;
|
|
892
930
|
set?: Function;
|
|
893
931
|
get?: Function;
|
|
894
|
-
|
|
932
|
+
toInternal?: Function;
|
|
933
|
+
toExternal?: Function;
|
|
895
934
|
values?: Set<any>;
|
|
896
935
|
externalName?: string;
|
|
897
936
|
env?: string[] | string;
|
|
@@ -911,7 +950,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
911
950
|
default?: any;
|
|
912
951
|
set?: Function;
|
|
913
952
|
get?: Function;
|
|
914
|
-
|
|
953
|
+
toInternal?: Function;
|
|
954
|
+
toExternal?: Function;
|
|
915
955
|
values?: Set<any>;
|
|
916
956
|
externalName?: string;
|
|
917
957
|
env?: string[] | string;
|