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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
46
42
  key: string;
47
43
  attributes: {
48
44
  services: {
49
- type: string;
50
- collection: boolean;
51
- writable: boolean;
52
- };
53
- hostName: {
54
- writable: boolean;
55
- type: object;
56
- isKey: boolean;
57
- mandatory: boolean;
58
45
  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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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;
@@ -523,15 +529,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
523
529
  attributes: {
524
530
  owner: {
525
531
  type: string;
526
- collection: boolean;
527
- writable: boolean;
528
- };
529
- type: import("pacc").AttributeDefinition;
530
- name: import("pacc").AttributeDefinition;
531
- description: {
532
- writable: boolean;
533
- type: object;
534
532
  isKey: boolean;
533
+ writable: boolean;
535
534
  mandatory: boolean;
536
535
  collection: boolean;
537
536
  private?: boolean;
@@ -546,6 +545,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
546
545
  env?: string[] | string;
547
546
  additionalValues?: object;
548
547
  };
548
+ type: import("pacc").AttributeDefinition;
549
+ name: import("pacc").AttributeDefinition;
550
+ description: import("pacc").AttributeDefinition;
549
551
  priority: import("pacc").AttributeDefinition;
550
552
  directory: import("pacc").AttributeDefinition;
551
553
  packaging: import("pacc").AttributeDefinition;
@@ -558,34 +560,11 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
558
560
  key: string;
559
561
  attributes: {
560
562
  services: {
561
- type: string;
562
- collection: boolean;
563
- writable: boolean;
564
- };
565
- hostName: {
566
- writable: boolean;
567
- type: object;
568
- isKey: boolean;
569
- mandatory: boolean;
570
563
  collection: boolean;
571
- private?: boolean;
572
- depends?: string;
573
- description?: string;
574
- default?: any;
575
- set?: Function;
576
- get?: Function;
577
- prepareValue?: Function;
578
- values?: Set<any>;
579
- externalName?: string;
580
- env?: string[] | string;
581
- additionalValues?: object;
582
- };
583
- ipAddresses: {
584
- type: object;
564
+ type: string;
585
565
  isKey: boolean;
586
566
  writable: boolean;
587
567
  mandatory: boolean;
588
- collection: boolean;
589
568
  private?: boolean;
590
569
  depends?: string;
591
570
  description?: string;
@@ -598,10 +577,10 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
598
577
  env?: string[] | string;
599
578
  additionalValues?: object;
600
579
  };
601
- hwaddr: {
580
+ hostName: {
581
+ writable: boolean;
602
582
  type: object;
603
583
  isKey: boolean;
604
- writable: boolean;
605
584
  mandatory: boolean;
606
585
  collection: boolean;
607
586
  private?: boolean;
@@ -616,6 +595,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
616
595
  env?: string[] | string;
617
596
  additionalValues?: object;
618
597
  };
598
+ ipAddresses: import("pacc").AttributeDefinition;
599
+ hwaddr: import("pacc").AttributeDefinition;
619
600
  network: {
620
601
  type: {
621
602
  name: string;
@@ -631,15 +612,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
631
612
  attributes: {
632
613
  owner: {
633
614
  type: string;
634
- collection: boolean;
635
- writable: boolean;
636
- };
637
- type: import("pacc").AttributeDefinition;
638
- name: import("pacc").AttributeDefinition;
639
- description: {
640
- writable: boolean;
641
- type: object;
642
615
  isKey: boolean;
616
+ writable: boolean;
643
617
  mandatory: boolean;
644
618
  collection: boolean;
645
619
  private?: boolean;
@@ -654,6 +628,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
654
628
  env?: string[] | string;
655
629
  additionalValues?: object;
656
630
  };
631
+ type: import("pacc").AttributeDefinition;
632
+ name: import("pacc").AttributeDefinition;
633
+ description: import("pacc").AttributeDefinition;
657
634
  priority: import("pacc").AttributeDefinition;
658
635
  directory: import("pacc").AttributeDefinition;
659
636
  packaging: import("pacc").AttributeDefinition;
@@ -684,12 +661,38 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
684
661
  hosts: {
685
662
  type: string;
686
663
  collection: boolean;
664
+ isKey: boolean;
687
665
  writable: boolean;
666
+ mandatory: boolean;
667
+ private?: boolean;
668
+ depends?: string;
669
+ description?: string;
670
+ default?: any;
671
+ set?: Function;
672
+ get?: Function;
673
+ prepareValue?: Function;
674
+ values?: Set<any>;
675
+ externalName?: string;
676
+ env?: string[] | string;
677
+ additionalValues?: object;
688
678
  };
689
679
  clusters: {
690
680
  type: string;
691
681
  collection: boolean;
682
+ isKey: boolean;
692
683
  writable: boolean;
684
+ mandatory: boolean;
685
+ private?: boolean;
686
+ depends?: string;
687
+ description?: string;
688
+ default?: any;
689
+ set?: Function;
690
+ get?: Function;
691
+ prepareValue?: Function;
692
+ values?: Set<any>;
693
+ externalName?: string;
694
+ env?: string[] | string;
695
+ additionalValues?: object;
693
696
  };
694
697
  subnets: {
695
698
  type: {
@@ -723,7 +726,20 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
723
726
  };
724
727
  };
725
728
  collection: boolean;
729
+ isKey: boolean;
726
730
  writable: boolean;
731
+ mandatory: boolean;
732
+ private?: boolean;
733
+ depends?: string;
734
+ description?: string;
735
+ default?: any;
736
+ set?: Function;
737
+ get?: Function;
738
+ prepareValue?: Function;
739
+ values?: Set<any>;
740
+ externalName?: string;
741
+ env?: string[] | string;
742
+ additionalValues?: object;
727
743
  };
728
744
  country: import("pacc").AttributeDefinition;
729
745
  domain: import("pacc").AttributeDefinition;
@@ -885,11 +901,6 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
885
901
  multicastDNS: import("pacc").AttributeDefinition;
886
902
  };
887
903
  };
888
- collection: boolean;
889
- writable: boolean;
890
- };
891
- destination: {
892
- type: object;
893
904
  isKey: boolean;
894
905
  writable: boolean;
895
906
  mandatory: boolean;
@@ -906,6 +917,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
906
917
  env?: string[] | string;
907
918
  additionalValues?: object;
908
919
  };
920
+ destination: import("pacc").AttributeDefinition;
909
921
  cidrAddresses: import("pacc").AttributeDefinition;
910
922
  cidrAddress: import("pacc").AttributeDefinition;
911
923
  addresses: import("pacc").AttributeDefinition;