pmcf 3.11.3 → 3.11.5
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/src/base.mjs +4 -3
- package/src/cluster.mjs +22 -5
- package/src/extra-source-service.mjs +6 -1
- package/src/host.mjs +10 -6
- package/src/network-interfaces/ethernet.mjs +6 -1
- package/src/network-interfaces/network-interface.mjs +15 -8
- package/src/owner.mjs +12 -3
- package/src/services/bind.mjs +19 -4
- package/types/base.d.mts +4 -8
- package/types/cluster.d.mts +125 -16
- package/types/extra-source-service.d.mts +164 -38
- package/types/host.d.mts +43 -8
- package/types/location.d.mts +86 -16
- package/types/network-interfaces/ethernet.d.mts +137 -99
- package/types/network-interfaces/loopback.d.mts +106 -94
- package/types/network-interfaces/network-interface.d.mts +106 -94
- package/types/network-interfaces/tun.d.mts +106 -94
- package/types/network-interfaces/wireguard.d.mts +106 -94
- package/types/network-interfaces/wlan.d.mts +172 -141
- package/types/network.d.mts +86 -16
- package/types/owner.d.mts +43 -8
- package/types/root.d.mts +86 -16
- package/types/service.d.mts +94 -32
- package/types/services/bind.d.mts +232 -48
- package/types/services/chrony.d.mts +193 -48
- package/types/services/headscale.d.mts +193 -48
- package/types/services/influxdb.d.mts +137 -40
- package/types/services/kea.d.mts +137 -40
- package/types/services/mosquitto.d.mts +137 -40
- package/types/services/openldap.d.mts +137 -40
- package/types/services/systemd-journal-remote.d.mts +137 -40
- package/types/services/systemd-journal-upload.d.mts +137 -40
- package/types/services/systemd-journal.d.mts +137 -40
- package/types/services/systemd-resolved.d.mts +193 -48
- package/types/services/systemd-timesyncd.d.mts +193 -48
|
@@ -13,15 +13,8 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
13
13
|
attributes: {
|
|
14
14
|
owner: {
|
|
15
15
|
type: string;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
writable: boolean;
|
|
18
|
-
};
|
|
19
|
-
type: import("pacc").AttributeDefinition;
|
|
20
|
-
name: import("pacc").AttributeDefinition;
|
|
21
|
-
description: {
|
|
22
|
-
writable: boolean;
|
|
23
|
-
type: object;
|
|
24
16
|
isKey: boolean;
|
|
17
|
+
writable: boolean;
|
|
25
18
|
mandatory: boolean;
|
|
26
19
|
collection: boolean;
|
|
27
20
|
private?: boolean;
|
|
@@ -36,6 +29,9 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
36
29
|
env?: string[] | string;
|
|
37
30
|
additionalValues?: object;
|
|
38
31
|
};
|
|
32
|
+
type: import("pacc").AttributeDefinition;
|
|
33
|
+
name: import("pacc").AttributeDefinition;
|
|
34
|
+
description: import("pacc").AttributeDefinition;
|
|
39
35
|
priority: import("pacc").AttributeDefinition;
|
|
40
36
|
directory: import("pacc").AttributeDefinition;
|
|
41
37
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -48,12 +44,38 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
48
44
|
networkInterfaces: {
|
|
49
45
|
type: string;
|
|
50
46
|
collection: boolean;
|
|
47
|
+
isKey: boolean;
|
|
51
48
|
writable: boolean;
|
|
49
|
+
mandatory: boolean;
|
|
50
|
+
private?: boolean;
|
|
51
|
+
depends?: string;
|
|
52
|
+
description?: string;
|
|
53
|
+
default?: any;
|
|
54
|
+
set?: Function;
|
|
55
|
+
get?: Function;
|
|
56
|
+
prepareValue?: Function;
|
|
57
|
+
values?: Set<any>;
|
|
58
|
+
externalName?: string;
|
|
59
|
+
env?: string[] | string;
|
|
60
|
+
additionalValues?: object;
|
|
52
61
|
};
|
|
53
62
|
services: {
|
|
54
63
|
type: string;
|
|
55
64
|
collection: boolean;
|
|
65
|
+
isKey: boolean;
|
|
56
66
|
writable: boolean;
|
|
67
|
+
mandatory: boolean;
|
|
68
|
+
private?: boolean;
|
|
69
|
+
depends?: string;
|
|
70
|
+
description?: string;
|
|
71
|
+
default?: any;
|
|
72
|
+
set?: Function;
|
|
73
|
+
get?: Function;
|
|
74
|
+
prepareValue?: Function;
|
|
75
|
+
values?: Set<any>;
|
|
76
|
+
externalName?: string;
|
|
77
|
+
env?: string[] | string;
|
|
78
|
+
additionalValues?: object;
|
|
57
79
|
};
|
|
58
80
|
aliases: import("pacc").AttributeDefinition;
|
|
59
81
|
os: {
|
|
@@ -140,7 +162,20 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
140
162
|
extends: {
|
|
141
163
|
type: string;
|
|
142
164
|
collection: boolean;
|
|
165
|
+
isKey: boolean;
|
|
143
166
|
writable: boolean;
|
|
167
|
+
mandatory: boolean;
|
|
168
|
+
private?: boolean;
|
|
169
|
+
depends?: string;
|
|
170
|
+
description?: string;
|
|
171
|
+
default?: any;
|
|
172
|
+
set?: Function;
|
|
173
|
+
get?: Function;
|
|
174
|
+
prepareValue?: Function;
|
|
175
|
+
values?: Set<any>;
|
|
176
|
+
externalName?: string;
|
|
177
|
+
env?: string[] | string;
|
|
178
|
+
additionalValues?: object;
|
|
144
179
|
};
|
|
145
180
|
model: import("pacc").AttributeDefinition;
|
|
146
181
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -175,15 +210,8 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
175
210
|
attributes: {
|
|
176
211
|
owner: {
|
|
177
212
|
type: string;
|
|
178
|
-
collection: boolean;
|
|
179
|
-
writable: boolean;
|
|
180
|
-
};
|
|
181
|
-
type: import("pacc").AttributeDefinition;
|
|
182
|
-
name: import("pacc").AttributeDefinition;
|
|
183
|
-
description: {
|
|
184
|
-
writable: boolean;
|
|
185
|
-
type: object;
|
|
186
213
|
isKey: boolean;
|
|
214
|
+
writable: boolean;
|
|
187
215
|
mandatory: boolean;
|
|
188
216
|
collection: boolean;
|
|
189
217
|
private?: boolean;
|
|
@@ -198,6 +226,9 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
198
226
|
env?: string[] | string;
|
|
199
227
|
additionalValues?: object;
|
|
200
228
|
};
|
|
229
|
+
type: import("pacc").AttributeDefinition;
|
|
230
|
+
name: import("pacc").AttributeDefinition;
|
|
231
|
+
description: import("pacc").AttributeDefinition;
|
|
201
232
|
priority: import("pacc").AttributeDefinition;
|
|
202
233
|
directory: import("pacc").AttributeDefinition;
|
|
203
234
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -285,15 +316,8 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
285
316
|
attributes: {
|
|
286
317
|
owner: {
|
|
287
318
|
type: string;
|
|
288
|
-
collection: boolean;
|
|
289
|
-
writable: boolean;
|
|
290
|
-
};
|
|
291
|
-
type: import("pacc").AttributeDefinition;
|
|
292
|
-
name: import("pacc").AttributeDefinition;
|
|
293
|
-
description: {
|
|
294
|
-
writable: boolean;
|
|
295
|
-
type: object;
|
|
296
319
|
isKey: boolean;
|
|
320
|
+
writable: boolean;
|
|
297
321
|
mandatory: boolean;
|
|
298
322
|
collection: boolean;
|
|
299
323
|
private?: boolean;
|
|
@@ -308,6 +332,9 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
308
332
|
env?: string[] | string;
|
|
309
333
|
additionalValues?: object;
|
|
310
334
|
};
|
|
335
|
+
type: import("pacc").AttributeDefinition;
|
|
336
|
+
name: import("pacc").AttributeDefinition;
|
|
337
|
+
description: import("pacc").AttributeDefinition;
|
|
311
338
|
priority: import("pacc").AttributeDefinition;
|
|
312
339
|
directory: import("pacc").AttributeDefinition;
|
|
313
340
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -320,12 +347,38 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
320
347
|
networkInterfaces: {
|
|
321
348
|
type: string;
|
|
322
349
|
collection: boolean;
|
|
350
|
+
isKey: boolean;
|
|
323
351
|
writable: boolean;
|
|
352
|
+
mandatory: boolean;
|
|
353
|
+
private?: boolean;
|
|
354
|
+
depends?: string;
|
|
355
|
+
description?: string;
|
|
356
|
+
default?: any;
|
|
357
|
+
set?: Function;
|
|
358
|
+
get?: Function;
|
|
359
|
+
prepareValue?: Function;
|
|
360
|
+
values?: Set<any>;
|
|
361
|
+
externalName?: string;
|
|
362
|
+
env?: string[] | string;
|
|
363
|
+
additionalValues?: object;
|
|
324
364
|
};
|
|
325
365
|
services: {
|
|
326
366
|
type: string;
|
|
327
367
|
collection: boolean;
|
|
368
|
+
isKey: boolean;
|
|
328
369
|
writable: boolean;
|
|
370
|
+
mandatory: boolean;
|
|
371
|
+
private?: boolean;
|
|
372
|
+
depends?: string;
|
|
373
|
+
description?: string;
|
|
374
|
+
default?: any;
|
|
375
|
+
set?: Function;
|
|
376
|
+
get?: Function;
|
|
377
|
+
prepareValue?: Function;
|
|
378
|
+
values?: Set<any>;
|
|
379
|
+
externalName?: string;
|
|
380
|
+
env?: string[] | string;
|
|
381
|
+
additionalValues?: object;
|
|
329
382
|
};
|
|
330
383
|
aliases: import("pacc").AttributeDefinition;
|
|
331
384
|
os: {
|
|
@@ -412,7 +465,20 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
412
465
|
extends: {
|
|
413
466
|
type: string;
|
|
414
467
|
collection: boolean;
|
|
468
|
+
isKey: boolean;
|
|
415
469
|
writable: boolean;
|
|
470
|
+
mandatory: boolean;
|
|
471
|
+
private?: boolean;
|
|
472
|
+
depends?: string;
|
|
473
|
+
description?: string;
|
|
474
|
+
default?: any;
|
|
475
|
+
set?: Function;
|
|
476
|
+
get?: Function;
|
|
477
|
+
prepareValue?: Function;
|
|
478
|
+
values?: Set<any>;
|
|
479
|
+
externalName?: string;
|
|
480
|
+
env?: string[] | string;
|
|
481
|
+
additionalValues?: object;
|
|
416
482
|
};
|
|
417
483
|
model: import("pacc").AttributeDefinition;
|
|
418
484
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -452,15 +518,8 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
452
518
|
attributes: {
|
|
453
519
|
owner: {
|
|
454
520
|
type: string;
|
|
455
|
-
collection: boolean;
|
|
456
|
-
writable: boolean;
|
|
457
|
-
};
|
|
458
|
-
type: import("pacc").AttributeDefinition;
|
|
459
|
-
name: import("pacc").AttributeDefinition;
|
|
460
|
-
description: {
|
|
461
|
-
writable: boolean;
|
|
462
|
-
type: object;
|
|
463
521
|
isKey: boolean;
|
|
522
|
+
writable: boolean;
|
|
464
523
|
mandatory: boolean;
|
|
465
524
|
collection: boolean;
|
|
466
525
|
private?: boolean;
|
|
@@ -475,6 +534,9 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
475
534
|
env?: string[] | string;
|
|
476
535
|
additionalValues?: object;
|
|
477
536
|
};
|
|
537
|
+
type: import("pacc").AttributeDefinition;
|
|
538
|
+
name: import("pacc").AttributeDefinition;
|
|
539
|
+
description: import("pacc").AttributeDefinition;
|
|
478
540
|
priority: import("pacc").AttributeDefinition;
|
|
479
541
|
directory: import("pacc").AttributeDefinition;
|
|
480
542
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -487,12 +549,38 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
487
549
|
networkInterfaces: {
|
|
488
550
|
type: string;
|
|
489
551
|
collection: boolean;
|
|
552
|
+
isKey: boolean;
|
|
490
553
|
writable: boolean;
|
|
554
|
+
mandatory: boolean;
|
|
555
|
+
private?: boolean;
|
|
556
|
+
depends?: string;
|
|
557
|
+
description?: string;
|
|
558
|
+
default?: any;
|
|
559
|
+
set?: Function;
|
|
560
|
+
get?: Function;
|
|
561
|
+
prepareValue?: Function;
|
|
562
|
+
values?: Set<any>;
|
|
563
|
+
externalName?: string;
|
|
564
|
+
env?: string[] | string;
|
|
565
|
+
additionalValues?: object;
|
|
491
566
|
};
|
|
492
567
|
services: {
|
|
493
568
|
type: string;
|
|
494
569
|
collection: boolean;
|
|
570
|
+
isKey: boolean;
|
|
495
571
|
writable: boolean;
|
|
572
|
+
mandatory: boolean;
|
|
573
|
+
private?: boolean;
|
|
574
|
+
depends?: string;
|
|
575
|
+
description?: string;
|
|
576
|
+
default?: any;
|
|
577
|
+
set?: Function;
|
|
578
|
+
get?: Function;
|
|
579
|
+
prepareValue?: Function;
|
|
580
|
+
values?: Set<any>;
|
|
581
|
+
externalName?: string;
|
|
582
|
+
env?: string[] | string;
|
|
583
|
+
additionalValues?: object;
|
|
496
584
|
};
|
|
497
585
|
aliases: import("pacc").AttributeDefinition;
|
|
498
586
|
os: {
|
|
@@ -579,7 +667,20 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
579
667
|
extends: {
|
|
580
668
|
type: string;
|
|
581
669
|
collection: boolean;
|
|
670
|
+
isKey: boolean;
|
|
582
671
|
writable: boolean;
|
|
672
|
+
mandatory: boolean;
|
|
673
|
+
private?: boolean;
|
|
674
|
+
depends?: string;
|
|
675
|
+
description?: string;
|
|
676
|
+
default?: any;
|
|
677
|
+
set?: Function;
|
|
678
|
+
get?: Function;
|
|
679
|
+
prepareValue?: Function;
|
|
680
|
+
values?: Set<any>;
|
|
681
|
+
externalName?: string;
|
|
682
|
+
env?: string[] | string;
|
|
683
|
+
additionalValues?: object;
|
|
583
684
|
};
|
|
584
685
|
model: import("pacc").AttributeDefinition;
|
|
585
686
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -619,15 +720,8 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
619
720
|
attributes: {
|
|
620
721
|
owner: {
|
|
621
722
|
type: string;
|
|
622
|
-
collection: boolean;
|
|
623
|
-
writable: boolean;
|
|
624
|
-
};
|
|
625
|
-
type: import("pacc").AttributeDefinition;
|
|
626
|
-
name: import("pacc").AttributeDefinition;
|
|
627
|
-
description: {
|
|
628
|
-
writable: boolean;
|
|
629
|
-
type: object;
|
|
630
723
|
isKey: boolean;
|
|
724
|
+
writable: boolean;
|
|
631
725
|
mandatory: boolean;
|
|
632
726
|
collection: boolean;
|
|
633
727
|
private?: boolean;
|
|
@@ -642,6 +736,9 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
642
736
|
env?: string[] | string;
|
|
643
737
|
additionalValues?: object;
|
|
644
738
|
};
|
|
739
|
+
type: import("pacc").AttributeDefinition;
|
|
740
|
+
name: import("pacc").AttributeDefinition;
|
|
741
|
+
description: import("pacc").AttributeDefinition;
|
|
645
742
|
priority: import("pacc").AttributeDefinition;
|
|
646
743
|
directory: import("pacc").AttributeDefinition;
|
|
647
744
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -654,12 +751,38 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
654
751
|
networkInterfaces: {
|
|
655
752
|
type: string;
|
|
656
753
|
collection: boolean;
|
|
754
|
+
isKey: boolean;
|
|
657
755
|
writable: boolean;
|
|
756
|
+
mandatory: boolean;
|
|
757
|
+
private?: boolean;
|
|
758
|
+
depends?: string;
|
|
759
|
+
description?: string;
|
|
760
|
+
default?: any;
|
|
761
|
+
set?: Function;
|
|
762
|
+
get?: Function;
|
|
763
|
+
prepareValue?: Function;
|
|
764
|
+
values?: Set<any>;
|
|
765
|
+
externalName?: string;
|
|
766
|
+
env?: string[] | string;
|
|
767
|
+
additionalValues?: object;
|
|
658
768
|
};
|
|
659
769
|
services: {
|
|
660
770
|
type: string;
|
|
661
771
|
collection: boolean;
|
|
772
|
+
isKey: boolean;
|
|
662
773
|
writable: boolean;
|
|
774
|
+
mandatory: boolean;
|
|
775
|
+
private?: boolean;
|
|
776
|
+
depends?: string;
|
|
777
|
+
description?: string;
|
|
778
|
+
default?: any;
|
|
779
|
+
set?: Function;
|
|
780
|
+
get?: Function;
|
|
781
|
+
prepareValue?: Function;
|
|
782
|
+
values?: Set<any>;
|
|
783
|
+
externalName?: string;
|
|
784
|
+
env?: string[] | string;
|
|
785
|
+
additionalValues?: object;
|
|
663
786
|
};
|
|
664
787
|
aliases: import("pacc").AttributeDefinition;
|
|
665
788
|
os: {
|
|
@@ -746,7 +869,20 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
746
869
|
extends: {
|
|
747
870
|
type: string;
|
|
748
871
|
collection: boolean;
|
|
872
|
+
isKey: boolean;
|
|
749
873
|
writable: boolean;
|
|
874
|
+
mandatory: boolean;
|
|
875
|
+
private?: boolean;
|
|
876
|
+
depends?: string;
|
|
877
|
+
description?: string;
|
|
878
|
+
default?: any;
|
|
879
|
+
set?: Function;
|
|
880
|
+
get?: Function;
|
|
881
|
+
prepareValue?: Function;
|
|
882
|
+
values?: Set<any>;
|
|
883
|
+
externalName?: string;
|
|
884
|
+
env?: string[] | string;
|
|
885
|
+
additionalValues?: object;
|
|
750
886
|
};
|
|
751
887
|
model: import("pacc").AttributeDefinition;
|
|
752
888
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -781,15 +917,8 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
781
917
|
attributes: {
|
|
782
918
|
owner: {
|
|
783
919
|
type: string;
|
|
784
|
-
collection: boolean;
|
|
785
|
-
writable: boolean;
|
|
786
|
-
};
|
|
787
|
-
type: import("pacc").AttributeDefinition;
|
|
788
|
-
name: import("pacc").AttributeDefinition;
|
|
789
|
-
description: {
|
|
790
|
-
writable: boolean;
|
|
791
|
-
type: object;
|
|
792
920
|
isKey: boolean;
|
|
921
|
+
writable: boolean;
|
|
793
922
|
mandatory: boolean;
|
|
794
923
|
collection: boolean;
|
|
795
924
|
private?: boolean;
|
|
@@ -804,6 +933,9 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
804
933
|
env?: string[] | string;
|
|
805
934
|
additionalValues?: object;
|
|
806
935
|
};
|
|
936
|
+
type: import("pacc").AttributeDefinition;
|
|
937
|
+
name: import("pacc").AttributeDefinition;
|
|
938
|
+
description: import("pacc").AttributeDefinition;
|
|
807
939
|
priority: import("pacc").AttributeDefinition;
|
|
808
940
|
directory: import("pacc").AttributeDefinition;
|
|
809
941
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -886,7 +1018,20 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
886
1018
|
source: {
|
|
887
1019
|
type: any;
|
|
888
1020
|
collection: boolean;
|
|
1021
|
+
isKey: boolean;
|
|
889
1022
|
writable: boolean;
|
|
1023
|
+
mandatory: boolean;
|
|
1024
|
+
private?: boolean;
|
|
1025
|
+
depends?: string;
|
|
1026
|
+
description?: string;
|
|
1027
|
+
default?: any;
|
|
1028
|
+
set?: Function;
|
|
1029
|
+
get?: Function;
|
|
1030
|
+
prepareValue?: Function;
|
|
1031
|
+
values?: Set<any>;
|
|
1032
|
+
externalName?: string;
|
|
1033
|
+
env?: string[] | string;
|
|
1034
|
+
additionalValues?: object;
|
|
890
1035
|
};
|
|
891
1036
|
};
|
|
892
1037
|
};
|