pmcf 3.18.0 → 3.18.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/package.json +3 -3
- 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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 ChronyService 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;
|
|
@@ -16,6 +16,7 @@ export class HeadscaleService extends Service {
|
|
|
16
16
|
writable: boolean;
|
|
17
17
|
mandatory: boolean;
|
|
18
18
|
private?: boolean;
|
|
19
|
+
credential?: boolean;
|
|
19
20
|
depends?: string;
|
|
20
21
|
description?: string;
|
|
21
22
|
default?: any;
|
|
@@ -34,6 +35,7 @@ export class HeadscaleService extends Service {
|
|
|
34
35
|
writable: boolean;
|
|
35
36
|
mandatory: boolean;
|
|
36
37
|
private?: boolean;
|
|
38
|
+
credential?: boolean;
|
|
37
39
|
depends?: string;
|
|
38
40
|
description?: string;
|
|
39
41
|
default?: any;
|
|
@@ -54,6 +56,7 @@ export class HeadscaleService extends Service {
|
|
|
54
56
|
mandatory: boolean;
|
|
55
57
|
collection: boolean;
|
|
56
58
|
private?: boolean;
|
|
59
|
+
credential?: boolean;
|
|
57
60
|
depends?: string;
|
|
58
61
|
description?: string;
|
|
59
62
|
default?: any;
|
|
@@ -74,6 +77,7 @@ export class HeadscaleService extends Service {
|
|
|
74
77
|
mandatory: boolean;
|
|
75
78
|
collection: boolean;
|
|
76
79
|
private?: boolean;
|
|
80
|
+
credential?: boolean;
|
|
77
81
|
depends?: string;
|
|
78
82
|
description?: string;
|
|
79
83
|
default?: any;
|
|
@@ -96,6 +100,7 @@ export class HeadscaleService extends Service {
|
|
|
96
100
|
mandatory: boolean;
|
|
97
101
|
collection: boolean;
|
|
98
102
|
private?: boolean;
|
|
103
|
+
credential?: boolean;
|
|
99
104
|
depends?: string;
|
|
100
105
|
description?: string;
|
|
101
106
|
default?: any;
|
|
@@ -114,6 +119,7 @@ export class HeadscaleService extends Service {
|
|
|
114
119
|
mandatory: boolean;
|
|
115
120
|
collection: boolean;
|
|
116
121
|
private?: boolean;
|
|
122
|
+
credential?: boolean;
|
|
117
123
|
depends?: string;
|
|
118
124
|
description?: string;
|
|
119
125
|
default?: any;
|
|
@@ -134,6 +140,7 @@ export class HeadscaleService extends Service {
|
|
|
134
140
|
writable: boolean;
|
|
135
141
|
mandatory: boolean;
|
|
136
142
|
private?: boolean;
|
|
143
|
+
credential?: boolean;
|
|
137
144
|
depends?: string;
|
|
138
145
|
description?: string;
|
|
139
146
|
default?: any;
|
|
@@ -154,6 +161,7 @@ export class HeadscaleService extends Service {
|
|
|
154
161
|
mandatory: boolean;
|
|
155
162
|
collection: boolean;
|
|
156
163
|
private?: boolean;
|
|
164
|
+
credential?: boolean;
|
|
157
165
|
depends?: string;
|
|
158
166
|
description?: string;
|
|
159
167
|
default?: any;
|
|
@@ -184,6 +192,7 @@ export class HeadscaleService extends Service {
|
|
|
184
192
|
mandatory: boolean;
|
|
185
193
|
collection: boolean;
|
|
186
194
|
private?: boolean;
|
|
195
|
+
credential?: boolean;
|
|
187
196
|
depends?: string;
|
|
188
197
|
description?: string;
|
|
189
198
|
default?: any;
|
|
@@ -205,6 +214,7 @@ export class HeadscaleService extends Service {
|
|
|
205
214
|
mandatory: boolean;
|
|
206
215
|
collection: boolean;
|
|
207
216
|
private?: boolean;
|
|
217
|
+
credential?: boolean;
|
|
208
218
|
depends?: string;
|
|
209
219
|
description?: string;
|
|
210
220
|
default?: any;
|
|
@@ -225,6 +235,7 @@ export class HeadscaleService extends Service {
|
|
|
225
235
|
mandatory: boolean;
|
|
226
236
|
collection: boolean;
|
|
227
237
|
private?: boolean;
|
|
238
|
+
credential?: boolean;
|
|
228
239
|
depends?: string;
|
|
229
240
|
description?: string;
|
|
230
241
|
default?: any;
|
|
@@ -257,6 +268,7 @@ export class HeadscaleService extends Service {
|
|
|
257
268
|
writable: boolean;
|
|
258
269
|
mandatory: boolean;
|
|
259
270
|
private?: boolean;
|
|
271
|
+
credential?: boolean;
|
|
260
272
|
depends?: string;
|
|
261
273
|
description?: string;
|
|
262
274
|
default?: any;
|
|
@@ -275,6 +287,7 @@ export class HeadscaleService extends Service {
|
|
|
275
287
|
writable: boolean;
|
|
276
288
|
mandatory: boolean;
|
|
277
289
|
private?: boolean;
|
|
290
|
+
credential?: boolean;
|
|
278
291
|
depends?: string;
|
|
279
292
|
description?: string;
|
|
280
293
|
default?: any;
|
|
@@ -295,6 +308,7 @@ export class HeadscaleService extends Service {
|
|
|
295
308
|
mandatory: boolean;
|
|
296
309
|
collection: boolean;
|
|
297
310
|
private?: boolean;
|
|
311
|
+
credential?: boolean;
|
|
298
312
|
depends?: string;
|
|
299
313
|
description?: string;
|
|
300
314
|
default?: any;
|
|
@@ -315,6 +329,7 @@ export class HeadscaleService extends Service {
|
|
|
315
329
|
mandatory: boolean;
|
|
316
330
|
collection: boolean;
|
|
317
331
|
private?: boolean;
|
|
332
|
+
credential?: boolean;
|
|
318
333
|
depends?: string;
|
|
319
334
|
description?: string;
|
|
320
335
|
default?: any;
|
|
@@ -337,6 +352,7 @@ export class HeadscaleService extends Service {
|
|
|
337
352
|
mandatory: boolean;
|
|
338
353
|
collection: boolean;
|
|
339
354
|
private?: boolean;
|
|
355
|
+
credential?: boolean;
|
|
340
356
|
depends?: string;
|
|
341
357
|
description?: string;
|
|
342
358
|
default?: any;
|
|
@@ -355,6 +371,7 @@ export class HeadscaleService extends Service {
|
|
|
355
371
|
mandatory: boolean;
|
|
356
372
|
collection: boolean;
|
|
357
373
|
private?: boolean;
|
|
374
|
+
credential?: boolean;
|
|
358
375
|
depends?: string;
|
|
359
376
|
description?: string;
|
|
360
377
|
default?: any;
|
|
@@ -375,6 +392,7 @@ export class HeadscaleService extends Service {
|
|
|
375
392
|
writable: boolean;
|
|
376
393
|
mandatory: boolean;
|
|
377
394
|
private?: boolean;
|
|
395
|
+
credential?: boolean;
|
|
378
396
|
depends?: string;
|
|
379
397
|
description?: string;
|
|
380
398
|
default?: any;
|
|
@@ -395,6 +413,7 @@ export class HeadscaleService extends Service {
|
|
|
395
413
|
mandatory: boolean;
|
|
396
414
|
collection: boolean;
|
|
397
415
|
private?: boolean;
|
|
416
|
+
credential?: boolean;
|
|
398
417
|
depends?: string;
|
|
399
418
|
description?: string;
|
|
400
419
|
default?: any;
|
|
@@ -425,6 +444,7 @@ export class HeadscaleService extends Service {
|
|
|
425
444
|
mandatory: boolean;
|
|
426
445
|
collection: boolean;
|
|
427
446
|
private?: boolean;
|
|
447
|
+
credential?: boolean;
|
|
428
448
|
depends?: string;
|
|
429
449
|
description?: string;
|
|
430
450
|
default?: any;
|
|
@@ -446,6 +466,7 @@ export class HeadscaleService extends Service {
|
|
|
446
466
|
mandatory: boolean;
|
|
447
467
|
collection: boolean;
|
|
448
468
|
private?: boolean;
|
|
469
|
+
credential?: boolean;
|
|
449
470
|
depends?: string;
|
|
450
471
|
description?: string;
|
|
451
472
|
default?: any;
|
|
@@ -466,6 +487,7 @@ export class HeadscaleService extends Service {
|
|
|
466
487
|
mandatory: boolean;
|
|
467
488
|
collection: boolean;
|
|
468
489
|
private?: boolean;
|
|
490
|
+
credential?: boolean;
|
|
469
491
|
depends?: string;
|
|
470
492
|
description?: string;
|
|
471
493
|
default?: any;
|
|
@@ -496,6 +518,7 @@ export class HeadscaleService extends Service {
|
|
|
496
518
|
writable: boolean;
|
|
497
519
|
mandatory: boolean;
|
|
498
520
|
private?: boolean;
|
|
521
|
+
credential?: boolean;
|
|
499
522
|
depends?: string;
|
|
500
523
|
description?: string;
|
|
501
524
|
default?: any;
|
|
@@ -514,6 +537,7 @@ export class HeadscaleService extends Service {
|
|
|
514
537
|
writable: boolean;
|
|
515
538
|
mandatory: boolean;
|
|
516
539
|
private?: boolean;
|
|
540
|
+
credential?: boolean;
|
|
517
541
|
depends?: string;
|
|
518
542
|
description?: string;
|
|
519
543
|
default?: any;
|
|
@@ -534,6 +558,7 @@ export class HeadscaleService extends Service {
|
|
|
534
558
|
mandatory: boolean;
|
|
535
559
|
collection: boolean;
|
|
536
560
|
private?: boolean;
|
|
561
|
+
credential?: boolean;
|
|
537
562
|
depends?: string;
|
|
538
563
|
description?: string;
|
|
539
564
|
default?: any;
|
|
@@ -554,6 +579,7 @@ export class HeadscaleService extends Service {
|
|
|
554
579
|
mandatory: boolean;
|
|
555
580
|
collection: boolean;
|
|
556
581
|
private?: boolean;
|
|
582
|
+
credential?: boolean;
|
|
557
583
|
depends?: string;
|
|
558
584
|
description?: string;
|
|
559
585
|
default?: any;
|
|
@@ -576,6 +602,7 @@ export class HeadscaleService extends Service {
|
|
|
576
602
|
mandatory: boolean;
|
|
577
603
|
collection: boolean;
|
|
578
604
|
private?: boolean;
|
|
605
|
+
credential?: boolean;
|
|
579
606
|
depends?: string;
|
|
580
607
|
description?: string;
|
|
581
608
|
default?: any;
|
|
@@ -594,6 +621,7 @@ export class HeadscaleService extends Service {
|
|
|
594
621
|
mandatory: boolean;
|
|
595
622
|
collection: boolean;
|
|
596
623
|
private?: boolean;
|
|
624
|
+
credential?: boolean;
|
|
597
625
|
depends?: string;
|
|
598
626
|
description?: string;
|
|
599
627
|
default?: any;
|
|
@@ -614,6 +642,7 @@ export class HeadscaleService extends Service {
|
|
|
614
642
|
writable: boolean;
|
|
615
643
|
mandatory: boolean;
|
|
616
644
|
private?: boolean;
|
|
645
|
+
credential?: boolean;
|
|
617
646
|
depends?: string;
|
|
618
647
|
description?: string;
|
|
619
648
|
default?: any;
|
|
@@ -634,6 +663,7 @@ export class HeadscaleService extends Service {
|
|
|
634
663
|
mandatory: boolean;
|
|
635
664
|
collection: boolean;
|
|
636
665
|
private?: boolean;
|
|
666
|
+
credential?: boolean;
|
|
637
667
|
depends?: string;
|
|
638
668
|
description?: string;
|
|
639
669
|
default?: any;
|