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
@@ -6,11 +6,24 @@ export namespace EthernetNetworkInterfaceTypeDefinition {
6
6
  export let priority: number;
7
7
  export let key: string;
8
8
  export namespace attributes {
9
- namespace arpbridge {
10
- let type: string;
11
- let collection: boolean;
12
- let writable: boolean;
13
- }
9
+ let arpbridge: {
10
+ type: string;
11
+ collection: boolean;
12
+ isKey: boolean;
13
+ writable: boolean;
14
+ mandatory: boolean;
15
+ private?: boolean;
16
+ depends?: string;
17
+ description?: string;
18
+ default?: any;
19
+ set?: Function;
20
+ get?: Function;
21
+ prepareValue?: Function;
22
+ values?: Set<any>;
23
+ externalName?: string;
24
+ env?: string[] | string;
25
+ additionalValues?: object;
26
+ };
14
27
  }
15
28
  }
16
29
  export class EthernetNetworkInterface extends NetworkInterface {
@@ -26,15 +39,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
26
39
  attributes: {
27
40
  owner: {
28
41
  type: string;
29
- collection: boolean;
30
- writable: boolean;
31
- };
32
- type: import("pacc").AttributeDefinition;
33
- name: import("pacc").AttributeDefinition;
34
- description: {
35
- writable: boolean;
36
- type: object;
37
42
  isKey: boolean;
43
+ writable: boolean;
38
44
  mandatory: boolean;
39
45
  collection: boolean;
40
46
  private?: boolean;
@@ -49,6 +55,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
49
55
  env?: string[] | string;
50
56
  additionalValues?: object;
51
57
  };
58
+ type: import("pacc").AttributeDefinition;
59
+ name: import("pacc").AttributeDefinition;
60
+ description: import("pacc").AttributeDefinition;
52
61
  priority: import("pacc").AttributeDefinition;
53
62
  directory: import("pacc").AttributeDefinition;
54
63
  packaging: import("pacc").AttributeDefinition;
@@ -61,34 +70,11 @@ export class EthernetNetworkInterface extends NetworkInterface {
61
70
  key: string;
62
71
  attributes: {
63
72
  services: {
64
- type: string;
65
73
  collection: boolean;
66
- writable: boolean;
67
- };
68
- hostName: {
69
- writable: boolean;
70
- type: object;
71
- isKey: boolean;
72
- mandatory: boolean;
73
- collection: boolean;
74
- private?: boolean;
75
- depends?: string;
76
- description?: string;
77
- default?: any;
78
- set?: Function;
79
- get?: Function;
80
- prepareValue?: Function;
81
- values?: Set<any>;
82
- externalName?: string;
83
- env?: string[] | string;
84
- additionalValues?: object;
85
- };
86
- ipAddresses: {
87
- type: object;
74
+ type: string;
88
75
  isKey: boolean;
89
76
  writable: boolean;
90
77
  mandatory: boolean;
91
- collection: boolean;
92
78
  private?: boolean;
93
79
  depends?: string;
94
80
  description?: string;
@@ -101,10 +87,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
101
87
  env?: string[] | string;
102
88
  additionalValues?: object;
103
89
  };
104
- hwaddr: {
90
+ hostName: {
91
+ writable: boolean;
105
92
  type: object;
106
93
  isKey: boolean;
107
- writable: boolean;
108
94
  mandatory: boolean;
109
95
  collection: boolean;
110
96
  private?: boolean;
@@ -119,6 +105,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
119
105
  env?: string[] | string;
120
106
  additionalValues?: object;
121
107
  };
108
+ ipAddresses: import("pacc").AttributeDefinition;
109
+ hwaddr: import("pacc").AttributeDefinition;
122
110
  network: {
123
111
  type: {
124
112
  name: string;
@@ -134,15 +122,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
134
122
  attributes: {
135
123
  owner: {
136
124
  type: string;
137
- collection: boolean;
138
- writable: boolean;
139
- };
140
- type: import("pacc").AttributeDefinition;
141
- name: import("pacc").AttributeDefinition;
142
- description: {
143
- writable: boolean;
144
- type: object;
145
125
  isKey: boolean;
126
+ writable: boolean;
146
127
  mandatory: boolean;
147
128
  collection: boolean;
148
129
  private?: boolean;
@@ -157,6 +138,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
157
138
  env?: string[] | string;
158
139
  additionalValues?: object;
159
140
  };
141
+ type: import("pacc").AttributeDefinition;
142
+ name: import("pacc").AttributeDefinition;
143
+ description: import("pacc").AttributeDefinition;
160
144
  priority: import("pacc").AttributeDefinition;
161
145
  directory: import("pacc").AttributeDefinition;
162
146
  packaging: import("pacc").AttributeDefinition;
@@ -187,12 +171,38 @@ export class EthernetNetworkInterface extends NetworkInterface {
187
171
  hosts: {
188
172
  type: string;
189
173
  collection: boolean;
174
+ isKey: boolean;
190
175
  writable: boolean;
176
+ mandatory: boolean;
177
+ private?: boolean;
178
+ depends?: string;
179
+ description?: string;
180
+ default?: any;
181
+ set?: Function;
182
+ get?: Function;
183
+ prepareValue?: Function;
184
+ values?: Set<any>;
185
+ externalName?: string;
186
+ env?: string[] | string;
187
+ additionalValues?: object;
191
188
  };
192
189
  clusters: {
193
190
  type: string;
194
191
  collection: boolean;
192
+ isKey: boolean;
195
193
  writable: boolean;
194
+ mandatory: boolean;
195
+ private?: boolean;
196
+ depends?: string;
197
+ description?: string;
198
+ default?: any;
199
+ set?: Function;
200
+ get?: Function;
201
+ prepareValue?: Function;
202
+ values?: Set<any>;
203
+ externalName?: string;
204
+ env?: string[] | string;
205
+ additionalValues?: object;
196
206
  };
197
207
  subnets: {
198
208
  type: {
@@ -226,7 +236,20 @@ export class EthernetNetworkInterface extends NetworkInterface {
226
236
  };
227
237
  };
228
238
  collection: boolean;
239
+ isKey: boolean;
229
240
  writable: boolean;
241
+ mandatory: boolean;
242
+ private?: boolean;
243
+ depends?: string;
244
+ description?: string;
245
+ default?: any;
246
+ set?: Function;
247
+ get?: Function;
248
+ prepareValue?: Function;
249
+ values?: Set<any>;
250
+ externalName?: string;
251
+ env?: string[] | string;
252
+ additionalValues?: object;
230
253
  };
231
254
  country: import("pacc").AttributeDefinition;
232
255
  domain: import("pacc").AttributeDefinition;
@@ -388,11 +411,6 @@ export class EthernetNetworkInterface extends NetworkInterface {
388
411
  multicastDNS: import("pacc").AttributeDefinition;
389
412
  };
390
413
  };
391
- collection: boolean;
392
- writable: boolean;
393
- };
394
- destination: {
395
- type: object;
396
414
  isKey: boolean;
397
415
  writable: boolean;
398
416
  mandatory: boolean;
@@ -409,6 +427,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
409
427
  env?: string[] | string;
410
428
  additionalValues?: object;
411
429
  };
430
+ destination: import("pacc").AttributeDefinition;
412
431
  cidrAddresses: import("pacc").AttributeDefinition;
413
432
  cidrAddress: import("pacc").AttributeDefinition;
414
433
  addresses: import("pacc").AttributeDefinition;
@@ -538,15 +557,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
538
557
  attributes: {
539
558
  owner: {
540
559
  type: string;
541
- collection: boolean;
542
- writable: boolean;
543
- };
544
- type: import("pacc").AttributeDefinition;
545
- name: import("pacc").AttributeDefinition;
546
- description: {
547
- writable: boolean;
548
- type: object;
549
560
  isKey: boolean;
561
+ writable: boolean;
550
562
  mandatory: boolean;
551
563
  collection: boolean;
552
564
  private?: boolean;
@@ -561,6 +573,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
561
573
  env?: string[] | string;
562
574
  additionalValues?: object;
563
575
  };
576
+ type: import("pacc").AttributeDefinition;
577
+ name: import("pacc").AttributeDefinition;
578
+ description: import("pacc").AttributeDefinition;
564
579
  priority: import("pacc").AttributeDefinition;
565
580
  directory: import("pacc").AttributeDefinition;
566
581
  packaging: import("pacc").AttributeDefinition;
@@ -573,34 +588,11 @@ export class EthernetNetworkInterface extends NetworkInterface {
573
588
  key: string;
574
589
  attributes: {
575
590
  services: {
576
- type: string;
577
- collection: boolean;
578
- writable: boolean;
579
- };
580
- hostName: {
581
- writable: boolean;
582
- type: object;
583
- isKey: boolean;
584
- mandatory: boolean;
585
591
  collection: boolean;
586
- private?: boolean;
587
- depends?: string;
588
- description?: string;
589
- default?: any;
590
- set?: Function;
591
- get?: Function;
592
- prepareValue?: Function;
593
- values?: Set<any>;
594
- externalName?: string;
595
- env?: string[] | string;
596
- additionalValues?: object;
597
- };
598
- ipAddresses: {
599
- type: object;
592
+ type: string;
600
593
  isKey: boolean;
601
594
  writable: boolean;
602
595
  mandatory: boolean;
603
- collection: boolean;
604
596
  private?: boolean;
605
597
  depends?: string;
606
598
  description?: string;
@@ -613,10 +605,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
613
605
  env?: string[] | string;
614
606
  additionalValues?: object;
615
607
  };
616
- hwaddr: {
608
+ hostName: {
609
+ writable: boolean;
617
610
  type: object;
618
611
  isKey: boolean;
619
- writable: boolean;
620
612
  mandatory: boolean;
621
613
  collection: boolean;
622
614
  private?: boolean;
@@ -631,6 +623,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
631
623
  env?: string[] | string;
632
624
  additionalValues?: object;
633
625
  };
626
+ ipAddresses: import("pacc").AttributeDefinition;
627
+ hwaddr: import("pacc").AttributeDefinition;
634
628
  network: {
635
629
  type: {
636
630
  name: string;
@@ -646,15 +640,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
646
640
  attributes: {
647
641
  owner: {
648
642
  type: string;
649
- collection: boolean;
650
- writable: boolean;
651
- };
652
- type: import("pacc").AttributeDefinition;
653
- name: import("pacc").AttributeDefinition;
654
- description: {
655
- writable: boolean;
656
- type: object;
657
643
  isKey: boolean;
644
+ writable: boolean;
658
645
  mandatory: boolean;
659
646
  collection: boolean;
660
647
  private?: boolean;
@@ -669,6 +656,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
669
656
  env?: string[] | string;
670
657
  additionalValues?: object;
671
658
  };
659
+ type: import("pacc").AttributeDefinition;
660
+ name: import("pacc").AttributeDefinition;
661
+ description: import("pacc").AttributeDefinition;
672
662
  priority: import("pacc").AttributeDefinition;
673
663
  directory: import("pacc").AttributeDefinition;
674
664
  packaging: import("pacc").AttributeDefinition;
@@ -699,12 +689,38 @@ export class EthernetNetworkInterface extends NetworkInterface {
699
689
  hosts: {
700
690
  type: string;
701
691
  collection: boolean;
692
+ isKey: boolean;
702
693
  writable: boolean;
694
+ mandatory: boolean;
695
+ private?: boolean;
696
+ depends?: string;
697
+ description?: string;
698
+ default?: any;
699
+ set?: Function;
700
+ get?: Function;
701
+ prepareValue?: Function;
702
+ values?: Set<any>;
703
+ externalName?: string;
704
+ env?: string[] | string;
705
+ additionalValues?: object;
703
706
  };
704
707
  clusters: {
705
708
  type: string;
706
709
  collection: boolean;
710
+ isKey: boolean;
707
711
  writable: boolean;
712
+ mandatory: boolean;
713
+ private?: boolean;
714
+ depends?: string;
715
+ description?: string;
716
+ default?: any;
717
+ set?: Function;
718
+ get?: Function;
719
+ prepareValue?: Function;
720
+ values?: Set<any>;
721
+ externalName?: string;
722
+ env?: string[] | string;
723
+ additionalValues?: object;
708
724
  };
709
725
  subnets: {
710
726
  type: {
@@ -738,7 +754,20 @@ export class EthernetNetworkInterface extends NetworkInterface {
738
754
  };
739
755
  };
740
756
  collection: boolean;
757
+ isKey: boolean;
741
758
  writable: boolean;
759
+ mandatory: boolean;
760
+ private?: boolean;
761
+ depends?: string;
762
+ description?: string;
763
+ default?: any;
764
+ set?: Function;
765
+ get?: Function;
766
+ prepareValue?: Function;
767
+ values?: Set<any>;
768
+ externalName?: string;
769
+ env?: string[] | string;
770
+ additionalValues?: object;
742
771
  };
743
772
  country: import("pacc").AttributeDefinition;
744
773
  domain: import("pacc").AttributeDefinition;
@@ -900,11 +929,6 @@ export class EthernetNetworkInterface extends NetworkInterface {
900
929
  multicastDNS: import("pacc").AttributeDefinition;
901
930
  };
902
931
  };
903
- collection: boolean;
904
- writable: boolean;
905
- };
906
- destination: {
907
- type: object;
908
932
  isKey: boolean;
909
933
  writable: boolean;
910
934
  mandatory: boolean;
@@ -921,6 +945,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
921
945
  env?: string[] | string;
922
946
  additionalValues?: object;
923
947
  };
948
+ destination: import("pacc").AttributeDefinition;
924
949
  cidrAddresses: import("pacc").AttributeDefinition;
925
950
  cidrAddress: import("pacc").AttributeDefinition;
926
951
  addresses: import("pacc").AttributeDefinition;
@@ -1045,7 +1070,20 @@ export class EthernetNetworkInterface extends NetworkInterface {
1045
1070
  arpbridge: {
1046
1071
  type: string;
1047
1072
  collection: boolean;
1073
+ isKey: boolean;
1048
1074
  writable: boolean;
1075
+ mandatory: boolean;
1076
+ private?: boolean;
1077
+ depends?: string;
1078
+ description?: string;
1079
+ default?: any;
1080
+ set?: Function;
1081
+ get?: Function;
1082
+ prepareValue?: Function;
1083
+ values?: Set<any>;
1084
+ externalName?: string;
1085
+ env?: string[] | string;
1086
+ additionalValues?: object;
1049
1087
  };
1050
1088
  };
1051
1089
  };