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
|
@@ -8,15 +8,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
8
8
|
attributes: {
|
|
9
9
|
owner: {
|
|
10
10
|
type: string;
|
|
11
|
-
collection: boolean;
|
|
12
|
-
writable: boolean;
|
|
13
|
-
};
|
|
14
|
-
type: import("pacc").AttributeDefinition;
|
|
15
|
-
name: import("pacc").AttributeDefinition;
|
|
16
|
-
description: {
|
|
17
|
-
writable: boolean;
|
|
18
|
-
type: object;
|
|
19
11
|
isKey: boolean;
|
|
12
|
+
writable: boolean;
|
|
20
13
|
mandatory: boolean;
|
|
21
14
|
collection: boolean;
|
|
22
15
|
private?: boolean;
|
|
@@ -31,6 +24,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
31
24
|
env?: string[] | string;
|
|
32
25
|
additionalValues?: object;
|
|
33
26
|
};
|
|
27
|
+
type: import("pacc").AttributeDefinition;
|
|
28
|
+
name: import("pacc").AttributeDefinition;
|
|
29
|
+
description: import("pacc").AttributeDefinition;
|
|
34
30
|
priority: import("pacc").AttributeDefinition;
|
|
35
31
|
directory: import("pacc").AttributeDefinition;
|
|
36
32
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -44,34 +40,11 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
44
40
|
export let key: string;
|
|
45
41
|
export let attributes: {
|
|
46
42
|
services: {
|
|
47
|
-
type: string;
|
|
48
43
|
collection: boolean;
|
|
49
|
-
|
|
50
|
-
};
|
|
51
|
-
hostName: {
|
|
52
|
-
writable: boolean;
|
|
53
|
-
type: object;
|
|
54
|
-
isKey: boolean;
|
|
55
|
-
mandatory: boolean;
|
|
56
|
-
collection: boolean;
|
|
57
|
-
private?: boolean;
|
|
58
|
-
depends?: string;
|
|
59
|
-
description?: string;
|
|
60
|
-
default?: any;
|
|
61
|
-
set?: Function;
|
|
62
|
-
get?: Function;
|
|
63
|
-
prepareValue?: Function;
|
|
64
|
-
values?: Set<any>;
|
|
65
|
-
externalName?: string;
|
|
66
|
-
env?: string[] | string;
|
|
67
|
-
additionalValues?: object;
|
|
68
|
-
};
|
|
69
|
-
ipAddresses: {
|
|
70
|
-
type: object;
|
|
44
|
+
type: string;
|
|
71
45
|
isKey: boolean;
|
|
72
46
|
writable: boolean;
|
|
73
47
|
mandatory: boolean;
|
|
74
|
-
collection: boolean;
|
|
75
48
|
private?: boolean;
|
|
76
49
|
depends?: string;
|
|
77
50
|
description?: string;
|
|
@@ -84,10 +57,10 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
84
57
|
env?: string[] | string;
|
|
85
58
|
additionalValues?: object;
|
|
86
59
|
};
|
|
87
|
-
|
|
60
|
+
hostName: {
|
|
61
|
+
writable: boolean;
|
|
88
62
|
type: object;
|
|
89
63
|
isKey: boolean;
|
|
90
|
-
writable: boolean;
|
|
91
64
|
mandatory: boolean;
|
|
92
65
|
collection: boolean;
|
|
93
66
|
private?: boolean;
|
|
@@ -102,6 +75,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
102
75
|
env?: string[] | string;
|
|
103
76
|
additionalValues?: object;
|
|
104
77
|
};
|
|
78
|
+
ipAddresses: import("pacc").AttributeDefinition;
|
|
79
|
+
hwaddr: import("pacc").AttributeDefinition;
|
|
105
80
|
network: {
|
|
106
81
|
type: {
|
|
107
82
|
name: string;
|
|
@@ -117,15 +92,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
117
92
|
attributes: {
|
|
118
93
|
owner: {
|
|
119
94
|
type: string;
|
|
120
|
-
collection: boolean;
|
|
121
|
-
writable: boolean;
|
|
122
|
-
};
|
|
123
|
-
type: import("pacc").AttributeDefinition;
|
|
124
|
-
name: import("pacc").AttributeDefinition;
|
|
125
|
-
description: {
|
|
126
|
-
writable: boolean;
|
|
127
|
-
type: object;
|
|
128
95
|
isKey: boolean;
|
|
96
|
+
writable: boolean;
|
|
129
97
|
mandatory: boolean;
|
|
130
98
|
collection: boolean;
|
|
131
99
|
private?: boolean;
|
|
@@ -140,6 +108,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
140
108
|
env?: string[] | string;
|
|
141
109
|
additionalValues?: object;
|
|
142
110
|
};
|
|
111
|
+
type: import("pacc").AttributeDefinition;
|
|
112
|
+
name: import("pacc").AttributeDefinition;
|
|
113
|
+
description: import("pacc").AttributeDefinition;
|
|
143
114
|
priority: import("pacc").AttributeDefinition;
|
|
144
115
|
directory: import("pacc").AttributeDefinition;
|
|
145
116
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -170,12 +141,38 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
170
141
|
hosts: {
|
|
171
142
|
type: string;
|
|
172
143
|
collection: boolean;
|
|
144
|
+
isKey: boolean;
|
|
173
145
|
writable: boolean;
|
|
146
|
+
mandatory: boolean;
|
|
147
|
+
private?: boolean;
|
|
148
|
+
depends?: string;
|
|
149
|
+
description?: string;
|
|
150
|
+
default?: any;
|
|
151
|
+
set?: Function;
|
|
152
|
+
get?: Function;
|
|
153
|
+
prepareValue?: Function;
|
|
154
|
+
values?: Set<any>;
|
|
155
|
+
externalName?: string;
|
|
156
|
+
env?: string[] | string;
|
|
157
|
+
additionalValues?: object;
|
|
174
158
|
};
|
|
175
159
|
clusters: {
|
|
176
160
|
type: string;
|
|
177
161
|
collection: boolean;
|
|
162
|
+
isKey: boolean;
|
|
178
163
|
writable: boolean;
|
|
164
|
+
mandatory: boolean;
|
|
165
|
+
private?: boolean;
|
|
166
|
+
depends?: string;
|
|
167
|
+
description?: string;
|
|
168
|
+
default?: any;
|
|
169
|
+
set?: Function;
|
|
170
|
+
get?: Function;
|
|
171
|
+
prepareValue?: Function;
|
|
172
|
+
values?: Set<any>;
|
|
173
|
+
externalName?: string;
|
|
174
|
+
env?: string[] | string;
|
|
175
|
+
additionalValues?: object;
|
|
179
176
|
};
|
|
180
177
|
subnets: {
|
|
181
178
|
type: {
|
|
@@ -209,7 +206,20 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
209
206
|
};
|
|
210
207
|
};
|
|
211
208
|
collection: boolean;
|
|
209
|
+
isKey: boolean;
|
|
212
210
|
writable: boolean;
|
|
211
|
+
mandatory: boolean;
|
|
212
|
+
private?: boolean;
|
|
213
|
+
depends?: string;
|
|
214
|
+
description?: string;
|
|
215
|
+
default?: any;
|
|
216
|
+
set?: Function;
|
|
217
|
+
get?: Function;
|
|
218
|
+
prepareValue?: Function;
|
|
219
|
+
values?: Set<any>;
|
|
220
|
+
externalName?: string;
|
|
221
|
+
env?: string[] | string;
|
|
222
|
+
additionalValues?: object;
|
|
213
223
|
};
|
|
214
224
|
country: import("pacc").AttributeDefinition;
|
|
215
225
|
domain: import("pacc").AttributeDefinition;
|
|
@@ -371,11 +381,6 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
371
381
|
multicastDNS: import("pacc").AttributeDefinition;
|
|
372
382
|
};
|
|
373
383
|
};
|
|
374
|
-
collection: boolean;
|
|
375
|
-
writable: boolean;
|
|
376
|
-
};
|
|
377
|
-
destination: {
|
|
378
|
-
type: object;
|
|
379
384
|
isKey: boolean;
|
|
380
385
|
writable: boolean;
|
|
381
386
|
mandatory: boolean;
|
|
@@ -392,6 +397,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
392
397
|
env?: string[] | string;
|
|
393
398
|
additionalValues?: object;
|
|
394
399
|
};
|
|
400
|
+
destination: import("pacc").AttributeDefinition;
|
|
395
401
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
396
402
|
cidrAddress: import("pacc").AttributeDefinition;
|
|
397
403
|
addresses: import("pacc").AttributeDefinition;
|
|
@@ -521,15 +527,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
521
527
|
attributes: {
|
|
522
528
|
owner: {
|
|
523
529
|
type: string;
|
|
524
|
-
collection: boolean;
|
|
525
|
-
writable: boolean;
|
|
526
|
-
};
|
|
527
|
-
type: import("pacc").AttributeDefinition;
|
|
528
|
-
name: import("pacc").AttributeDefinition;
|
|
529
|
-
description: {
|
|
530
|
-
writable: boolean;
|
|
531
|
-
type: object;
|
|
532
530
|
isKey: boolean;
|
|
531
|
+
writable: boolean;
|
|
533
532
|
mandatory: boolean;
|
|
534
533
|
collection: boolean;
|
|
535
534
|
private?: boolean;
|
|
@@ -544,6 +543,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
544
543
|
env?: string[] | string;
|
|
545
544
|
additionalValues?: object;
|
|
546
545
|
};
|
|
546
|
+
type: import("pacc").AttributeDefinition;
|
|
547
|
+
name: import("pacc").AttributeDefinition;
|
|
548
|
+
description: import("pacc").AttributeDefinition;
|
|
547
549
|
priority: import("pacc").AttributeDefinition;
|
|
548
550
|
directory: import("pacc").AttributeDefinition;
|
|
549
551
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -556,34 +558,11 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
556
558
|
key: string;
|
|
557
559
|
attributes: {
|
|
558
560
|
services: {
|
|
559
|
-
type: string;
|
|
560
561
|
collection: boolean;
|
|
561
|
-
|
|
562
|
-
};
|
|
563
|
-
hostName: {
|
|
564
|
-
writable: boolean;
|
|
565
|
-
type: object;
|
|
566
|
-
isKey: boolean;
|
|
567
|
-
mandatory: boolean;
|
|
568
|
-
collection: boolean;
|
|
569
|
-
private?: boolean;
|
|
570
|
-
depends?: string;
|
|
571
|
-
description?: string;
|
|
572
|
-
default?: any;
|
|
573
|
-
set?: Function;
|
|
574
|
-
get?: Function;
|
|
575
|
-
prepareValue?: Function;
|
|
576
|
-
values?: Set<any>;
|
|
577
|
-
externalName?: string;
|
|
578
|
-
env?: string[] | string;
|
|
579
|
-
additionalValues?: object;
|
|
580
|
-
};
|
|
581
|
-
ipAddresses: {
|
|
582
|
-
type: object;
|
|
562
|
+
type: string;
|
|
583
563
|
isKey: boolean;
|
|
584
564
|
writable: boolean;
|
|
585
565
|
mandatory: boolean;
|
|
586
|
-
collection: boolean;
|
|
587
566
|
private?: boolean;
|
|
588
567
|
depends?: string;
|
|
589
568
|
description?: string;
|
|
@@ -596,10 +575,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
596
575
|
env?: string[] | string;
|
|
597
576
|
additionalValues?: object;
|
|
598
577
|
};
|
|
599
|
-
|
|
578
|
+
hostName: {
|
|
579
|
+
writable: boolean;
|
|
600
580
|
type: object;
|
|
601
581
|
isKey: boolean;
|
|
602
|
-
writable: boolean;
|
|
603
582
|
mandatory: boolean;
|
|
604
583
|
collection: boolean;
|
|
605
584
|
private?: boolean;
|
|
@@ -614,6 +593,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
614
593
|
env?: string[] | string;
|
|
615
594
|
additionalValues?: object;
|
|
616
595
|
};
|
|
596
|
+
ipAddresses: import("pacc").AttributeDefinition;
|
|
597
|
+
hwaddr: import("pacc").AttributeDefinition;
|
|
617
598
|
network: {
|
|
618
599
|
type: {
|
|
619
600
|
name: string;
|
|
@@ -629,15 +610,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
629
610
|
attributes: {
|
|
630
611
|
owner: {
|
|
631
612
|
type: string;
|
|
632
|
-
collection: boolean;
|
|
633
|
-
writable: boolean;
|
|
634
|
-
};
|
|
635
|
-
type: import("pacc").AttributeDefinition;
|
|
636
|
-
name: import("pacc").AttributeDefinition;
|
|
637
|
-
description: {
|
|
638
|
-
writable: boolean;
|
|
639
|
-
type: object;
|
|
640
613
|
isKey: boolean;
|
|
614
|
+
writable: boolean;
|
|
641
615
|
mandatory: boolean;
|
|
642
616
|
collection: boolean;
|
|
643
617
|
private?: boolean;
|
|
@@ -652,6 +626,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
652
626
|
env?: string[] | string;
|
|
653
627
|
additionalValues?: object;
|
|
654
628
|
};
|
|
629
|
+
type: import("pacc").AttributeDefinition;
|
|
630
|
+
name: import("pacc").AttributeDefinition;
|
|
631
|
+
description: import("pacc").AttributeDefinition;
|
|
655
632
|
priority: import("pacc").AttributeDefinition;
|
|
656
633
|
directory: import("pacc").AttributeDefinition;
|
|
657
634
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -682,12 +659,38 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
682
659
|
hosts: {
|
|
683
660
|
type: string;
|
|
684
661
|
collection: boolean;
|
|
662
|
+
isKey: boolean;
|
|
685
663
|
writable: boolean;
|
|
664
|
+
mandatory: boolean;
|
|
665
|
+
private?: boolean;
|
|
666
|
+
depends?: string;
|
|
667
|
+
description?: string;
|
|
668
|
+
default?: any;
|
|
669
|
+
set?: Function;
|
|
670
|
+
get?: Function;
|
|
671
|
+
prepareValue?: Function;
|
|
672
|
+
values?: Set<any>;
|
|
673
|
+
externalName?: string;
|
|
674
|
+
env?: string[] | string;
|
|
675
|
+
additionalValues?: object;
|
|
686
676
|
};
|
|
687
677
|
clusters: {
|
|
688
678
|
type: string;
|
|
689
679
|
collection: boolean;
|
|
680
|
+
isKey: boolean;
|
|
690
681
|
writable: boolean;
|
|
682
|
+
mandatory: boolean;
|
|
683
|
+
private?: boolean;
|
|
684
|
+
depends?: string;
|
|
685
|
+
description?: string;
|
|
686
|
+
default?: any;
|
|
687
|
+
set?: Function;
|
|
688
|
+
get?: Function;
|
|
689
|
+
prepareValue?: Function;
|
|
690
|
+
values?: Set<any>;
|
|
691
|
+
externalName?: string;
|
|
692
|
+
env?: string[] | string;
|
|
693
|
+
additionalValues?: object;
|
|
691
694
|
};
|
|
692
695
|
subnets: {
|
|
693
696
|
type: {
|
|
@@ -721,7 +724,20 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
721
724
|
};
|
|
722
725
|
};
|
|
723
726
|
collection: boolean;
|
|
727
|
+
isKey: boolean;
|
|
724
728
|
writable: boolean;
|
|
729
|
+
mandatory: boolean;
|
|
730
|
+
private?: boolean;
|
|
731
|
+
depends?: string;
|
|
732
|
+
description?: string;
|
|
733
|
+
default?: any;
|
|
734
|
+
set?: Function;
|
|
735
|
+
get?: Function;
|
|
736
|
+
prepareValue?: Function;
|
|
737
|
+
values?: Set<any>;
|
|
738
|
+
externalName?: string;
|
|
739
|
+
env?: string[] | string;
|
|
740
|
+
additionalValues?: object;
|
|
725
741
|
};
|
|
726
742
|
country: import("pacc").AttributeDefinition;
|
|
727
743
|
domain: import("pacc").AttributeDefinition;
|
|
@@ -883,11 +899,6 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
883
899
|
multicastDNS: import("pacc").AttributeDefinition;
|
|
884
900
|
};
|
|
885
901
|
};
|
|
886
|
-
collection: boolean;
|
|
887
|
-
writable: boolean;
|
|
888
|
-
};
|
|
889
|
-
destination: {
|
|
890
|
-
type: object;
|
|
891
902
|
isKey: boolean;
|
|
892
903
|
writable: boolean;
|
|
893
904
|
mandatory: boolean;
|
|
@@ -904,6 +915,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
904
915
|
env?: string[] | string;
|
|
905
916
|
additionalValues?: object;
|
|
906
917
|
};
|
|
918
|
+
destination: import("pacc").AttributeDefinition;
|
|
907
919
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
908
920
|
cidrAddress: import("pacc").AttributeDefinition;
|
|
909
921
|
addresses: import("pacc").AttributeDefinition;
|