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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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;
|
|
@@ -23,7 +23,8 @@ export class InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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;
|
|
@@ -728,7 +758,8 @@ export class InfluxdbService extends Service {
|
|
|
728
758
|
default?: any;
|
|
729
759
|
set?: Function;
|
|
730
760
|
get?: Function;
|
|
731
|
-
|
|
761
|
+
toInternal?: Function;
|
|
762
|
+
toExternal?: Function;
|
|
732
763
|
values?: Set<any>;
|
|
733
764
|
externalName?: string;
|
|
734
765
|
env?: string[] | string;
|