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.
Files changed (36) hide show
  1. package/package.json +3 -3
  2. package/src/base.mjs +4 -3
  3. package/src/cluster.mjs +22 -5
  4. package/src/extra-source-service.mjs +6 -1
  5. package/src/host.mjs +10 -6
  6. package/src/network-interfaces/ethernet.mjs +6 -1
  7. package/src/network-interfaces/network-interface.mjs +15 -8
  8. package/src/owner.mjs +12 -3
  9. package/src/services/bind.mjs +19 -4
  10. package/types/base.d.mts +4 -8
  11. package/types/cluster.d.mts +125 -16
  12. package/types/extra-source-service.d.mts +164 -38
  13. package/types/host.d.mts +43 -8
  14. package/types/location.d.mts +86 -16
  15. package/types/network-interfaces/ethernet.d.mts +137 -99
  16. package/types/network-interfaces/loopback.d.mts +106 -94
  17. package/types/network-interfaces/network-interface.d.mts +106 -94
  18. package/types/network-interfaces/tun.d.mts +106 -94
  19. package/types/network-interfaces/wireguard.d.mts +106 -94
  20. package/types/network-interfaces/wlan.d.mts +172 -141
  21. package/types/network.d.mts +86 -16
  22. package/types/owner.d.mts +43 -8
  23. package/types/root.d.mts +86 -16
  24. package/types/service.d.mts +94 -32
  25. package/types/services/bind.d.mts +232 -48
  26. package/types/services/chrony.d.mts +193 -48
  27. package/types/services/headscale.d.mts +193 -48
  28. package/types/services/influxdb.d.mts +137 -40
  29. package/types/services/kea.d.mts +137 -40
  30. package/types/services/mosquitto.d.mts +137 -40
  31. package/types/services/openldap.d.mts +137 -40
  32. package/types/services/systemd-journal-remote.d.mts +137 -40
  33. package/types/services/systemd-journal-upload.d.mts +137 -40
  34. package/types/services/systemd-journal.d.mts +137 -40
  35. package/types/services/systemd-resolved.d.mts +193 -48
  36. package/types/services/systemd-timesyncd.d.mts +193 -48
@@ -11,15 +11,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
11
11
  attributes: {
12
12
  owner: {
13
13
  type: string;
14
- collection: boolean;
15
- writable: boolean;
16
- };
17
- type: import("pacc").AttributeDefinition;
18
- name: import("pacc").AttributeDefinition;
19
- description: {
20
- writable: boolean;
21
- type: object;
22
14
  isKey: boolean;
15
+ writable: boolean;
23
16
  mandatory: boolean;
24
17
  collection: boolean;
25
18
  private?: boolean;
@@ -34,6 +27,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
34
27
  env?: string[] | string;
35
28
  additionalValues?: object;
36
29
  };
30
+ type: import("pacc").AttributeDefinition;
31
+ name: import("pacc").AttributeDefinition;
32
+ description: import("pacc").AttributeDefinition;
37
33
  priority: import("pacc").AttributeDefinition;
38
34
  directory: import("pacc").AttributeDefinition;
39
35
  packaging: import("pacc").AttributeDefinition;
@@ -46,34 +42,11 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
46
42
  key: string;
47
43
  attributes: {
48
44
  services: {
49
- type: string;
50
45
  collection: boolean;
51
- writable: boolean;
52
- };
53
- hostName: {
54
- writable: boolean;
55
- type: object;
56
- isKey: boolean;
57
- mandatory: boolean;
58
- collection: boolean;
59
- private?: boolean;
60
- depends?: string;
61
- description?: string;
62
- default?: any;
63
- set?: Function;
64
- get?: Function;
65
- prepareValue?: Function;
66
- values?: Set<any>;
67
- externalName?: string;
68
- env?: string[] | string;
69
- additionalValues?: object;
70
- };
71
- ipAddresses: {
72
- type: object;
46
+ type: string;
73
47
  isKey: boolean;
74
48
  writable: boolean;
75
49
  mandatory: boolean;
76
- collection: boolean;
77
50
  private?: boolean;
78
51
  depends?: string;
79
52
  description?: string;
@@ -86,10 +59,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
86
59
  env?: string[] | string;
87
60
  additionalValues?: object;
88
61
  };
89
- hwaddr: {
62
+ hostName: {
63
+ writable: boolean;
90
64
  type: object;
91
65
  isKey: boolean;
92
- writable: boolean;
93
66
  mandatory: boolean;
94
67
  collection: boolean;
95
68
  private?: boolean;
@@ -104,6 +77,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
104
77
  env?: string[] | string;
105
78
  additionalValues?: object;
106
79
  };
80
+ ipAddresses: import("pacc").AttributeDefinition;
81
+ hwaddr: import("pacc").AttributeDefinition;
107
82
  network: {
108
83
  type: {
109
84
  name: string;
@@ -119,15 +94,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
119
94
  attributes: {
120
95
  owner: {
121
96
  type: string;
122
- collection: boolean;
123
- writable: boolean;
124
- };
125
- type: import("pacc").AttributeDefinition;
126
- name: import("pacc").AttributeDefinition;
127
- description: {
128
- writable: boolean;
129
- type: object;
130
97
  isKey: boolean;
98
+ writable: boolean;
131
99
  mandatory: boolean;
132
100
  collection: boolean;
133
101
  private?: boolean;
@@ -142,6 +110,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
142
110
  env?: string[] | string;
143
111
  additionalValues?: object;
144
112
  };
113
+ type: import("pacc").AttributeDefinition;
114
+ name: import("pacc").AttributeDefinition;
115
+ description: import("pacc").AttributeDefinition;
145
116
  priority: import("pacc").AttributeDefinition;
146
117
  directory: import("pacc").AttributeDefinition;
147
118
  packaging: import("pacc").AttributeDefinition;
@@ -172,12 +143,38 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
172
143
  hosts: {
173
144
  type: string;
174
145
  collection: boolean;
146
+ isKey: boolean;
175
147
  writable: boolean;
148
+ mandatory: boolean;
149
+ private?: boolean;
150
+ depends?: string;
151
+ description?: string;
152
+ default?: any;
153
+ set?: Function;
154
+ get?: Function;
155
+ prepareValue?: Function;
156
+ values?: Set<any>;
157
+ externalName?: string;
158
+ env?: string[] | string;
159
+ additionalValues?: object;
176
160
  };
177
161
  clusters: {
178
162
  type: string;
179
163
  collection: boolean;
164
+ isKey: boolean;
180
165
  writable: boolean;
166
+ mandatory: boolean;
167
+ private?: boolean;
168
+ depends?: string;
169
+ description?: string;
170
+ default?: any;
171
+ set?: Function;
172
+ get?: Function;
173
+ prepareValue?: Function;
174
+ values?: Set<any>;
175
+ externalName?: string;
176
+ env?: string[] | string;
177
+ additionalValues?: object;
181
178
  };
182
179
  subnets: {
183
180
  type: {
@@ -211,7 +208,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
211
208
  };
212
209
  };
213
210
  collection: boolean;
211
+ isKey: boolean;
214
212
  writable: boolean;
213
+ mandatory: boolean;
214
+ private?: boolean;
215
+ depends?: string;
216
+ description?: string;
217
+ default?: any;
218
+ set?: Function;
219
+ get?: Function;
220
+ prepareValue?: Function;
221
+ values?: Set<any>;
222
+ externalName?: string;
223
+ env?: string[] | string;
224
+ additionalValues?: object;
215
225
  };
216
226
  country: import("pacc").AttributeDefinition;
217
227
  domain: import("pacc").AttributeDefinition;
@@ -373,11 +383,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
373
383
  multicastDNS: import("pacc").AttributeDefinition;
374
384
  };
375
385
  };
376
- collection: boolean;
377
- writable: boolean;
378
- };
379
- destination: {
380
- type: object;
381
386
  isKey: boolean;
382
387
  writable: boolean;
383
388
  mandatory: boolean;
@@ -394,6 +399,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
394
399
  env?: string[] | string;
395
400
  additionalValues?: object;
396
401
  };
402
+ destination: import("pacc").AttributeDefinition;
397
403
  cidrAddresses: import("pacc").AttributeDefinition;
398
404
  cidrAddress: import("pacc").AttributeDefinition;
399
405
  addresses: import("pacc").AttributeDefinition;
@@ -525,15 +531,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
525
531
  attributes: {
526
532
  owner: {
527
533
  type: string;
528
- collection: boolean;
529
- writable: boolean;
530
- };
531
- type: import("pacc").AttributeDefinition;
532
- name: import("pacc").AttributeDefinition;
533
- description: {
534
- writable: boolean;
535
- type: object;
536
534
  isKey: boolean;
535
+ writable: boolean;
537
536
  mandatory: boolean;
538
537
  collection: boolean;
539
538
  private?: boolean;
@@ -548,6 +547,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
548
547
  env?: string[] | string;
549
548
  additionalValues?: object;
550
549
  };
550
+ type: import("pacc").AttributeDefinition;
551
+ name: import("pacc").AttributeDefinition;
552
+ description: import("pacc").AttributeDefinition;
551
553
  priority: import("pacc").AttributeDefinition;
552
554
  directory: import("pacc").AttributeDefinition;
553
555
  packaging: import("pacc").AttributeDefinition;
@@ -560,34 +562,11 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
560
562
  key: string;
561
563
  attributes: {
562
564
  services: {
563
- type: string;
564
- collection: boolean;
565
- writable: boolean;
566
- };
567
- hostName: {
568
- writable: boolean;
569
- type: object;
570
- isKey: boolean;
571
- mandatory: boolean;
572
565
  collection: 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;
584
- };
585
- ipAddresses: {
586
- type: object;
566
+ type: string;
587
567
  isKey: boolean;
588
568
  writable: boolean;
589
569
  mandatory: boolean;
590
- collection: boolean;
591
570
  private?: boolean;
592
571
  depends?: string;
593
572
  description?: string;
@@ -600,10 +579,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
600
579
  env?: string[] | string;
601
580
  additionalValues?: object;
602
581
  };
603
- hwaddr: {
582
+ hostName: {
583
+ writable: boolean;
604
584
  type: object;
605
585
  isKey: boolean;
606
- writable: boolean;
607
586
  mandatory: boolean;
608
587
  collection: boolean;
609
588
  private?: boolean;
@@ -618,6 +597,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
618
597
  env?: string[] | string;
619
598
  additionalValues?: object;
620
599
  };
600
+ ipAddresses: import("pacc").AttributeDefinition;
601
+ hwaddr: import("pacc").AttributeDefinition;
621
602
  network: {
622
603
  type: {
623
604
  name: string;
@@ -633,15 +614,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
633
614
  attributes: {
634
615
  owner: {
635
616
  type: string;
636
- collection: boolean;
637
- writable: boolean;
638
- };
639
- type: import("pacc").AttributeDefinition;
640
- name: import("pacc").AttributeDefinition;
641
- description: {
642
- writable: boolean;
643
- type: object;
644
617
  isKey: boolean;
618
+ writable: boolean;
645
619
  mandatory: boolean;
646
620
  collection: boolean;
647
621
  private?: boolean;
@@ -656,6 +630,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
656
630
  env?: string[] | string;
657
631
  additionalValues?: object;
658
632
  };
633
+ type: import("pacc").AttributeDefinition;
634
+ name: import("pacc").AttributeDefinition;
635
+ description: import("pacc").AttributeDefinition;
659
636
  priority: import("pacc").AttributeDefinition;
660
637
  directory: import("pacc").AttributeDefinition;
661
638
  packaging: import("pacc").AttributeDefinition;
@@ -686,12 +663,38 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
686
663
  hosts: {
687
664
  type: string;
688
665
  collection: boolean;
666
+ isKey: boolean;
689
667
  writable: boolean;
668
+ mandatory: boolean;
669
+ private?: boolean;
670
+ depends?: string;
671
+ description?: string;
672
+ default?: any;
673
+ set?: Function;
674
+ get?: Function;
675
+ prepareValue?: Function;
676
+ values?: Set<any>;
677
+ externalName?: string;
678
+ env?: string[] | string;
679
+ additionalValues?: object;
690
680
  };
691
681
  clusters: {
692
682
  type: string;
693
683
  collection: boolean;
684
+ isKey: boolean;
694
685
  writable: boolean;
686
+ mandatory: boolean;
687
+ private?: boolean;
688
+ depends?: string;
689
+ description?: string;
690
+ default?: any;
691
+ set?: Function;
692
+ get?: Function;
693
+ prepareValue?: Function;
694
+ values?: Set<any>;
695
+ externalName?: string;
696
+ env?: string[] | string;
697
+ additionalValues?: object;
695
698
  };
696
699
  subnets: {
697
700
  type: {
@@ -725,7 +728,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
725
728
  };
726
729
  };
727
730
  collection: boolean;
731
+ isKey: boolean;
728
732
  writable: boolean;
733
+ mandatory: boolean;
734
+ private?: boolean;
735
+ depends?: string;
736
+ description?: string;
737
+ default?: any;
738
+ set?: Function;
739
+ get?: Function;
740
+ prepareValue?: Function;
741
+ values?: Set<any>;
742
+ externalName?: string;
743
+ env?: string[] | string;
744
+ additionalValues?: object;
729
745
  };
730
746
  country: import("pacc").AttributeDefinition;
731
747
  domain: import("pacc").AttributeDefinition;
@@ -887,11 +903,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
887
903
  multicastDNS: import("pacc").AttributeDefinition;
888
904
  };
889
905
  };
890
- collection: boolean;
891
- writable: boolean;
892
- };
893
- destination: {
894
- type: object;
895
906
  isKey: boolean;
896
907
  writable: boolean;
897
908
  mandatory: boolean;
@@ -908,6 +919,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
908
919
  env?: string[] | string;
909
920
  additionalValues?: object;
910
921
  };
922
+ destination: import("pacc").AttributeDefinition;
911
923
  cidrAddresses: import("pacc").AttributeDefinition;
912
924
  cidrAddress: import("pacc").AttributeDefinition;
913
925
  addresses: import("pacc").AttributeDefinition;
@@ -1037,15 +1049,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1037
1049
  attributes: {
1038
1050
  owner: {
1039
1051
  type: string;
1040
- collection: boolean;
1041
- writable: boolean;
1042
- };
1043
- type: import("pacc").AttributeDefinition;
1044
- name: import("pacc").AttributeDefinition;
1045
- description: {
1046
- writable: boolean;
1047
- type: object;
1048
1052
  isKey: boolean;
1053
+ writable: boolean;
1049
1054
  mandatory: boolean;
1050
1055
  collection: boolean;
1051
1056
  private?: boolean;
@@ -1060,6 +1065,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1060
1065
  env?: string[] | string;
1061
1066
  additionalValues?: object;
1062
1067
  };
1068
+ type: import("pacc").AttributeDefinition;
1069
+ name: import("pacc").AttributeDefinition;
1070
+ description: import("pacc").AttributeDefinition;
1063
1071
  priority: import("pacc").AttributeDefinition;
1064
1072
  directory: import("pacc").AttributeDefinition;
1065
1073
  packaging: import("pacc").AttributeDefinition;
@@ -1072,34 +1080,11 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1072
1080
  key: string;
1073
1081
  attributes: {
1074
1082
  services: {
1075
- type: string;
1076
1083
  collection: boolean;
1077
- writable: boolean;
1078
- };
1079
- hostName: {
1080
- writable: boolean;
1081
- type: object;
1082
- isKey: boolean;
1083
- mandatory: boolean;
1084
- collection: boolean;
1085
- private?: boolean;
1086
- depends?: string;
1087
- description?: string;
1088
- default?: any;
1089
- set?: Function;
1090
- get?: Function;
1091
- prepareValue?: Function;
1092
- values?: Set<any>;
1093
- externalName?: string;
1094
- env?: string[] | string;
1095
- additionalValues?: object;
1096
- };
1097
- ipAddresses: {
1098
- type: object;
1084
+ type: string;
1099
1085
  isKey: boolean;
1100
1086
  writable: boolean;
1101
1087
  mandatory: boolean;
1102
- collection: boolean;
1103
1088
  private?: boolean;
1104
1089
  depends?: string;
1105
1090
  description?: string;
@@ -1112,10 +1097,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1112
1097
  env?: string[] | string;
1113
1098
  additionalValues?: object;
1114
1099
  };
1115
- hwaddr: {
1100
+ hostName: {
1101
+ writable: boolean;
1116
1102
  type: object;
1117
1103
  isKey: boolean;
1118
- writable: boolean;
1119
1104
  mandatory: boolean;
1120
1105
  collection: boolean;
1121
1106
  private?: boolean;
@@ -1130,6 +1115,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1130
1115
  env?: string[] | string;
1131
1116
  additionalValues?: object;
1132
1117
  };
1118
+ ipAddresses: import("pacc").AttributeDefinition;
1119
+ hwaddr: import("pacc").AttributeDefinition;
1133
1120
  network: {
1134
1121
  type: {
1135
1122
  name: string;
@@ -1145,15 +1132,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1145
1132
  attributes: {
1146
1133
  owner: {
1147
1134
  type: string;
1148
- collection: boolean;
1149
- writable: boolean;
1150
- };
1151
- type: import("pacc").AttributeDefinition;
1152
- name: import("pacc").AttributeDefinition;
1153
- description: {
1154
- writable: boolean;
1155
- type: object;
1156
1135
  isKey: boolean;
1136
+ writable: boolean;
1157
1137
  mandatory: boolean;
1158
1138
  collection: boolean;
1159
1139
  private?: boolean;
@@ -1168,6 +1148,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1168
1148
  env?: string[] | string;
1169
1149
  additionalValues?: object;
1170
1150
  };
1151
+ type: import("pacc").AttributeDefinition;
1152
+ name: import("pacc").AttributeDefinition;
1153
+ description: import("pacc").AttributeDefinition;
1171
1154
  priority: import("pacc").AttributeDefinition;
1172
1155
  directory: import("pacc").AttributeDefinition;
1173
1156
  packaging: import("pacc").AttributeDefinition;
@@ -1198,12 +1181,38 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1198
1181
  hosts: {
1199
1182
  type: string;
1200
1183
  collection: boolean;
1184
+ isKey: boolean;
1201
1185
  writable: boolean;
1186
+ mandatory: boolean;
1187
+ private?: boolean;
1188
+ depends?: string;
1189
+ description?: string;
1190
+ default?: any;
1191
+ set?: Function;
1192
+ get?: Function;
1193
+ prepareValue?: Function;
1194
+ values?: Set<any>;
1195
+ externalName?: string;
1196
+ env?: string[] | string;
1197
+ additionalValues?: object;
1202
1198
  };
1203
1199
  clusters: {
1204
1200
  type: string;
1205
1201
  collection: boolean;
1202
+ isKey: boolean;
1206
1203
  writable: boolean;
1204
+ mandatory: boolean;
1205
+ private?: boolean;
1206
+ depends?: string;
1207
+ description?: string;
1208
+ default?: any;
1209
+ set?: Function;
1210
+ get?: Function;
1211
+ prepareValue?: Function;
1212
+ values?: Set<any>;
1213
+ externalName?: string;
1214
+ env?: string[] | string;
1215
+ additionalValues?: object;
1207
1216
  };
1208
1217
  subnets: {
1209
1218
  type: {
@@ -1237,7 +1246,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1237
1246
  };
1238
1247
  };
1239
1248
  collection: boolean;
1249
+ isKey: boolean;
1240
1250
  writable: boolean;
1251
+ mandatory: boolean;
1252
+ private?: boolean;
1253
+ depends?: string;
1254
+ description?: string;
1255
+ default?: any;
1256
+ set?: Function;
1257
+ get?: Function;
1258
+ prepareValue?: Function;
1259
+ values?: Set<any>;
1260
+ externalName?: string;
1261
+ env?: string[] | string;
1262
+ additionalValues?: object;
1241
1263
  };
1242
1264
  country: import("pacc").AttributeDefinition;
1243
1265
  domain: import("pacc").AttributeDefinition;
@@ -1399,11 +1421,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1399
1421
  multicastDNS: import("pacc").AttributeDefinition;
1400
1422
  };
1401
1423
  };
1402
- collection: boolean;
1403
- writable: boolean;
1404
- };
1405
- destination: {
1406
- type: object;
1407
1424
  isKey: boolean;
1408
1425
  writable: boolean;
1409
1426
  mandatory: boolean;
@@ -1420,6 +1437,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1420
1437
  env?: string[] | string;
1421
1438
  additionalValues?: object;
1422
1439
  };
1440
+ destination: import("pacc").AttributeDefinition;
1423
1441
  cidrAddresses: import("pacc").AttributeDefinition;
1424
1442
  cidrAddress: import("pacc").AttributeDefinition;
1425
1443
  addresses: import("pacc").AttributeDefinition;
@@ -1544,7 +1562,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1544
1562
  arpbridge: {
1545
1563
  type: string;
1546
1564
  collection: boolean;
1565
+ isKey: boolean;
1547
1566
  writable: boolean;
1567
+ mandatory: boolean;
1568
+ private?: boolean;
1569
+ depends?: string;
1570
+ description?: string;
1571
+ default?: any;
1572
+ set?: Function;
1573
+ get?: Function;
1574
+ prepareValue?: Function;
1575
+ values?: Set<any>;
1576
+ externalName?: string;
1577
+ env?: string[] | string;
1578
+ additionalValues?: object;
1548
1579
  };
1549
1580
  };
1550
1581
  };