pmcf 3.20.1 → 3.20.3
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 +31 -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 +121 -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
|
@@ -25,7 +25,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
25
25
|
default?: any;
|
|
26
26
|
set?: Function;
|
|
27
27
|
get?: Function;
|
|
28
|
-
|
|
28
|
+
toInternal?: Function;
|
|
29
|
+
toExternal?: Function;
|
|
29
30
|
values?: Set<any>;
|
|
30
31
|
externalName?: string;
|
|
31
32
|
env?: string[] | string;
|
|
@@ -45,7 +46,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
45
46
|
default?: any;
|
|
46
47
|
set?: Function;
|
|
47
48
|
get?: Function;
|
|
48
|
-
|
|
49
|
+
toInternal?: Function;
|
|
50
|
+
toExternal?: Function;
|
|
49
51
|
values?: Set<any>;
|
|
50
52
|
externalName?: string;
|
|
51
53
|
env?: string[] | string;
|
|
@@ -77,7 +79,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
77
79
|
default?: any;
|
|
78
80
|
set?: Function;
|
|
79
81
|
get?: Function;
|
|
80
|
-
|
|
82
|
+
toInternal?: Function;
|
|
83
|
+
toExternal?: Function;
|
|
81
84
|
values?: Set<any>;
|
|
82
85
|
externalName?: string;
|
|
83
86
|
env?: string[] | string;
|
|
@@ -97,7 +100,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
97
100
|
default?: any;
|
|
98
101
|
set?: Function;
|
|
99
102
|
get?: Function;
|
|
100
|
-
|
|
103
|
+
toInternal?: Function;
|
|
104
|
+
toExternal?: Function;
|
|
101
105
|
values?: Set<any>;
|
|
102
106
|
externalName?: string;
|
|
103
107
|
env?: string[] | string;
|
|
@@ -117,7 +121,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
117
121
|
default?: any;
|
|
118
122
|
set?: Function;
|
|
119
123
|
get?: Function;
|
|
120
|
-
|
|
124
|
+
toInternal?: Function;
|
|
125
|
+
toExternal?: Function;
|
|
121
126
|
values?: Set<any>;
|
|
122
127
|
externalName?: string;
|
|
123
128
|
env?: string[] | string;
|
|
@@ -145,7 +150,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
145
150
|
default?: any;
|
|
146
151
|
set?: Function;
|
|
147
152
|
get?: Function;
|
|
148
|
-
|
|
153
|
+
toInternal?: Function;
|
|
154
|
+
toExternal?: Function;
|
|
149
155
|
values?: Set<any>;
|
|
150
156
|
externalName?: string;
|
|
151
157
|
env?: string[] | string;
|
|
@@ -167,7 +173,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
167
173
|
default?: any;
|
|
168
174
|
set?: Function;
|
|
169
175
|
get?: Function;
|
|
170
|
-
|
|
176
|
+
toInternal?: Function;
|
|
177
|
+
toExternal?: Function;
|
|
171
178
|
values?: Set<any>;
|
|
172
179
|
externalName?: string;
|
|
173
180
|
env?: string[] | string;
|
|
@@ -193,7 +200,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
193
200
|
default?: any;
|
|
194
201
|
set?: Function;
|
|
195
202
|
get?: Function;
|
|
196
|
-
|
|
203
|
+
toInternal?: Function;
|
|
204
|
+
toExternal?: Function;
|
|
197
205
|
values?: Set<any>;
|
|
198
206
|
externalName?: string;
|
|
199
207
|
env?: string[] | string;
|
|
@@ -213,7 +221,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
213
221
|
default?: any;
|
|
214
222
|
set?: Function;
|
|
215
223
|
get?: Function;
|
|
216
|
-
|
|
224
|
+
toInternal?: Function;
|
|
225
|
+
toExternal?: Function;
|
|
217
226
|
values?: Set<any>;
|
|
218
227
|
externalName?: string;
|
|
219
228
|
env?: string[] | string;
|
|
@@ -237,7 +246,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
237
246
|
default?: any;
|
|
238
247
|
set?: Function;
|
|
239
248
|
get?: Function;
|
|
240
|
-
|
|
249
|
+
toInternal?: Function;
|
|
250
|
+
toExternal?: Function;
|
|
241
251
|
values?: Set<any>;
|
|
242
252
|
externalName?: string;
|
|
243
253
|
env?: string[] | string;
|
|
@@ -257,7 +267,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
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;
|
|
@@ -278,7 +289,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
278
289
|
default?: any;
|
|
279
290
|
set?: Function;
|
|
280
291
|
get?: Function;
|
|
281
|
-
|
|
292
|
+
toInternal?: Function;
|
|
293
|
+
toExternal?: Function;
|
|
282
294
|
externalName?: string;
|
|
283
295
|
env?: string[] | string;
|
|
284
296
|
additionalValues?: object;
|
|
@@ -298,7 +310,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
298
310
|
default?: any;
|
|
299
311
|
set?: Function;
|
|
300
312
|
get?: Function;
|
|
301
|
-
|
|
313
|
+
toInternal?: Function;
|
|
314
|
+
toExternal?: Function;
|
|
302
315
|
externalName?: string;
|
|
303
316
|
env?: string[] | string;
|
|
304
317
|
additionalValues?: object;
|
|
@@ -318,7 +331,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
318
331
|
default?: any;
|
|
319
332
|
set?: Function;
|
|
320
333
|
get?: Function;
|
|
321
|
-
|
|
334
|
+
toInternal?: Function;
|
|
335
|
+
toExternal?: Function;
|
|
322
336
|
externalName?: string;
|
|
323
337
|
env?: string[] | string;
|
|
324
338
|
additionalValues?: object;
|
|
@@ -340,7 +354,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
340
354
|
default?: any;
|
|
341
355
|
set?: Function;
|
|
342
356
|
get?: Function;
|
|
343
|
-
|
|
357
|
+
toInternal?: Function;
|
|
358
|
+
toExternal?: Function;
|
|
344
359
|
values?: Set<any>;
|
|
345
360
|
externalName?: string;
|
|
346
361
|
env?: string[] | string;
|
|
@@ -360,7 +375,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
360
375
|
description?: string;
|
|
361
376
|
set?: Function;
|
|
362
377
|
get?: Function;
|
|
363
|
-
|
|
378
|
+
toInternal?: Function;
|
|
379
|
+
toExternal?: Function;
|
|
364
380
|
values?: Set<any>;
|
|
365
381
|
externalName?: string;
|
|
366
382
|
env?: string[] | string;
|
|
@@ -381,7 +397,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
381
397
|
default?: any;
|
|
382
398
|
set?: Function;
|
|
383
399
|
get?: Function;
|
|
384
|
-
|
|
400
|
+
toInternal?: Function;
|
|
401
|
+
toExternal?: Function;
|
|
385
402
|
values?: Set<any>;
|
|
386
403
|
externalName?: string;
|
|
387
404
|
env?: string[] | string;
|
|
@@ -407,7 +424,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
407
424
|
default?: any;
|
|
408
425
|
set?: Function;
|
|
409
426
|
get?: Function;
|
|
410
|
-
|
|
427
|
+
toInternal?: Function;
|
|
428
|
+
toExternal?: Function;
|
|
411
429
|
externalName?: string;
|
|
412
430
|
env?: string[] | string;
|
|
413
431
|
additionalValues?: object;
|
|
@@ -427,7 +445,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
427
445
|
default?: any;
|
|
428
446
|
set?: Function;
|
|
429
447
|
get?: Function;
|
|
430
|
-
|
|
448
|
+
toInternal?: Function;
|
|
449
|
+
toExternal?: Function;
|
|
431
450
|
externalName?: string;
|
|
432
451
|
env?: string[] | string;
|
|
433
452
|
additionalValues?: object;
|
|
@@ -447,7 +466,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
447
466
|
default?: any;
|
|
448
467
|
set?: Function;
|
|
449
468
|
get?: Function;
|
|
450
|
-
|
|
469
|
+
toInternal?: Function;
|
|
470
|
+
toExternal?: Function;
|
|
451
471
|
externalName?: string;
|
|
452
472
|
env?: string[] | string;
|
|
453
473
|
additionalValues?: object;
|
|
@@ -469,7 +489,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
469
489
|
default?: any;
|
|
470
490
|
set?: Function;
|
|
471
491
|
get?: Function;
|
|
472
|
-
|
|
492
|
+
toInternal?: Function;
|
|
493
|
+
toExternal?: Function;
|
|
473
494
|
values?: Set<any>;
|
|
474
495
|
externalName?: string;
|
|
475
496
|
env?: string[] | string;
|
|
@@ -489,7 +510,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
489
510
|
description?: string;
|
|
490
511
|
set?: Function;
|
|
491
512
|
get?: Function;
|
|
492
|
-
|
|
513
|
+
toInternal?: Function;
|
|
514
|
+
toExternal?: Function;
|
|
493
515
|
values?: Set<any>;
|
|
494
516
|
externalName?: string;
|
|
495
517
|
env?: string[] | string;
|
|
@@ -509,7 +531,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
509
531
|
default?: any;
|
|
510
532
|
set?: Function;
|
|
511
533
|
get?: Function;
|
|
512
|
-
|
|
534
|
+
toInternal?: Function;
|
|
535
|
+
toExternal?: Function;
|
|
513
536
|
values?: Set<any>;
|
|
514
537
|
externalName?: string;
|
|
515
538
|
env?: string[] | string;
|
|
@@ -540,7 +563,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
540
563
|
default?: any;
|
|
541
564
|
set?: Function;
|
|
542
565
|
get?: Function;
|
|
543
|
-
|
|
566
|
+
toInternal?: Function;
|
|
567
|
+
toExternal?: Function;
|
|
544
568
|
values?: Set<any>;
|
|
545
569
|
externalName?: string;
|
|
546
570
|
env?: string[] | string;
|
|
@@ -560,7 +584,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
560
584
|
default?: any;
|
|
561
585
|
set?: Function;
|
|
562
586
|
get?: Function;
|
|
563
|
-
|
|
587
|
+
toInternal?: Function;
|
|
588
|
+
toExternal?: Function;
|
|
564
589
|
values?: Set<any>;
|
|
565
590
|
externalName?: string;
|
|
566
591
|
env?: string[] | string;
|
|
@@ -592,7 +617,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
592
617
|
default?: any;
|
|
593
618
|
set?: Function;
|
|
594
619
|
get?: Function;
|
|
595
|
-
|
|
620
|
+
toInternal?: Function;
|
|
621
|
+
toExternal?: Function;
|
|
596
622
|
values?: Set<any>;
|
|
597
623
|
externalName?: string;
|
|
598
624
|
env?: string[] | string;
|
|
@@ -612,7 +638,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
612
638
|
default?: any;
|
|
613
639
|
set?: Function;
|
|
614
640
|
get?: Function;
|
|
615
|
-
|
|
641
|
+
toInternal?: Function;
|
|
642
|
+
toExternal?: Function;
|
|
616
643
|
values?: Set<any>;
|
|
617
644
|
externalName?: string;
|
|
618
645
|
env?: string[] | string;
|
|
@@ -632,7 +659,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
632
659
|
default?: any;
|
|
633
660
|
set?: Function;
|
|
634
661
|
get?: Function;
|
|
635
|
-
|
|
662
|
+
toInternal?: Function;
|
|
663
|
+
toExternal?: Function;
|
|
636
664
|
values?: Set<any>;
|
|
637
665
|
externalName?: string;
|
|
638
666
|
env?: string[] | string;
|
|
@@ -660,7 +688,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
660
688
|
default?: any;
|
|
661
689
|
set?: Function;
|
|
662
690
|
get?: Function;
|
|
663
|
-
|
|
691
|
+
toInternal?: Function;
|
|
692
|
+
toExternal?: Function;
|
|
664
693
|
values?: Set<any>;
|
|
665
694
|
externalName?: string;
|
|
666
695
|
env?: string[] | string;
|
|
@@ -682,7 +711,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
682
711
|
default?: any;
|
|
683
712
|
set?: Function;
|
|
684
713
|
get?: Function;
|
|
685
|
-
|
|
714
|
+
toInternal?: Function;
|
|
715
|
+
toExternal?: Function;
|
|
686
716
|
values?: Set<any>;
|
|
687
717
|
externalName?: string;
|
|
688
718
|
env?: string[] | string;
|
|
@@ -708,7 +738,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
708
738
|
default?: any;
|
|
709
739
|
set?: Function;
|
|
710
740
|
get?: Function;
|
|
711
|
-
|
|
741
|
+
toInternal?: Function;
|
|
742
|
+
toExternal?: Function;
|
|
712
743
|
values?: Set<any>;
|
|
713
744
|
externalName?: string;
|
|
714
745
|
env?: string[] | string;
|
|
@@ -728,7 +759,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
728
759
|
default?: any;
|
|
729
760
|
set?: Function;
|
|
730
761
|
get?: Function;
|
|
731
|
-
|
|
762
|
+
toInternal?: Function;
|
|
763
|
+
toExternal?: Function;
|
|
732
764
|
values?: Set<any>;
|
|
733
765
|
externalName?: string;
|
|
734
766
|
env?: string[] | string;
|
|
@@ -752,7 +784,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
752
784
|
default?: any;
|
|
753
785
|
set?: Function;
|
|
754
786
|
get?: Function;
|
|
755
|
-
|
|
787
|
+
toInternal?: Function;
|
|
788
|
+
toExternal?: Function;
|
|
756
789
|
values?: Set<any>;
|
|
757
790
|
externalName?: string;
|
|
758
791
|
env?: string[] | string;
|
|
@@ -772,7 +805,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
772
805
|
default?: any;
|
|
773
806
|
set?: Function;
|
|
774
807
|
get?: Function;
|
|
775
|
-
|
|
808
|
+
toInternal?: Function;
|
|
809
|
+
toExternal?: Function;
|
|
776
810
|
values?: Set<any>;
|
|
777
811
|
externalName?: string;
|
|
778
812
|
env?: string[] | string;
|
|
@@ -793,7 +827,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
793
827
|
default?: any;
|
|
794
828
|
set?: Function;
|
|
795
829
|
get?: Function;
|
|
796
|
-
|
|
830
|
+
toInternal?: Function;
|
|
831
|
+
toExternal?: Function;
|
|
797
832
|
externalName?: string;
|
|
798
833
|
env?: string[] | string;
|
|
799
834
|
additionalValues?: object;
|
|
@@ -813,7 +848,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
813
848
|
default?: any;
|
|
814
849
|
set?: Function;
|
|
815
850
|
get?: Function;
|
|
816
|
-
|
|
851
|
+
toInternal?: Function;
|
|
852
|
+
toExternal?: Function;
|
|
817
853
|
externalName?: string;
|
|
818
854
|
env?: string[] | string;
|
|
819
855
|
additionalValues?: object;
|
|
@@ -833,7 +869,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
833
869
|
default?: any;
|
|
834
870
|
set?: Function;
|
|
835
871
|
get?: Function;
|
|
836
|
-
|
|
872
|
+
toInternal?: Function;
|
|
873
|
+
toExternal?: Function;
|
|
837
874
|
externalName?: string;
|
|
838
875
|
env?: string[] | string;
|
|
839
876
|
additionalValues?: object;
|
|
@@ -855,7 +892,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
855
892
|
default?: any;
|
|
856
893
|
set?: Function;
|
|
857
894
|
get?: Function;
|
|
858
|
-
|
|
895
|
+
toInternal?: Function;
|
|
896
|
+
toExternal?: Function;
|
|
859
897
|
values?: Set<any>;
|
|
860
898
|
externalName?: string;
|
|
861
899
|
env?: string[] | string;
|
|
@@ -875,7 +913,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
875
913
|
description?: string;
|
|
876
914
|
set?: Function;
|
|
877
915
|
get?: Function;
|
|
878
|
-
|
|
916
|
+
toInternal?: Function;
|
|
917
|
+
toExternal?: Function;
|
|
879
918
|
values?: Set<any>;
|
|
880
919
|
externalName?: string;
|
|
881
920
|
env?: string[] | string;
|
|
@@ -896,7 +935,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
896
935
|
default?: any;
|
|
897
936
|
set?: Function;
|
|
898
937
|
get?: Function;
|
|
899
|
-
|
|
938
|
+
toInternal?: Function;
|
|
939
|
+
toExternal?: Function;
|
|
900
940
|
values?: Set<any>;
|
|
901
941
|
externalName?: string;
|
|
902
942
|
env?: string[] | string;
|
|
@@ -922,7 +962,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
922
962
|
default?: any;
|
|
923
963
|
set?: Function;
|
|
924
964
|
get?: Function;
|
|
925
|
-
|
|
965
|
+
toInternal?: Function;
|
|
966
|
+
toExternal?: Function;
|
|
926
967
|
externalName?: string;
|
|
927
968
|
env?: string[] | string;
|
|
928
969
|
additionalValues?: object;
|
|
@@ -942,7 +983,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
942
983
|
default?: any;
|
|
943
984
|
set?: Function;
|
|
944
985
|
get?: Function;
|
|
945
|
-
|
|
986
|
+
toInternal?: Function;
|
|
987
|
+
toExternal?: Function;
|
|
946
988
|
externalName?: string;
|
|
947
989
|
env?: string[] | string;
|
|
948
990
|
additionalValues?: object;
|
|
@@ -962,7 +1004,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
962
1004
|
default?: any;
|
|
963
1005
|
set?: Function;
|
|
964
1006
|
get?: Function;
|
|
965
|
-
|
|
1007
|
+
toInternal?: Function;
|
|
1008
|
+
toExternal?: Function;
|
|
966
1009
|
externalName?: string;
|
|
967
1010
|
env?: string[] | string;
|
|
968
1011
|
additionalValues?: object;
|
|
@@ -984,7 +1027,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
984
1027
|
default?: any;
|
|
985
1028
|
set?: Function;
|
|
986
1029
|
get?: Function;
|
|
987
|
-
|
|
1030
|
+
toInternal?: Function;
|
|
1031
|
+
toExternal?: Function;
|
|
988
1032
|
values?: Set<any>;
|
|
989
1033
|
externalName?: string;
|
|
990
1034
|
env?: string[] | string;
|
|
@@ -1004,7 +1048,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1004
1048
|
description?: string;
|
|
1005
1049
|
set?: Function;
|
|
1006
1050
|
get?: Function;
|
|
1007
|
-
|
|
1051
|
+
toInternal?: Function;
|
|
1052
|
+
toExternal?: Function;
|
|
1008
1053
|
values?: Set<any>;
|
|
1009
1054
|
externalName?: string;
|
|
1010
1055
|
env?: string[] | string;
|
|
@@ -1024,7 +1069,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1024
1069
|
default?: any;
|
|
1025
1070
|
set?: Function;
|
|
1026
1071
|
get?: Function;
|
|
1027
|
-
|
|
1072
|
+
toInternal?: Function;
|
|
1073
|
+
toExternal?: Function;
|
|
1028
1074
|
values?: Set<any>;
|
|
1029
1075
|
externalName?: string;
|
|
1030
1076
|
env?: string[] | string;
|
|
@@ -1050,7 +1096,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1050
1096
|
default?: any;
|
|
1051
1097
|
set?: Function;
|
|
1052
1098
|
get?: Function;
|
|
1053
|
-
|
|
1099
|
+
toInternal?: Function;
|
|
1100
|
+
toExternal?: Function;
|
|
1054
1101
|
values?: Set<any>;
|
|
1055
1102
|
externalName?: string;
|
|
1056
1103
|
env?: string[] | string;
|
|
@@ -1080,7 +1127,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1080
1127
|
default?: any;
|
|
1081
1128
|
set?: Function;
|
|
1082
1129
|
get?: Function;
|
|
1083
|
-
|
|
1130
|
+
toInternal?: Function;
|
|
1131
|
+
toExternal?: Function;
|
|
1084
1132
|
values?: Set<any>;
|
|
1085
1133
|
externalName?: string;
|
|
1086
1134
|
env?: string[] | string;
|
|
@@ -1100,7 +1148,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1100
1148
|
default?: any;
|
|
1101
1149
|
set?: Function;
|
|
1102
1150
|
get?: Function;
|
|
1103
|
-
|
|
1151
|
+
toInternal?: Function;
|
|
1152
|
+
toExternal?: Function;
|
|
1104
1153
|
values?: Set<any>;
|
|
1105
1154
|
externalName?: string;
|
|
1106
1155
|
env?: string[] | string;
|
|
@@ -1132,7 +1181,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1132
1181
|
default?: any;
|
|
1133
1182
|
set?: Function;
|
|
1134
1183
|
get?: Function;
|
|
1135
|
-
|
|
1184
|
+
toInternal?: Function;
|
|
1185
|
+
toExternal?: Function;
|
|
1136
1186
|
values?: Set<any>;
|
|
1137
1187
|
externalName?: string;
|
|
1138
1188
|
env?: string[] | string;
|
|
@@ -1152,7 +1202,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1152
1202
|
default?: any;
|
|
1153
1203
|
set?: Function;
|
|
1154
1204
|
get?: Function;
|
|
1155
|
-
|
|
1205
|
+
toInternal?: Function;
|
|
1206
|
+
toExternal?: Function;
|
|
1156
1207
|
values?: Set<any>;
|
|
1157
1208
|
externalName?: string;
|
|
1158
1209
|
env?: string[] | string;
|
|
@@ -1172,7 +1223,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1172
1223
|
default?: any;
|
|
1173
1224
|
set?: Function;
|
|
1174
1225
|
get?: Function;
|
|
1175
|
-
|
|
1226
|
+
toInternal?: Function;
|
|
1227
|
+
toExternal?: Function;
|
|
1176
1228
|
values?: Set<any>;
|
|
1177
1229
|
externalName?: string;
|
|
1178
1230
|
env?: string[] | string;
|
|
@@ -1200,7 +1252,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1200
1252
|
default?: any;
|
|
1201
1253
|
set?: Function;
|
|
1202
1254
|
get?: Function;
|
|
1203
|
-
|
|
1255
|
+
toInternal?: Function;
|
|
1256
|
+
toExternal?: Function;
|
|
1204
1257
|
values?: Set<any>;
|
|
1205
1258
|
externalName?: string;
|
|
1206
1259
|
env?: string[] | string;
|
|
@@ -1222,7 +1275,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1222
1275
|
default?: any;
|
|
1223
1276
|
set?: Function;
|
|
1224
1277
|
get?: Function;
|
|
1225
|
-
|
|
1278
|
+
toInternal?: Function;
|
|
1279
|
+
toExternal?: Function;
|
|
1226
1280
|
values?: Set<any>;
|
|
1227
1281
|
externalName?: string;
|
|
1228
1282
|
env?: string[] | string;
|
|
@@ -1248,7 +1302,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1248
1302
|
default?: any;
|
|
1249
1303
|
set?: Function;
|
|
1250
1304
|
get?: Function;
|
|
1251
|
-
|
|
1305
|
+
toInternal?: Function;
|
|
1306
|
+
toExternal?: Function;
|
|
1252
1307
|
values?: Set<any>;
|
|
1253
1308
|
externalName?: string;
|
|
1254
1309
|
env?: string[] | string;
|
|
@@ -1268,7 +1323,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1268
1323
|
default?: any;
|
|
1269
1324
|
set?: Function;
|
|
1270
1325
|
get?: Function;
|
|
1271
|
-
|
|
1326
|
+
toInternal?: Function;
|
|
1327
|
+
toExternal?: Function;
|
|
1272
1328
|
values?: Set<any>;
|
|
1273
1329
|
externalName?: string;
|
|
1274
1330
|
env?: string[] | string;
|
|
@@ -1292,7 +1348,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1292
1348
|
default?: any;
|
|
1293
1349
|
set?: Function;
|
|
1294
1350
|
get?: Function;
|
|
1295
|
-
|
|
1351
|
+
toInternal?: Function;
|
|
1352
|
+
toExternal?: Function;
|
|
1296
1353
|
values?: Set<any>;
|
|
1297
1354
|
externalName?: string;
|
|
1298
1355
|
env?: string[] | string;
|
|
@@ -1312,7 +1369,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1312
1369
|
default?: any;
|
|
1313
1370
|
set?: Function;
|
|
1314
1371
|
get?: Function;
|
|
1315
|
-
|
|
1372
|
+
toInternal?: Function;
|
|
1373
|
+
toExternal?: Function;
|
|
1316
1374
|
values?: Set<any>;
|
|
1317
1375
|
externalName?: string;
|
|
1318
1376
|
env?: string[] | string;
|
|
@@ -1333,7 +1391,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1333
1391
|
default?: any;
|
|
1334
1392
|
set?: Function;
|
|
1335
1393
|
get?: Function;
|
|
1336
|
-
|
|
1394
|
+
toInternal?: Function;
|
|
1395
|
+
toExternal?: Function;
|
|
1337
1396
|
externalName?: string;
|
|
1338
1397
|
env?: string[] | string;
|
|
1339
1398
|
additionalValues?: object;
|
|
@@ -1353,7 +1412,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1353
1412
|
default?: any;
|
|
1354
1413
|
set?: Function;
|
|
1355
1414
|
get?: Function;
|
|
1356
|
-
|
|
1415
|
+
toInternal?: Function;
|
|
1416
|
+
toExternal?: Function;
|
|
1357
1417
|
externalName?: string;
|
|
1358
1418
|
env?: string[] | string;
|
|
1359
1419
|
additionalValues?: object;
|
|
@@ -1373,7 +1433,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1373
1433
|
default?: any;
|
|
1374
1434
|
set?: Function;
|
|
1375
1435
|
get?: Function;
|
|
1376
|
-
|
|
1436
|
+
toInternal?: Function;
|
|
1437
|
+
toExternal?: Function;
|
|
1377
1438
|
externalName?: string;
|
|
1378
1439
|
env?: string[] | string;
|
|
1379
1440
|
additionalValues?: object;
|
|
@@ -1395,7 +1456,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1395
1456
|
default?: any;
|
|
1396
1457
|
set?: Function;
|
|
1397
1458
|
get?: Function;
|
|
1398
|
-
|
|
1459
|
+
toInternal?: Function;
|
|
1460
|
+
toExternal?: Function;
|
|
1399
1461
|
values?: Set<any>;
|
|
1400
1462
|
externalName?: string;
|
|
1401
1463
|
env?: string[] | string;
|
|
@@ -1415,7 +1477,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1415
1477
|
description?: string;
|
|
1416
1478
|
set?: Function;
|
|
1417
1479
|
get?: Function;
|
|
1418
|
-
|
|
1480
|
+
toInternal?: Function;
|
|
1481
|
+
toExternal?: Function;
|
|
1419
1482
|
values?: Set<any>;
|
|
1420
1483
|
externalName?: string;
|
|
1421
1484
|
env?: string[] | string;
|
|
@@ -1436,7 +1499,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1436
1499
|
default?: any;
|
|
1437
1500
|
set?: Function;
|
|
1438
1501
|
get?: Function;
|
|
1439
|
-
|
|
1502
|
+
toInternal?: Function;
|
|
1503
|
+
toExternal?: Function;
|
|
1440
1504
|
values?: Set<any>;
|
|
1441
1505
|
externalName?: string;
|
|
1442
1506
|
env?: string[] | string;
|
|
@@ -1462,7 +1526,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1462
1526
|
default?: any;
|
|
1463
1527
|
set?: Function;
|
|
1464
1528
|
get?: Function;
|
|
1465
|
-
|
|
1529
|
+
toInternal?: Function;
|
|
1530
|
+
toExternal?: Function;
|
|
1466
1531
|
externalName?: string;
|
|
1467
1532
|
env?: string[] | string;
|
|
1468
1533
|
additionalValues?: object;
|
|
@@ -1482,7 +1547,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1482
1547
|
default?: any;
|
|
1483
1548
|
set?: Function;
|
|
1484
1549
|
get?: Function;
|
|
1485
|
-
|
|
1550
|
+
toInternal?: Function;
|
|
1551
|
+
toExternal?: Function;
|
|
1486
1552
|
externalName?: string;
|
|
1487
1553
|
env?: string[] | string;
|
|
1488
1554
|
additionalValues?: object;
|
|
@@ -1502,7 +1568,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1502
1568
|
default?: any;
|
|
1503
1569
|
set?: Function;
|
|
1504
1570
|
get?: Function;
|
|
1505
|
-
|
|
1571
|
+
toInternal?: Function;
|
|
1572
|
+
toExternal?: Function;
|
|
1506
1573
|
externalName?: string;
|
|
1507
1574
|
env?: string[] | string;
|
|
1508
1575
|
additionalValues?: object;
|
|
@@ -1524,7 +1591,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1524
1591
|
default?: any;
|
|
1525
1592
|
set?: Function;
|
|
1526
1593
|
get?: Function;
|
|
1527
|
-
|
|
1594
|
+
toInternal?: Function;
|
|
1595
|
+
toExternal?: Function;
|
|
1528
1596
|
values?: Set<any>;
|
|
1529
1597
|
externalName?: string;
|
|
1530
1598
|
env?: string[] | string;
|
|
@@ -1544,7 +1612,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1544
1612
|
description?: string;
|
|
1545
1613
|
set?: Function;
|
|
1546
1614
|
get?: Function;
|
|
1547
|
-
|
|
1615
|
+
toInternal?: Function;
|
|
1616
|
+
toExternal?: Function;
|
|
1548
1617
|
values?: Set<any>;
|
|
1549
1618
|
externalName?: string;
|
|
1550
1619
|
env?: string[] | string;
|
|
@@ -1564,7 +1633,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1564
1633
|
default?: any;
|
|
1565
1634
|
set?: Function;
|
|
1566
1635
|
get?: Function;
|
|
1567
|
-
|
|
1636
|
+
toInternal?: Function;
|
|
1637
|
+
toExternal?: Function;
|
|
1568
1638
|
values?: Set<any>;
|
|
1569
1639
|
externalName?: string;
|
|
1570
1640
|
env?: string[] | string;
|
|
@@ -1591,7 +1661,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1591
1661
|
default?: any;
|
|
1592
1662
|
set?: Function;
|
|
1593
1663
|
get?: Function;
|
|
1594
|
-
|
|
1664
|
+
toInternal?: Function;
|
|
1665
|
+
toExternal?: Function;
|
|
1595
1666
|
values?: Set<any>;
|
|
1596
1667
|
externalName?: string;
|
|
1597
1668
|
env?: string[] | string;
|