pmcf 3.18.4 → 3.18.6
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 +4 -4
- package/types/base.d.mts +1 -0
- package/types/cluster.d.mts +17 -0
- package/types/extra-source-service.d.mts +40 -0
- package/types/host.d.mts +8 -0
- package/types/location.d.mts +12 -0
- package/types/network-interfaces/ethernet.d.mts +46 -0
- package/types/network-interfaces/loopback.d.mts +44 -0
- package/types/network-interfaces/network-interface.d.mts +44 -0
- package/types/network-interfaces/tun.d.mts +44 -0
- package/types/network-interfaces/wireguard.d.mts +44 -0
- package/types/network-interfaces/wlan.d.mts +68 -0
- package/types/network-support.d.mts +8 -0
- package/types/network.d.mts +26 -0
- package/types/owner.d.mts +6 -0
- package/types/service.d.mts +23 -0
- package/types/services/bind.d.mts +57 -0
- package/types/services/chrony.d.mts +50 -0
- package/types/services/headscale.d.mts +30 -0
- package/types/services/influxdb.d.mts +31 -0
- package/types/services/kea.d.mts +35 -0
- package/types/services/mosquitto.d.mts +32 -0
- package/types/services/openldap.d.mts +30 -0
- package/types/services/systemd-journal-remote.d.mts +30 -0
- package/types/services/systemd-journal-upload.d.mts +30 -0
- package/types/services/systemd-journal.d.mts +30 -0
- package/types/services/systemd-resolved.d.mts +50 -0
- package/types/services/systemd-timesyncd.d.mts +50 -0
- package/types/services/tailscale.d.mts +30 -0
- package/types/subnet.d.mts +1 -0
|
@@ -13,6 +13,7 @@ export namespace EthernetNetworkInterfaceTypeDefinition {
|
|
|
13
13
|
mandatory: boolean;
|
|
14
14
|
private?: boolean;
|
|
15
15
|
credential?: boolean;
|
|
16
|
+
persistent?: boolean;
|
|
16
17
|
depends?: string;
|
|
17
18
|
description?: string;
|
|
18
19
|
default?: any;
|
|
@@ -45,6 +46,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
45
46
|
mandatory: boolean;
|
|
46
47
|
private?: boolean;
|
|
47
48
|
credential?: boolean;
|
|
49
|
+
persistent?: boolean;
|
|
48
50
|
depends?: string;
|
|
49
51
|
description?: string;
|
|
50
52
|
default?: any;
|
|
@@ -64,6 +66,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
64
66
|
collection: boolean;
|
|
65
67
|
private?: boolean;
|
|
66
68
|
credential?: boolean;
|
|
69
|
+
persistent?: boolean;
|
|
67
70
|
depends?: string;
|
|
68
71
|
description?: string;
|
|
69
72
|
default?: any;
|
|
@@ -95,6 +98,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
95
98
|
mandatory: boolean;
|
|
96
99
|
private?: boolean;
|
|
97
100
|
credential?: boolean;
|
|
101
|
+
persistent?: boolean;
|
|
98
102
|
depends?: string;
|
|
99
103
|
description?: string;
|
|
100
104
|
default?: any;
|
|
@@ -114,6 +118,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
114
118
|
mandatory: boolean;
|
|
115
119
|
private?: boolean;
|
|
116
120
|
credential?: boolean;
|
|
121
|
+
persistent?: boolean;
|
|
117
122
|
depends?: string;
|
|
118
123
|
description?: string;
|
|
119
124
|
default?: any;
|
|
@@ -133,6 +138,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
133
138
|
mandatory: boolean;
|
|
134
139
|
private?: boolean;
|
|
135
140
|
credential?: boolean;
|
|
141
|
+
persistent?: boolean;
|
|
136
142
|
depends?: string;
|
|
137
143
|
description?: string;
|
|
138
144
|
default?: any;
|
|
@@ -160,6 +166,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
160
166
|
mandatory: boolean;
|
|
161
167
|
private?: boolean;
|
|
162
168
|
credential?: boolean;
|
|
169
|
+
persistent?: boolean;
|
|
163
170
|
depends?: string;
|
|
164
171
|
description?: string;
|
|
165
172
|
default?: any;
|
|
@@ -181,6 +188,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
181
188
|
mandatory: boolean;
|
|
182
189
|
private?: boolean;
|
|
183
190
|
credential?: boolean;
|
|
191
|
+
persistent?: boolean;
|
|
184
192
|
depends?: string;
|
|
185
193
|
description?: string;
|
|
186
194
|
default?: any;
|
|
@@ -206,6 +214,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
206
214
|
collection: boolean;
|
|
207
215
|
private?: boolean;
|
|
208
216
|
credential?: boolean;
|
|
217
|
+
persistent?: boolean;
|
|
209
218
|
depends?: string;
|
|
210
219
|
description?: string;
|
|
211
220
|
default?: any;
|
|
@@ -229,6 +238,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
229
238
|
mandatory: boolean;
|
|
230
239
|
private?: boolean;
|
|
231
240
|
credential?: boolean;
|
|
241
|
+
persistent?: boolean;
|
|
232
242
|
depends?: string;
|
|
233
243
|
description?: string;
|
|
234
244
|
default?: any;
|
|
@@ -248,6 +258,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
248
258
|
collection: boolean;
|
|
249
259
|
private?: boolean;
|
|
250
260
|
credential?: boolean;
|
|
261
|
+
persistent?: boolean;
|
|
251
262
|
depends?: string;
|
|
252
263
|
description?: string;
|
|
253
264
|
default?: any;
|
|
@@ -268,6 +279,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
268
279
|
collection: boolean;
|
|
269
280
|
private?: boolean;
|
|
270
281
|
credential?: boolean;
|
|
282
|
+
persistent?: boolean;
|
|
271
283
|
depends?: string;
|
|
272
284
|
description?: string;
|
|
273
285
|
default?: any;
|
|
@@ -287,6 +299,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
287
299
|
collection: boolean;
|
|
288
300
|
private?: boolean;
|
|
289
301
|
credential?: boolean;
|
|
302
|
+
persistent?: boolean;
|
|
290
303
|
depends?: string;
|
|
291
304
|
description?: string;
|
|
292
305
|
default?: any;
|
|
@@ -306,6 +319,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
306
319
|
collection: boolean;
|
|
307
320
|
private?: boolean;
|
|
308
321
|
credential?: boolean;
|
|
322
|
+
persistent?: boolean;
|
|
309
323
|
depends?: string;
|
|
310
324
|
description?: string;
|
|
311
325
|
default?: any;
|
|
@@ -327,6 +341,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
327
341
|
collection: boolean;
|
|
328
342
|
private?: boolean;
|
|
329
343
|
credential?: boolean;
|
|
344
|
+
persistent?: boolean;
|
|
330
345
|
depends?: string;
|
|
331
346
|
description?: string;
|
|
332
347
|
default?: any;
|
|
@@ -347,6 +362,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
347
362
|
collection: boolean;
|
|
348
363
|
private?: boolean;
|
|
349
364
|
credential?: boolean;
|
|
365
|
+
persistent?: boolean;
|
|
350
366
|
depends?: string;
|
|
351
367
|
description?: string;
|
|
352
368
|
set?: Function;
|
|
@@ -366,6 +382,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
366
382
|
collection: boolean;
|
|
367
383
|
private?: boolean;
|
|
368
384
|
credential?: boolean;
|
|
385
|
+
persistent?: boolean;
|
|
369
386
|
depends?: string;
|
|
370
387
|
description?: string;
|
|
371
388
|
default?: any;
|
|
@@ -391,6 +408,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
391
408
|
collection: boolean;
|
|
392
409
|
private?: boolean;
|
|
393
410
|
credential?: boolean;
|
|
411
|
+
persistent?: boolean;
|
|
394
412
|
depends?: string;
|
|
395
413
|
description?: string;
|
|
396
414
|
default?: any;
|
|
@@ -410,6 +428,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
410
428
|
collection: boolean;
|
|
411
429
|
private?: boolean;
|
|
412
430
|
credential?: boolean;
|
|
431
|
+
persistent?: boolean;
|
|
413
432
|
depends?: string;
|
|
414
433
|
description?: string;
|
|
415
434
|
default?: any;
|
|
@@ -429,6 +448,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
429
448
|
collection: boolean;
|
|
430
449
|
private?: boolean;
|
|
431
450
|
credential?: boolean;
|
|
451
|
+
persistent?: boolean;
|
|
432
452
|
depends?: string;
|
|
433
453
|
description?: string;
|
|
434
454
|
default?: any;
|
|
@@ -450,6 +470,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
450
470
|
collection: boolean;
|
|
451
471
|
private?: boolean;
|
|
452
472
|
credential?: boolean;
|
|
473
|
+
persistent?: boolean;
|
|
453
474
|
depends?: string;
|
|
454
475
|
description?: string;
|
|
455
476
|
default?: any;
|
|
@@ -470,6 +491,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
470
491
|
collection: boolean;
|
|
471
492
|
private?: boolean;
|
|
472
493
|
credential?: boolean;
|
|
494
|
+
persistent?: boolean;
|
|
473
495
|
depends?: string;
|
|
474
496
|
description?: string;
|
|
475
497
|
set?: Function;
|
|
@@ -488,6 +510,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
488
510
|
collection: boolean;
|
|
489
511
|
private?: boolean;
|
|
490
512
|
credential?: boolean;
|
|
513
|
+
persistent?: boolean;
|
|
491
514
|
depends?: string;
|
|
492
515
|
description?: string;
|
|
493
516
|
default?: any;
|
|
@@ -518,6 +541,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
518
541
|
mandatory: boolean;
|
|
519
542
|
private?: boolean;
|
|
520
543
|
credential?: boolean;
|
|
544
|
+
persistent?: boolean;
|
|
521
545
|
depends?: string;
|
|
522
546
|
description?: string;
|
|
523
547
|
default?: any;
|
|
@@ -537,6 +561,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
537
561
|
collection: boolean;
|
|
538
562
|
private?: boolean;
|
|
539
563
|
credential?: boolean;
|
|
564
|
+
persistent?: boolean;
|
|
540
565
|
depends?: string;
|
|
541
566
|
description?: string;
|
|
542
567
|
default?: any;
|
|
@@ -568,6 +593,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
568
593
|
mandatory: boolean;
|
|
569
594
|
private?: boolean;
|
|
570
595
|
credential?: boolean;
|
|
596
|
+
persistent?: boolean;
|
|
571
597
|
depends?: string;
|
|
572
598
|
description?: string;
|
|
573
599
|
default?: any;
|
|
@@ -587,6 +613,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
587
613
|
mandatory: boolean;
|
|
588
614
|
private?: boolean;
|
|
589
615
|
credential?: boolean;
|
|
616
|
+
persistent?: boolean;
|
|
590
617
|
depends?: string;
|
|
591
618
|
description?: string;
|
|
592
619
|
default?: any;
|
|
@@ -606,6 +633,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
606
633
|
mandatory: boolean;
|
|
607
634
|
private?: boolean;
|
|
608
635
|
credential?: boolean;
|
|
636
|
+
persistent?: boolean;
|
|
609
637
|
depends?: string;
|
|
610
638
|
description?: string;
|
|
611
639
|
default?: any;
|
|
@@ -633,6 +661,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
633
661
|
mandatory: boolean;
|
|
634
662
|
private?: boolean;
|
|
635
663
|
credential?: boolean;
|
|
664
|
+
persistent?: boolean;
|
|
636
665
|
depends?: string;
|
|
637
666
|
description?: string;
|
|
638
667
|
default?: any;
|
|
@@ -654,6 +683,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
654
683
|
mandatory: boolean;
|
|
655
684
|
private?: boolean;
|
|
656
685
|
credential?: boolean;
|
|
686
|
+
persistent?: boolean;
|
|
657
687
|
depends?: string;
|
|
658
688
|
description?: string;
|
|
659
689
|
default?: any;
|
|
@@ -679,6 +709,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
679
709
|
collection: boolean;
|
|
680
710
|
private?: boolean;
|
|
681
711
|
credential?: boolean;
|
|
712
|
+
persistent?: boolean;
|
|
682
713
|
depends?: string;
|
|
683
714
|
description?: string;
|
|
684
715
|
default?: any;
|
|
@@ -702,6 +733,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
702
733
|
mandatory: boolean;
|
|
703
734
|
private?: boolean;
|
|
704
735
|
credential?: boolean;
|
|
736
|
+
persistent?: boolean;
|
|
705
737
|
depends?: string;
|
|
706
738
|
description?: string;
|
|
707
739
|
default?: any;
|
|
@@ -721,6 +753,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
721
753
|
collection: boolean;
|
|
722
754
|
private?: boolean;
|
|
723
755
|
credential?: boolean;
|
|
756
|
+
persistent?: boolean;
|
|
724
757
|
depends?: string;
|
|
725
758
|
description?: string;
|
|
726
759
|
default?: any;
|
|
@@ -741,6 +774,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
741
774
|
collection: boolean;
|
|
742
775
|
private?: boolean;
|
|
743
776
|
credential?: boolean;
|
|
777
|
+
persistent?: boolean;
|
|
744
778
|
depends?: string;
|
|
745
779
|
description?: string;
|
|
746
780
|
default?: any;
|
|
@@ -760,6 +794,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
760
794
|
collection: boolean;
|
|
761
795
|
private?: boolean;
|
|
762
796
|
credential?: boolean;
|
|
797
|
+
persistent?: boolean;
|
|
763
798
|
depends?: string;
|
|
764
799
|
description?: string;
|
|
765
800
|
default?: any;
|
|
@@ -779,6 +814,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
779
814
|
collection: boolean;
|
|
780
815
|
private?: boolean;
|
|
781
816
|
credential?: boolean;
|
|
817
|
+
persistent?: boolean;
|
|
782
818
|
depends?: string;
|
|
783
819
|
description?: string;
|
|
784
820
|
default?: any;
|
|
@@ -800,6 +836,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
800
836
|
collection: boolean;
|
|
801
837
|
private?: boolean;
|
|
802
838
|
credential?: boolean;
|
|
839
|
+
persistent?: boolean;
|
|
803
840
|
depends?: string;
|
|
804
841
|
description?: string;
|
|
805
842
|
default?: any;
|
|
@@ -820,6 +857,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
820
857
|
collection: boolean;
|
|
821
858
|
private?: boolean;
|
|
822
859
|
credential?: boolean;
|
|
860
|
+
persistent?: boolean;
|
|
823
861
|
depends?: string;
|
|
824
862
|
description?: string;
|
|
825
863
|
set?: Function;
|
|
@@ -839,6 +877,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
839
877
|
collection: boolean;
|
|
840
878
|
private?: boolean;
|
|
841
879
|
credential?: boolean;
|
|
880
|
+
persistent?: boolean;
|
|
842
881
|
depends?: string;
|
|
843
882
|
description?: string;
|
|
844
883
|
default?: any;
|
|
@@ -864,6 +903,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
864
903
|
collection: boolean;
|
|
865
904
|
private?: boolean;
|
|
866
905
|
credential?: boolean;
|
|
906
|
+
persistent?: boolean;
|
|
867
907
|
depends?: string;
|
|
868
908
|
description?: string;
|
|
869
909
|
default?: any;
|
|
@@ -883,6 +923,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
883
923
|
collection: boolean;
|
|
884
924
|
private?: boolean;
|
|
885
925
|
credential?: boolean;
|
|
926
|
+
persistent?: boolean;
|
|
886
927
|
depends?: string;
|
|
887
928
|
description?: string;
|
|
888
929
|
default?: any;
|
|
@@ -902,6 +943,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
902
943
|
collection: boolean;
|
|
903
944
|
private?: boolean;
|
|
904
945
|
credential?: boolean;
|
|
946
|
+
persistent?: boolean;
|
|
905
947
|
depends?: string;
|
|
906
948
|
description?: string;
|
|
907
949
|
default?: any;
|
|
@@ -923,6 +965,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
923
965
|
collection: boolean;
|
|
924
966
|
private?: boolean;
|
|
925
967
|
credential?: boolean;
|
|
968
|
+
persistent?: boolean;
|
|
926
969
|
depends?: string;
|
|
927
970
|
description?: string;
|
|
928
971
|
default?: any;
|
|
@@ -943,6 +986,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
943
986
|
collection: boolean;
|
|
944
987
|
private?: boolean;
|
|
945
988
|
credential?: boolean;
|
|
989
|
+
persistent?: boolean;
|
|
946
990
|
depends?: string;
|
|
947
991
|
description?: string;
|
|
948
992
|
set?: Function;
|
|
@@ -961,6 +1005,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
961
1005
|
collection: boolean;
|
|
962
1006
|
private?: boolean;
|
|
963
1007
|
credential?: boolean;
|
|
1008
|
+
persistent?: boolean;
|
|
964
1009
|
depends?: string;
|
|
965
1010
|
description?: string;
|
|
966
1011
|
default?: any;
|
|
@@ -986,6 +1031,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
986
1031
|
mandatory: boolean;
|
|
987
1032
|
private?: boolean;
|
|
988
1033
|
credential?: boolean;
|
|
1034
|
+
persistent?: boolean;
|
|
989
1035
|
depends?: string;
|
|
990
1036
|
description?: string;
|
|
991
1037
|
default?: any;
|