pmcf 3.8.9 → 3.8.10

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 (38) hide show
  1. package/package.json +3 -3
  2. package/src/base.mjs +4 -6
  3. package/src/cluster.mjs +3 -3
  4. package/src/host.mjs +17 -20
  5. package/src/network-interfaces/network-interface.mjs +5 -6
  6. package/src/network-support.mjs +15 -18
  7. package/src/owner.mjs +8 -7
  8. package/src/service.mjs +4 -5
  9. package/src/services/bind.mjs +6 -6
  10. package/src/services/systemd-journal-upload.mjs +2 -2
  11. package/types/base.d.mts +2 -28
  12. package/types/cluster.d.mts +102 -154
  13. package/types/extra-source-service.d.mts +25 -51
  14. package/types/host.d.mts +68 -94
  15. package/types/location.d.mts +64 -116
  16. package/types/network-interfaces/ethernet.d.mts +60 -112
  17. package/types/network-interfaces/loopback.d.mts +60 -112
  18. package/types/network-interfaces/network-interface.d.mts +60 -112
  19. package/types/network-interfaces/tun.d.mts +60 -112
  20. package/types/network-interfaces/wireguard.d.mts +60 -112
  21. package/types/network-interfaces/wlan.d.mts +90 -168
  22. package/types/network-support.d.mts +25 -25
  23. package/types/network.d.mts +37 -63
  24. package/types/owner.d.mts +32 -58
  25. package/types/root.d.mts +64 -116
  26. package/types/service.d.mts +52 -104
  27. package/types/services/bind.d.mts +55 -107
  28. package/types/services/chrony.d.mts +50 -102
  29. package/types/services/headscale.d.mts +50 -102
  30. package/types/services/influxdb.d.mts +50 -102
  31. package/types/services/kea.d.mts +50 -102
  32. package/types/services/mosquitto.d.mts +50 -102
  33. package/types/services/openldap.d.mts +50 -102
  34. package/types/services/systemd-journal-remote.d.mts +50 -102
  35. package/types/services/systemd-journal-upload.d.mts +51 -103
  36. package/types/services/systemd-journal.d.mts +50 -102
  37. package/types/services/systemd-resolved.d.mts +50 -102
  38. package/types/services/systemd-timesyncd.d.mts +50 -102
@@ -15,20 +15,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
15
15
  writable: boolean;
16
16
  };
17
17
  type: import("pacc").AttributeDefinition;
18
- name: {
19
- writable: boolean;
20
- type: string;
21
- isKey: boolean;
22
- mandatory: boolean;
23
- collection: boolean;
24
- private?: boolean;
25
- depends?: string;
26
- description?: string;
27
- default?: any;
28
- set?: Function;
29
- get?: Function;
30
- env?: string[] | string;
31
- };
18
+ name: import("pacc").AttributeDefinition;
32
19
  description: {
33
20
  writable: boolean;
34
21
  type: string;
@@ -58,20 +45,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
58
45
  get?: Function;
59
46
  env?: string[] | string;
60
47
  };
61
- packaging: {
62
- writable: boolean;
63
- type: string;
64
- isKey: boolean;
65
- mandatory: boolean;
66
- collection: boolean;
67
- private?: boolean;
68
- depends?: string;
69
- description?: string;
70
- default?: any;
71
- set?: Function;
72
- get?: Function;
73
- env?: string[] | string;
74
- };
48
+ packaging: import("pacc").AttributeDefinition;
75
49
  disabled: import("pacc").AttributeDefinition;
76
50
  tags: import("pacc").AttributeDefinition;
77
51
  };
@@ -99,9 +73,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
99
73
  env?: string[] | string;
100
74
  };
101
75
  ipAddresses: {
102
- writable: boolean;
103
76
  type: string;
104
77
  isKey: boolean;
78
+ writable: boolean;
105
79
  mandatory: boolean;
106
80
  collection: boolean;
107
81
  private?: boolean;
@@ -113,9 +87,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
113
87
  env?: string[] | string;
114
88
  };
115
89
  hwaddr: {
116
- writable: boolean;
117
90
  type: string;
118
91
  isKey: boolean;
92
+ writable: boolean;
119
93
  mandatory: boolean;
120
94
  collection: boolean;
121
95
  private?: boolean;
@@ -132,9 +106,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
132
106
  writable: boolean;
133
107
  };
134
108
  destination: {
135
- writable: boolean;
136
109
  type: string;
137
110
  isKey: boolean;
111
+ writable: boolean;
138
112
  mandatory: boolean;
139
113
  collection: boolean;
140
114
  private?: boolean;
@@ -146,23 +120,23 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
146
120
  env?: string[] | string;
147
121
  };
148
122
  cidrAddresses: {
149
- writable: boolean;
150
- collection: boolean;
151
123
  type: string;
152
124
  isKey: boolean;
125
+ writable: boolean;
153
126
  mandatory: boolean;
154
- private: boolean;
155
- depends: string;
156
- description: string;
157
- default: any;
158
- set: Function;
159
- get: Function;
160
- env: string[] | string;
127
+ collection: boolean;
128
+ private?: boolean;
129
+ depends?: string;
130
+ description?: string;
131
+ default?: any;
132
+ set?: Function;
133
+ get?: Function;
134
+ env?: string[] | string;
161
135
  };
162
136
  cidrAddress: {
163
- writable: boolean;
164
137
  type: string;
165
138
  isKey: boolean;
139
+ writable: boolean;
166
140
  mandatory: boolean;
167
141
  collection: boolean;
168
142
  private?: boolean;
@@ -174,23 +148,23 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
174
148
  env?: string[] | string;
175
149
  };
176
150
  addresses: {
177
- writable: boolean;
178
- collection: boolean;
179
151
  type: string;
180
152
  isKey: boolean;
153
+ writable: boolean;
181
154
  mandatory: boolean;
182
- private: boolean;
183
- depends: string;
184
- description: string;
185
- default: any;
186
- set: Function;
187
- get: Function;
188
- env: string[] | string;
155
+ collection: boolean;
156
+ private?: boolean;
157
+ depends?: string;
158
+ description?: string;
159
+ default?: any;
160
+ set?: Function;
161
+ get?: Function;
162
+ env?: string[] | string;
189
163
  };
190
164
  address: {
191
- writable: boolean;
192
165
  type: string;
193
166
  isKey: boolean;
167
+ writable: boolean;
194
168
  mandatory: boolean;
195
169
  collection: boolean;
196
170
  private?: boolean;
@@ -202,10 +176,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
202
176
  env?: string[] | string;
203
177
  };
204
178
  scope: {
205
- writable: boolean;
206
179
  values: string[];
207
180
  type: string;
208
181
  isKey: boolean;
182
+ writable: boolean;
209
183
  mandatory: boolean;
210
184
  collection: boolean;
211
185
  private?: boolean;
@@ -217,10 +191,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
217
191
  env?: string[] | string;
218
192
  };
219
193
  class: {
220
- writable: boolean;
221
194
  values: string[];
222
195
  type: string;
223
196
  isKey: boolean;
197
+ writable: boolean;
224
198
  mandatory: boolean;
225
199
  collection: boolean;
226
200
  private?: boolean;
@@ -232,10 +206,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
232
206
  env?: string[] | string;
233
207
  };
234
208
  kind: {
235
- writable: boolean;
236
209
  values: string[];
237
210
  type: string;
238
211
  isKey: boolean;
212
+ writable: boolean;
239
213
  mandatory: boolean;
240
214
  collection: boolean;
241
215
  private?: boolean;
@@ -247,9 +221,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
247
221
  env?: string[] | string;
248
222
  };
249
223
  ssid: {
250
- writable: boolean;
251
224
  type: string;
252
225
  isKey: boolean;
226
+ writable: boolean;
253
227
  mandatory: boolean;
254
228
  collection: boolean;
255
229
  private?: boolean;
@@ -261,9 +235,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
261
235
  env?: string[] | string;
262
236
  };
263
237
  psk: {
264
- writable: boolean;
265
238
  type: string;
266
239
  isKey: boolean;
240
+ writable: boolean;
267
241
  mandatory: boolean;
268
242
  collection: boolean;
269
243
  private?: boolean;
@@ -327,20 +301,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
327
301
  writable: boolean;
328
302
  };
329
303
  type: import("pacc").AttributeDefinition;
330
- name: {
331
- writable: boolean;
332
- type: string;
333
- isKey: boolean;
334
- mandatory: boolean;
335
- collection: boolean;
336
- private?: boolean;
337
- depends?: string;
338
- description?: string;
339
- default?: any;
340
- set?: Function;
341
- get?: Function;
342
- env?: string[] | string;
343
- };
304
+ name: import("pacc").AttributeDefinition;
344
305
  description: {
345
306
  writable: boolean;
346
307
  type: string;
@@ -370,20 +331,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
370
331
  get?: Function;
371
332
  env?: string[] | string;
372
333
  };
373
- packaging: {
374
- writable: boolean;
375
- type: string;
376
- isKey: boolean;
377
- mandatory: boolean;
378
- collection: boolean;
379
- private?: boolean;
380
- depends?: string;
381
- description?: string;
382
- default?: any;
383
- set?: Function;
384
- get?: Function;
385
- env?: string[] | string;
386
- };
334
+ packaging: import("pacc").AttributeDefinition;
387
335
  disabled: import("pacc").AttributeDefinition;
388
336
  tags: import("pacc").AttributeDefinition;
389
337
  };
@@ -411,9 +359,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
411
359
  env?: string[] | string;
412
360
  };
413
361
  ipAddresses: {
414
- writable: boolean;
415
362
  type: string;
416
363
  isKey: boolean;
364
+ writable: boolean;
417
365
  mandatory: boolean;
418
366
  collection: boolean;
419
367
  private?: boolean;
@@ -425,9 +373,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
425
373
  env?: string[] | string;
426
374
  };
427
375
  hwaddr: {
428
- writable: boolean;
429
376
  type: string;
430
377
  isKey: boolean;
378
+ writable: boolean;
431
379
  mandatory: boolean;
432
380
  collection: boolean;
433
381
  private?: boolean;
@@ -444,9 +392,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
444
392
  writable: boolean;
445
393
  };
446
394
  destination: {
447
- writable: boolean;
448
395
  type: string;
449
396
  isKey: boolean;
397
+ writable: boolean;
450
398
  mandatory: boolean;
451
399
  collection: boolean;
452
400
  private?: boolean;
@@ -458,23 +406,23 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
458
406
  env?: string[] | string;
459
407
  };
460
408
  cidrAddresses: {
461
- writable: boolean;
462
- collection: boolean;
463
409
  type: string;
464
410
  isKey: boolean;
411
+ writable: boolean;
465
412
  mandatory: boolean;
466
- private: boolean;
467
- depends: string;
468
- description: string;
469
- default: any;
470
- set: Function;
471
- get: Function;
472
- env: string[] | string;
413
+ collection: boolean;
414
+ private?: boolean;
415
+ depends?: string;
416
+ description?: string;
417
+ default?: any;
418
+ set?: Function;
419
+ get?: Function;
420
+ env?: string[] | string;
473
421
  };
474
422
  cidrAddress: {
475
- writable: boolean;
476
423
  type: string;
477
424
  isKey: boolean;
425
+ writable: boolean;
478
426
  mandatory: boolean;
479
427
  collection: boolean;
480
428
  private?: boolean;
@@ -486,23 +434,23 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
486
434
  env?: string[] | string;
487
435
  };
488
436
  addresses: {
489
- writable: boolean;
490
- collection: boolean;
491
437
  type: string;
492
438
  isKey: boolean;
439
+ writable: boolean;
493
440
  mandatory: boolean;
494
- private: boolean;
495
- depends: string;
496
- description: string;
497
- default: any;
498
- set: Function;
499
- get: Function;
500
- env: string[] | string;
441
+ collection: boolean;
442
+ private?: boolean;
443
+ depends?: string;
444
+ description?: string;
445
+ default?: any;
446
+ set?: Function;
447
+ get?: Function;
448
+ env?: string[] | string;
501
449
  };
502
450
  address: {
503
- writable: boolean;
504
451
  type: string;
505
452
  isKey: boolean;
453
+ writable: boolean;
506
454
  mandatory: boolean;
507
455
  collection: boolean;
508
456
  private?: boolean;
@@ -514,10 +462,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
514
462
  env?: string[] | string;
515
463
  };
516
464
  scope: {
517
- writable: boolean;
518
465
  values: string[];
519
466
  type: string;
520
467
  isKey: boolean;
468
+ writable: boolean;
521
469
  mandatory: boolean;
522
470
  collection: boolean;
523
471
  private?: boolean;
@@ -529,10 +477,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
529
477
  env?: string[] | string;
530
478
  };
531
479
  class: {
532
- writable: boolean;
533
480
  values: string[];
534
481
  type: string;
535
482
  isKey: boolean;
483
+ writable: boolean;
536
484
  mandatory: boolean;
537
485
  collection: boolean;
538
486
  private?: boolean;
@@ -544,10 +492,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
544
492
  env?: string[] | string;
545
493
  };
546
494
  kind: {
547
- writable: boolean;
548
495
  values: string[];
549
496
  type: string;
550
497
  isKey: boolean;
498
+ writable: boolean;
551
499
  mandatory: boolean;
552
500
  collection: boolean;
553
501
  private?: boolean;
@@ -559,9 +507,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
559
507
  env?: string[] | string;
560
508
  };
561
509
  ssid: {
562
- writable: boolean;
563
510
  type: string;
564
511
  isKey: boolean;
512
+ writable: boolean;
565
513
  mandatory: boolean;
566
514
  collection: boolean;
567
515
  private?: boolean;
@@ -573,9 +521,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
573
521
  env?: string[] | string;
574
522
  };
575
523
  psk: {
576
- writable: boolean;
577
524
  type: string;
578
525
  isKey: boolean;
526
+ writable: boolean;
579
527
  mandatory: boolean;
580
528
  collection: boolean;
581
529
  private?: boolean;
@@ -637,20 +585,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
637
585
  writable: boolean;
638
586
  };
639
587
  type: import("pacc").AttributeDefinition;
640
- name: {
641
- writable: boolean;
642
- type: string;
643
- isKey: boolean;
644
- mandatory: boolean;
645
- collection: boolean;
646
- private?: boolean;
647
- depends?: string;
648
- description?: string;
649
- default?: any;
650
- set?: Function;
651
- get?: Function;
652
- env?: string[] | string;
653
- };
588
+ name: import("pacc").AttributeDefinition;
654
589
  description: {
655
590
  writable: boolean;
656
591
  type: string;
@@ -680,20 +615,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
680
615
  get?: Function;
681
616
  env?: string[] | string;
682
617
  };
683
- packaging: {
684
- writable: boolean;
685
- type: string;
686
- isKey: boolean;
687
- mandatory: boolean;
688
- collection: boolean;
689
- private?: boolean;
690
- depends?: string;
691
- description?: string;
692
- default?: any;
693
- set?: Function;
694
- get?: Function;
695
- env?: string[] | string;
696
- };
618
+ packaging: import("pacc").AttributeDefinition;
697
619
  disabled: import("pacc").AttributeDefinition;
698
620
  tags: import("pacc").AttributeDefinition;
699
621
  };
@@ -721,9 +643,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
721
643
  env?: string[] | string;
722
644
  };
723
645
  ipAddresses: {
724
- writable: boolean;
725
646
  type: string;
726
647
  isKey: boolean;
648
+ writable: boolean;
727
649
  mandatory: boolean;
728
650
  collection: boolean;
729
651
  private?: boolean;
@@ -735,9 +657,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
735
657
  env?: string[] | string;
736
658
  };
737
659
  hwaddr: {
738
- writable: boolean;
739
660
  type: string;
740
661
  isKey: boolean;
662
+ writable: boolean;
741
663
  mandatory: boolean;
742
664
  collection: boolean;
743
665
  private?: boolean;
@@ -754,9 +676,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
754
676
  writable: boolean;
755
677
  };
756
678
  destination: {
757
- writable: boolean;
758
679
  type: string;
759
680
  isKey: boolean;
681
+ writable: boolean;
760
682
  mandatory: boolean;
761
683
  collection: boolean;
762
684
  private?: boolean;
@@ -768,23 +690,23 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
768
690
  env?: string[] | string;
769
691
  };
770
692
  cidrAddresses: {
771
- writable: boolean;
772
- collection: boolean;
773
693
  type: string;
774
694
  isKey: boolean;
695
+ writable: boolean;
775
696
  mandatory: boolean;
776
- private: boolean;
777
- depends: string;
778
- description: string;
779
- default: any;
780
- set: Function;
781
- get: Function;
782
- env: string[] | string;
697
+ collection: boolean;
698
+ private?: boolean;
699
+ depends?: string;
700
+ description?: string;
701
+ default?: any;
702
+ set?: Function;
703
+ get?: Function;
704
+ env?: string[] | string;
783
705
  };
784
706
  cidrAddress: {
785
- writable: boolean;
786
707
  type: string;
787
708
  isKey: boolean;
709
+ writable: boolean;
788
710
  mandatory: boolean;
789
711
  collection: boolean;
790
712
  private?: boolean;
@@ -796,23 +718,23 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
796
718
  env?: string[] | string;
797
719
  };
798
720
  addresses: {
799
- writable: boolean;
800
- collection: boolean;
801
721
  type: string;
802
722
  isKey: boolean;
723
+ writable: boolean;
803
724
  mandatory: boolean;
804
- private: boolean;
805
- depends: string;
806
- description: string;
807
- default: any;
808
- set: Function;
809
- get: Function;
810
- env: string[] | string;
725
+ collection: boolean;
726
+ private?: boolean;
727
+ depends?: string;
728
+ description?: string;
729
+ default?: any;
730
+ set?: Function;
731
+ get?: Function;
732
+ env?: string[] | string;
811
733
  };
812
734
  address: {
813
- writable: boolean;
814
735
  type: string;
815
736
  isKey: boolean;
737
+ writable: boolean;
816
738
  mandatory: boolean;
817
739
  collection: boolean;
818
740
  private?: boolean;
@@ -824,10 +746,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
824
746
  env?: string[] | string;
825
747
  };
826
748
  scope: {
827
- writable: boolean;
828
749
  values: string[];
829
750
  type: string;
830
751
  isKey: boolean;
752
+ writable: boolean;
831
753
  mandatory: boolean;
832
754
  collection: boolean;
833
755
  private?: boolean;
@@ -839,10 +761,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
839
761
  env?: string[] | string;
840
762
  };
841
763
  class: {
842
- writable: boolean;
843
764
  values: string[];
844
765
  type: string;
845
766
  isKey: boolean;
767
+ writable: boolean;
846
768
  mandatory: boolean;
847
769
  collection: boolean;
848
770
  private?: boolean;
@@ -854,10 +776,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
854
776
  env?: string[] | string;
855
777
  };
856
778
  kind: {
857
- writable: boolean;
858
779
  values: string[];
859
780
  type: string;
860
781
  isKey: boolean;
782
+ writable: boolean;
861
783
  mandatory: boolean;
862
784
  collection: boolean;
863
785
  private?: boolean;
@@ -869,9 +791,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
869
791
  env?: string[] | string;
870
792
  };
871
793
  ssid: {
872
- writable: boolean;
873
794
  type: string;
874
795
  isKey: boolean;
796
+ writable: boolean;
875
797
  mandatory: boolean;
876
798
  collection: boolean;
877
799
  private?: boolean;
@@ -883,9 +805,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
883
805
  env?: string[] | string;
884
806
  };
885
807
  psk: {
886
- writable: boolean;
887
808
  type: string;
888
809
  isKey: boolean;
810
+ writable: boolean;
889
811
  mandatory: boolean;
890
812
  collection: boolean;
891
813
  private?: boolean;