pmcf 3.18.1 → 3.18.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/README.md +0 -1
- package/package.json +5 -5
- 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
|
@@ -18,6 +18,7 @@ export class BindService extends ExtraSourceService {
|
|
|
18
18
|
writable: boolean;
|
|
19
19
|
mandatory: boolean;
|
|
20
20
|
private?: boolean;
|
|
21
|
+
credential?: boolean;
|
|
21
22
|
depends?: string;
|
|
22
23
|
description?: string;
|
|
23
24
|
default?: any;
|
|
@@ -36,6 +37,7 @@ export class BindService extends ExtraSourceService {
|
|
|
36
37
|
writable: boolean;
|
|
37
38
|
mandatory: boolean;
|
|
38
39
|
private?: boolean;
|
|
40
|
+
credential?: boolean;
|
|
39
41
|
depends?: string;
|
|
40
42
|
description?: string;
|
|
41
43
|
default?: any;
|
|
@@ -56,6 +58,7 @@ export class BindService extends ExtraSourceService {
|
|
|
56
58
|
mandatory: boolean;
|
|
57
59
|
collection: boolean;
|
|
58
60
|
private?: boolean;
|
|
61
|
+
credential?: boolean;
|
|
59
62
|
depends?: string;
|
|
60
63
|
description?: string;
|
|
61
64
|
default?: any;
|
|
@@ -76,6 +79,7 @@ export class BindService extends ExtraSourceService {
|
|
|
76
79
|
mandatory: boolean;
|
|
77
80
|
collection: boolean;
|
|
78
81
|
private?: boolean;
|
|
82
|
+
credential?: boolean;
|
|
79
83
|
depends?: string;
|
|
80
84
|
description?: string;
|
|
81
85
|
default?: any;
|
|
@@ -98,6 +102,7 @@ export class BindService extends ExtraSourceService {
|
|
|
98
102
|
mandatory: boolean;
|
|
99
103
|
collection: boolean;
|
|
100
104
|
private?: boolean;
|
|
105
|
+
credential?: boolean;
|
|
101
106
|
depends?: string;
|
|
102
107
|
description?: string;
|
|
103
108
|
default?: any;
|
|
@@ -116,6 +121,7 @@ export class BindService extends ExtraSourceService {
|
|
|
116
121
|
mandatory: boolean;
|
|
117
122
|
collection: boolean;
|
|
118
123
|
private?: boolean;
|
|
124
|
+
credential?: boolean;
|
|
119
125
|
depends?: string;
|
|
120
126
|
description?: string;
|
|
121
127
|
default?: any;
|
|
@@ -136,6 +142,7 @@ export class BindService extends ExtraSourceService {
|
|
|
136
142
|
writable: boolean;
|
|
137
143
|
mandatory: boolean;
|
|
138
144
|
private?: boolean;
|
|
145
|
+
credential?: boolean;
|
|
139
146
|
depends?: string;
|
|
140
147
|
description?: string;
|
|
141
148
|
default?: any;
|
|
@@ -156,6 +163,7 @@ export class BindService extends ExtraSourceService {
|
|
|
156
163
|
mandatory: boolean;
|
|
157
164
|
collection: boolean;
|
|
158
165
|
private?: boolean;
|
|
166
|
+
credential?: boolean;
|
|
159
167
|
depends?: string;
|
|
160
168
|
description?: string;
|
|
161
169
|
default?: any;
|
|
@@ -186,6 +194,7 @@ export class BindService extends ExtraSourceService {
|
|
|
186
194
|
mandatory: boolean;
|
|
187
195
|
collection: boolean;
|
|
188
196
|
private?: boolean;
|
|
197
|
+
credential?: boolean;
|
|
189
198
|
depends?: string;
|
|
190
199
|
description?: string;
|
|
191
200
|
default?: any;
|
|
@@ -207,6 +216,7 @@ export class BindService extends ExtraSourceService {
|
|
|
207
216
|
mandatory: boolean;
|
|
208
217
|
collection: boolean;
|
|
209
218
|
private?: boolean;
|
|
219
|
+
credential?: boolean;
|
|
210
220
|
depends?: string;
|
|
211
221
|
description?: string;
|
|
212
222
|
default?: any;
|
|
@@ -227,6 +237,7 @@ export class BindService extends ExtraSourceService {
|
|
|
227
237
|
mandatory: boolean;
|
|
228
238
|
collection: boolean;
|
|
229
239
|
private?: boolean;
|
|
240
|
+
credential?: boolean;
|
|
230
241
|
depends?: string;
|
|
231
242
|
description?: string;
|
|
232
243
|
default?: any;
|
|
@@ -259,6 +270,7 @@ export class BindService extends ExtraSourceService {
|
|
|
259
270
|
writable: boolean;
|
|
260
271
|
mandatory: boolean;
|
|
261
272
|
private?: boolean;
|
|
273
|
+
credential?: boolean;
|
|
262
274
|
depends?: string;
|
|
263
275
|
description?: string;
|
|
264
276
|
default?: any;
|
|
@@ -277,6 +289,7 @@ export class BindService extends ExtraSourceService {
|
|
|
277
289
|
writable: boolean;
|
|
278
290
|
mandatory: boolean;
|
|
279
291
|
private?: boolean;
|
|
292
|
+
credential?: boolean;
|
|
280
293
|
depends?: string;
|
|
281
294
|
description?: string;
|
|
282
295
|
default?: any;
|
|
@@ -297,6 +310,7 @@ export class BindService extends ExtraSourceService {
|
|
|
297
310
|
mandatory: boolean;
|
|
298
311
|
collection: boolean;
|
|
299
312
|
private?: boolean;
|
|
313
|
+
credential?: boolean;
|
|
300
314
|
depends?: string;
|
|
301
315
|
description?: string;
|
|
302
316
|
default?: any;
|
|
@@ -317,6 +331,7 @@ export class BindService extends ExtraSourceService {
|
|
|
317
331
|
mandatory: boolean;
|
|
318
332
|
collection: boolean;
|
|
319
333
|
private?: boolean;
|
|
334
|
+
credential?: boolean;
|
|
320
335
|
depends?: string;
|
|
321
336
|
description?: string;
|
|
322
337
|
default?: any;
|
|
@@ -339,6 +354,7 @@ export class BindService extends ExtraSourceService {
|
|
|
339
354
|
mandatory: boolean;
|
|
340
355
|
collection: boolean;
|
|
341
356
|
private?: boolean;
|
|
357
|
+
credential?: boolean;
|
|
342
358
|
depends?: string;
|
|
343
359
|
description?: string;
|
|
344
360
|
default?: any;
|
|
@@ -357,6 +373,7 @@ export class BindService extends ExtraSourceService {
|
|
|
357
373
|
mandatory: boolean;
|
|
358
374
|
collection: boolean;
|
|
359
375
|
private?: boolean;
|
|
376
|
+
credential?: boolean;
|
|
360
377
|
depends?: string;
|
|
361
378
|
description?: string;
|
|
362
379
|
default?: any;
|
|
@@ -377,6 +394,7 @@ export class BindService extends ExtraSourceService {
|
|
|
377
394
|
writable: boolean;
|
|
378
395
|
mandatory: boolean;
|
|
379
396
|
private?: boolean;
|
|
397
|
+
credential?: boolean;
|
|
380
398
|
depends?: string;
|
|
381
399
|
description?: string;
|
|
382
400
|
default?: any;
|
|
@@ -397,6 +415,7 @@ export class BindService extends ExtraSourceService {
|
|
|
397
415
|
mandatory: boolean;
|
|
398
416
|
collection: boolean;
|
|
399
417
|
private?: boolean;
|
|
418
|
+
credential?: boolean;
|
|
400
419
|
depends?: string;
|
|
401
420
|
description?: string;
|
|
402
421
|
default?: any;
|
|
@@ -427,6 +446,7 @@ export class BindService extends ExtraSourceService {
|
|
|
427
446
|
mandatory: boolean;
|
|
428
447
|
collection: boolean;
|
|
429
448
|
private?: boolean;
|
|
449
|
+
credential?: boolean;
|
|
430
450
|
depends?: string;
|
|
431
451
|
description?: string;
|
|
432
452
|
default?: any;
|
|
@@ -448,6 +468,7 @@ export class BindService extends ExtraSourceService {
|
|
|
448
468
|
mandatory: boolean;
|
|
449
469
|
collection: boolean;
|
|
450
470
|
private?: boolean;
|
|
471
|
+
credential?: boolean;
|
|
451
472
|
depends?: string;
|
|
452
473
|
description?: string;
|
|
453
474
|
default?: any;
|
|
@@ -468,6 +489,7 @@ export class BindService extends ExtraSourceService {
|
|
|
468
489
|
mandatory: boolean;
|
|
469
490
|
collection: boolean;
|
|
470
491
|
private?: boolean;
|
|
492
|
+
credential?: boolean;
|
|
471
493
|
depends?: string;
|
|
472
494
|
description?: string;
|
|
473
495
|
default?: any;
|
|
@@ -498,6 +520,7 @@ export class BindService extends ExtraSourceService {
|
|
|
498
520
|
writable: boolean;
|
|
499
521
|
mandatory: boolean;
|
|
500
522
|
private?: boolean;
|
|
523
|
+
credential?: boolean;
|
|
501
524
|
depends?: string;
|
|
502
525
|
description?: string;
|
|
503
526
|
default?: any;
|
|
@@ -516,6 +539,7 @@ export class BindService extends ExtraSourceService {
|
|
|
516
539
|
writable: boolean;
|
|
517
540
|
mandatory: boolean;
|
|
518
541
|
private?: boolean;
|
|
542
|
+
credential?: boolean;
|
|
519
543
|
depends?: string;
|
|
520
544
|
description?: string;
|
|
521
545
|
default?: any;
|
|
@@ -536,6 +560,7 @@ export class BindService extends ExtraSourceService {
|
|
|
536
560
|
mandatory: boolean;
|
|
537
561
|
collection: boolean;
|
|
538
562
|
private?: boolean;
|
|
563
|
+
credential?: boolean;
|
|
539
564
|
depends?: string;
|
|
540
565
|
description?: string;
|
|
541
566
|
default?: any;
|
|
@@ -556,6 +581,7 @@ export class BindService extends ExtraSourceService {
|
|
|
556
581
|
mandatory: boolean;
|
|
557
582
|
collection: boolean;
|
|
558
583
|
private?: boolean;
|
|
584
|
+
credential?: boolean;
|
|
559
585
|
depends?: string;
|
|
560
586
|
description?: string;
|
|
561
587
|
default?: any;
|
|
@@ -578,6 +604,7 @@ export class BindService extends ExtraSourceService {
|
|
|
578
604
|
mandatory: boolean;
|
|
579
605
|
collection: boolean;
|
|
580
606
|
private?: boolean;
|
|
607
|
+
credential?: boolean;
|
|
581
608
|
depends?: string;
|
|
582
609
|
description?: string;
|
|
583
610
|
default?: any;
|
|
@@ -596,6 +623,7 @@ export class BindService extends ExtraSourceService {
|
|
|
596
623
|
mandatory: boolean;
|
|
597
624
|
collection: boolean;
|
|
598
625
|
private?: boolean;
|
|
626
|
+
credential?: boolean;
|
|
599
627
|
depends?: string;
|
|
600
628
|
description?: string;
|
|
601
629
|
default?: any;
|
|
@@ -616,6 +644,7 @@ export class BindService extends ExtraSourceService {
|
|
|
616
644
|
writable: boolean;
|
|
617
645
|
mandatory: boolean;
|
|
618
646
|
private?: boolean;
|
|
647
|
+
credential?: boolean;
|
|
619
648
|
depends?: string;
|
|
620
649
|
description?: string;
|
|
621
650
|
default?: any;
|
|
@@ -636,6 +665,7 @@ export class BindService extends ExtraSourceService {
|
|
|
636
665
|
mandatory: boolean;
|
|
637
666
|
collection: boolean;
|
|
638
667
|
private?: boolean;
|
|
668
|
+
credential?: boolean;
|
|
639
669
|
depends?: string;
|
|
640
670
|
description?: string;
|
|
641
671
|
default?: any;
|
|
@@ -661,6 +691,7 @@ export class BindService extends ExtraSourceService {
|
|
|
661
691
|
writable: boolean;
|
|
662
692
|
mandatory: boolean;
|
|
663
693
|
private?: boolean;
|
|
694
|
+
credential?: boolean;
|
|
664
695
|
depends?: string;
|
|
665
696
|
description?: string;
|
|
666
697
|
default?: any;
|
|
@@ -689,6 +720,7 @@ export class BindService extends ExtraSourceService {
|
|
|
689
720
|
writable: boolean;
|
|
690
721
|
mandatory: boolean;
|
|
691
722
|
private?: boolean;
|
|
723
|
+
credential?: boolean;
|
|
692
724
|
depends?: string;
|
|
693
725
|
description?: string;
|
|
694
726
|
default?: any;
|
|
@@ -707,6 +739,7 @@ export class BindService extends ExtraSourceService {
|
|
|
707
739
|
writable: boolean;
|
|
708
740
|
mandatory: boolean;
|
|
709
741
|
private?: boolean;
|
|
742
|
+
credential?: boolean;
|
|
710
743
|
depends?: string;
|
|
711
744
|
description?: string;
|
|
712
745
|
default?: any;
|
|
@@ -727,6 +760,7 @@ export class BindService extends ExtraSourceService {
|
|
|
727
760
|
mandatory: boolean;
|
|
728
761
|
collection: boolean;
|
|
729
762
|
private?: boolean;
|
|
763
|
+
credential?: boolean;
|
|
730
764
|
depends?: string;
|
|
731
765
|
description?: string;
|
|
732
766
|
default?: any;
|
|
@@ -747,6 +781,7 @@ export class BindService extends ExtraSourceService {
|
|
|
747
781
|
mandatory: boolean;
|
|
748
782
|
collection: boolean;
|
|
749
783
|
private?: boolean;
|
|
784
|
+
credential?: boolean;
|
|
750
785
|
depends?: string;
|
|
751
786
|
description?: string;
|
|
752
787
|
default?: any;
|
|
@@ -769,6 +804,7 @@ export class BindService extends ExtraSourceService {
|
|
|
769
804
|
mandatory: boolean;
|
|
770
805
|
collection: boolean;
|
|
771
806
|
private?: boolean;
|
|
807
|
+
credential?: boolean;
|
|
772
808
|
depends?: string;
|
|
773
809
|
description?: string;
|
|
774
810
|
default?: any;
|
|
@@ -787,6 +823,7 @@ export class BindService extends ExtraSourceService {
|
|
|
787
823
|
mandatory: boolean;
|
|
788
824
|
collection: boolean;
|
|
789
825
|
private?: boolean;
|
|
826
|
+
credential?: boolean;
|
|
790
827
|
depends?: string;
|
|
791
828
|
description?: string;
|
|
792
829
|
default?: any;
|
|
@@ -807,6 +844,7 @@ export class BindService extends ExtraSourceService {
|
|
|
807
844
|
writable: boolean;
|
|
808
845
|
mandatory: boolean;
|
|
809
846
|
private?: boolean;
|
|
847
|
+
credential?: boolean;
|
|
810
848
|
depends?: string;
|
|
811
849
|
description?: string;
|
|
812
850
|
default?: any;
|
|
@@ -827,6 +865,7 @@ export class BindService extends ExtraSourceService {
|
|
|
827
865
|
mandatory: boolean;
|
|
828
866
|
collection: boolean;
|
|
829
867
|
private?: boolean;
|
|
868
|
+
credential?: boolean;
|
|
830
869
|
depends?: string;
|
|
831
870
|
description?: string;
|
|
832
871
|
default?: any;
|
|
@@ -857,6 +896,7 @@ export class BindService extends ExtraSourceService {
|
|
|
857
896
|
mandatory: boolean;
|
|
858
897
|
collection: boolean;
|
|
859
898
|
private?: boolean;
|
|
899
|
+
credential?: boolean;
|
|
860
900
|
depends?: string;
|
|
861
901
|
description?: string;
|
|
862
902
|
default?: any;
|
|
@@ -878,6 +918,7 @@ export class BindService extends ExtraSourceService {
|
|
|
878
918
|
mandatory: boolean;
|
|
879
919
|
collection: boolean;
|
|
880
920
|
private?: boolean;
|
|
921
|
+
credential?: boolean;
|
|
881
922
|
depends?: string;
|
|
882
923
|
description?: string;
|
|
883
924
|
default?: any;
|
|
@@ -898,6 +939,7 @@ export class BindService extends ExtraSourceService {
|
|
|
898
939
|
mandatory: boolean;
|
|
899
940
|
collection: boolean;
|
|
900
941
|
private?: boolean;
|
|
942
|
+
credential?: boolean;
|
|
901
943
|
depends?: string;
|
|
902
944
|
description?: string;
|
|
903
945
|
default?: any;
|
|
@@ -928,6 +970,7 @@ export class BindService extends ExtraSourceService {
|
|
|
928
970
|
writable: boolean;
|
|
929
971
|
mandatory: boolean;
|
|
930
972
|
private?: boolean;
|
|
973
|
+
credential?: boolean;
|
|
931
974
|
depends?: string;
|
|
932
975
|
description?: string;
|
|
933
976
|
default?: any;
|
|
@@ -946,6 +989,7 @@ export class BindService extends ExtraSourceService {
|
|
|
946
989
|
writable: boolean;
|
|
947
990
|
mandatory: boolean;
|
|
948
991
|
private?: boolean;
|
|
992
|
+
credential?: boolean;
|
|
949
993
|
depends?: string;
|
|
950
994
|
description?: string;
|
|
951
995
|
default?: any;
|
|
@@ -966,6 +1010,7 @@ export class BindService extends ExtraSourceService {
|
|
|
966
1010
|
mandatory: boolean;
|
|
967
1011
|
collection: boolean;
|
|
968
1012
|
private?: boolean;
|
|
1013
|
+
credential?: boolean;
|
|
969
1014
|
depends?: string;
|
|
970
1015
|
description?: string;
|
|
971
1016
|
default?: any;
|
|
@@ -986,6 +1031,7 @@ export class BindService extends ExtraSourceService {
|
|
|
986
1031
|
mandatory: boolean;
|
|
987
1032
|
collection: boolean;
|
|
988
1033
|
private?: boolean;
|
|
1034
|
+
credential?: boolean;
|
|
989
1035
|
depends?: string;
|
|
990
1036
|
description?: string;
|
|
991
1037
|
default?: any;
|
|
@@ -1008,6 +1054,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1008
1054
|
mandatory: boolean;
|
|
1009
1055
|
collection: boolean;
|
|
1010
1056
|
private?: boolean;
|
|
1057
|
+
credential?: boolean;
|
|
1011
1058
|
depends?: string;
|
|
1012
1059
|
description?: string;
|
|
1013
1060
|
default?: any;
|
|
@@ -1026,6 +1073,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1026
1073
|
mandatory: boolean;
|
|
1027
1074
|
collection: boolean;
|
|
1028
1075
|
private?: boolean;
|
|
1076
|
+
credential?: boolean;
|
|
1029
1077
|
depends?: string;
|
|
1030
1078
|
description?: string;
|
|
1031
1079
|
default?: any;
|
|
@@ -1046,6 +1094,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1046
1094
|
writable: boolean;
|
|
1047
1095
|
mandatory: boolean;
|
|
1048
1096
|
private?: boolean;
|
|
1097
|
+
credential?: boolean;
|
|
1049
1098
|
depends?: string;
|
|
1050
1099
|
description?: string;
|
|
1051
1100
|
default?: any;
|
|
@@ -1066,6 +1115,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1066
1115
|
mandatory: boolean;
|
|
1067
1116
|
collection: boolean;
|
|
1068
1117
|
private?: boolean;
|
|
1118
|
+
credential?: boolean;
|
|
1069
1119
|
depends?: string;
|
|
1070
1120
|
description?: string;
|
|
1071
1121
|
default?: any;
|
|
@@ -1102,6 +1152,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1102
1152
|
writable: boolean;
|
|
1103
1153
|
mandatory: boolean;
|
|
1104
1154
|
private?: boolean;
|
|
1155
|
+
credential?: boolean;
|
|
1105
1156
|
depends?: string;
|
|
1106
1157
|
description?: string;
|
|
1107
1158
|
default?: any;
|
|
@@ -1120,6 +1171,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1120
1171
|
writable: boolean;
|
|
1121
1172
|
mandatory: boolean;
|
|
1122
1173
|
private?: boolean;
|
|
1174
|
+
credential?: boolean;
|
|
1123
1175
|
depends?: string;
|
|
1124
1176
|
description?: string;
|
|
1125
1177
|
default?: any;
|
|
@@ -1143,6 +1195,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1143
1195
|
writable: boolean;
|
|
1144
1196
|
mandatory: boolean;
|
|
1145
1197
|
private?: boolean;
|
|
1198
|
+
credential?: boolean;
|
|
1146
1199
|
depends?: string;
|
|
1147
1200
|
description?: string;
|
|
1148
1201
|
default?: any;
|
|
@@ -1165,6 +1218,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1165
1218
|
mandatory: boolean;
|
|
1166
1219
|
collection: boolean;
|
|
1167
1220
|
private?: boolean;
|
|
1221
|
+
credential?: boolean;
|
|
1168
1222
|
depends?: string;
|
|
1169
1223
|
description?: string;
|
|
1170
1224
|
set?: Function;
|
|
@@ -1183,6 +1237,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1183
1237
|
mandatory: boolean;
|
|
1184
1238
|
collection: boolean;
|
|
1185
1239
|
private?: boolean;
|
|
1240
|
+
credential?: boolean;
|
|
1186
1241
|
depends?: string;
|
|
1187
1242
|
description?: string;
|
|
1188
1243
|
set?: Function;
|
|
@@ -1201,6 +1256,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1201
1256
|
mandatory: boolean;
|
|
1202
1257
|
collection: boolean;
|
|
1203
1258
|
private?: boolean;
|
|
1259
|
+
credential?: boolean;
|
|
1204
1260
|
depends?: string;
|
|
1205
1261
|
description?: string;
|
|
1206
1262
|
set?: Function;
|
|
@@ -1219,6 +1275,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1219
1275
|
mandatory: boolean;
|
|
1220
1276
|
collection: boolean;
|
|
1221
1277
|
private?: boolean;
|
|
1278
|
+
credential?: boolean;
|
|
1222
1279
|
depends?: string;
|
|
1223
1280
|
description?: string;
|
|
1224
1281
|
set?: Function;
|