pmcf 3.10.15 → 3.10.17

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 (41) hide show
  1. package/package.json +2 -2
  2. package/src/base.mjs +1 -1
  3. package/src/cluster.mjs +2 -3
  4. package/src/host.mjs +10 -10
  5. package/src/location.mjs +2 -2
  6. package/src/network-support.mjs +6 -6
  7. package/src/owner.mjs +6 -6
  8. package/src/service.mjs +3 -3
  9. package/src/services/bind.mjs +5 -7
  10. package/src/services/openldap.mjs +4 -13
  11. package/src/services/systemd-journal-upload.mjs +1 -1
  12. package/src/subnet.mjs +4 -7
  13. package/types/base.d.mts +1 -14
  14. package/types/cluster.d.mts +27 -378
  15. package/types/extra-source-service.d.mts +8 -112
  16. package/types/host.d.mts +15 -210
  17. package/types/location.d.mts +21 -294
  18. package/types/network-interfaces/ethernet.d.mts +14 -196
  19. package/types/network-interfaces/loopback.d.mts +14 -196
  20. package/types/network-interfaces/network-interface.d.mts +14 -196
  21. package/types/network-interfaces/tun.d.mts +14 -196
  22. package/types/network-interfaces/wireguard.d.mts +14 -196
  23. package/types/network-interfaces/wlan.d.mts +21 -294
  24. package/types/network-support.d.mts +8 -85
  25. package/types/network.d.mts +12 -168
  26. package/types/owner.d.mts +10 -140
  27. package/types/root.d.mts +21 -294
  28. package/types/service.d.mts +20 -252
  29. package/types/services/bind.d.mts +20 -280
  30. package/types/services/chrony.d.mts +16 -224
  31. package/types/services/headscale.d.mts +16 -224
  32. package/types/services/influxdb.d.mts +16 -224
  33. package/types/services/kea.d.mts +16 -224
  34. package/types/services/mosquitto.d.mts +16 -224
  35. package/types/services/openldap.d.mts +19 -266
  36. package/types/services/systemd-journal-remote.d.mts +16 -224
  37. package/types/services/systemd-journal-upload.d.mts +17 -238
  38. package/types/services/systemd-journal.d.mts +16 -224
  39. package/types/services/systemd-resolved.d.mts +16 -224
  40. package/types/services/systemd-timesyncd.d.mts +16 -224
  41. package/types/subnet.d.mts +3 -42
@@ -31,20 +31,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
31
31
  env?: string[] | string;
32
32
  };
33
33
  priority: import("pacc").AttributeDefinition;
34
- directory: {
35
- writable: boolean;
36
- type: string;
37
- isKey: boolean;
38
- mandatory: boolean;
39
- collection: boolean;
40
- private?: boolean;
41
- depends?: string;
42
- description?: string;
43
- default?: any;
44
- set?: Function;
45
- get?: Function;
46
- env?: string[] | string;
47
- };
34
+ directory: import("pacc").AttributeDefinition;
48
35
  packaging: import("pacc").AttributeDefinition;
49
36
  disabled: import("pacc").AttributeDefinition;
50
37
  tags: import("pacc").AttributeDefinition;
@@ -119,62 +106,10 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
119
106
  get?: Function;
120
107
  env?: string[] | string;
121
108
  };
122
- cidrAddresses: {
123
- type: string;
124
- isKey: boolean;
125
- writable: boolean;
126
- mandatory: boolean;
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;
135
- };
136
- cidrAddress: {
137
- type: string;
138
- isKey: boolean;
139
- writable: boolean;
140
- mandatory: boolean;
141
- collection: boolean;
142
- private?: boolean;
143
- depends?: string;
144
- description?: string;
145
- default?: any;
146
- set?: Function;
147
- get?: Function;
148
- env?: string[] | string;
149
- };
150
- addresses: {
151
- type: string;
152
- isKey: boolean;
153
- writable: boolean;
154
- mandatory: boolean;
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;
163
- };
164
- address: {
165
- type: string;
166
- isKey: boolean;
167
- writable: boolean;
168
- mandatory: boolean;
169
- collection: boolean;
170
- private?: boolean;
171
- depends?: string;
172
- description?: string;
173
- default?: any;
174
- set?: Function;
175
- get?: Function;
176
- env?: string[] | string;
177
- };
109
+ cidrAddresses: import("pacc").AttributeDefinition;
110
+ cidrAddress: import("pacc").AttributeDefinition;
111
+ addresses: import("pacc").AttributeDefinition;
112
+ address: import("pacc").AttributeDefinition;
178
113
  scope: {
179
114
  values: string[];
180
115
  type: string;
@@ -220,34 +155,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
220
155
  get?: Function;
221
156
  env?: string[] | string;
222
157
  };
223
- ssid: {
224
- type: string;
225
- isKey: boolean;
226
- writable: boolean;
227
- mandatory: boolean;
228
- collection: boolean;
229
- private?: boolean;
230
- depends?: string;
231
- description?: string;
232
- default?: any;
233
- set?: Function;
234
- get?: Function;
235
- env?: string[] | string;
236
- };
237
- psk: {
238
- type: string;
239
- isKey: boolean;
240
- writable: boolean;
241
- mandatory: boolean;
242
- collection: boolean;
243
- private?: boolean;
244
- depends?: string;
245
- description?: string;
246
- default?: any;
247
- set?: Function;
248
- get?: Function;
249
- env?: string[] | string;
250
- };
158
+ ssid: import("pacc").AttributeDefinition;
159
+ psk: import("pacc").AttributeDefinition;
251
160
  secretName: import("pacc").AttributeDefinition;
252
161
  metric: {
253
162
  type: string;
@@ -316,20 +225,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
316
225
  env?: string[] | string;
317
226
  };
318
227
  priority: import("pacc").AttributeDefinition;
319
- directory: {
320
- writable: boolean;
321
- type: string;
322
- isKey: boolean;
323
- mandatory: boolean;
324
- collection: boolean;
325
- private?: boolean;
326
- depends?: string;
327
- description?: string;
328
- default?: any;
329
- set?: Function;
330
- get?: Function;
331
- env?: string[] | string;
332
- };
228
+ directory: import("pacc").AttributeDefinition;
333
229
  packaging: import("pacc").AttributeDefinition;
334
230
  disabled: import("pacc").AttributeDefinition;
335
231
  tags: import("pacc").AttributeDefinition;
@@ -404,62 +300,10 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
404
300
  get?: Function;
405
301
  env?: string[] | string;
406
302
  };
407
- cidrAddresses: {
408
- type: string;
409
- isKey: boolean;
410
- writable: boolean;
411
- mandatory: boolean;
412
- collection: boolean;
413
- private?: boolean;
414
- depends?: string;
415
- description?: string;
416
- default?: any;
417
- set?: Function;
418
- get?: Function;
419
- env?: string[] | string;
420
- };
421
- cidrAddress: {
422
- type: string;
423
- isKey: boolean;
424
- writable: boolean;
425
- mandatory: boolean;
426
- collection: boolean;
427
- private?: boolean;
428
- depends?: string;
429
- description?: string;
430
- default?: any;
431
- set?: Function;
432
- get?: Function;
433
- env?: string[] | string;
434
- };
435
- addresses: {
436
- type: string;
437
- isKey: boolean;
438
- writable: boolean;
439
- mandatory: boolean;
440
- collection: boolean;
441
- private?: boolean;
442
- depends?: string;
443
- description?: string;
444
- default?: any;
445
- set?: Function;
446
- get?: Function;
447
- env?: string[] | string;
448
- };
449
- address: {
450
- type: string;
451
- isKey: boolean;
452
- writable: boolean;
453
- mandatory: boolean;
454
- collection: boolean;
455
- private?: boolean;
456
- depends?: string;
457
- description?: string;
458
- default?: any;
459
- set?: Function;
460
- get?: Function;
461
- env?: string[] | string;
462
- };
303
+ cidrAddresses: import("pacc").AttributeDefinition;
304
+ cidrAddress: import("pacc").AttributeDefinition;
305
+ addresses: import("pacc").AttributeDefinition;
306
+ address: import("pacc").AttributeDefinition;
463
307
  scope: {
464
308
  values: string[];
465
309
  type: string;
@@ -505,34 +349,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
505
349
  get?: Function;
506
350
  env?: string[] | string;
507
351
  };
508
- ssid: {
509
- type: string;
510
- isKey: boolean;
511
- writable: boolean;
512
- mandatory: boolean;
513
- collection: boolean;
514
- private?: boolean;
515
- depends?: string;
516
- description?: string;
517
- default?: any;
518
- set?: Function;
519
- get?: Function;
520
- env?: string[] | string;
521
- };
522
- psk: {
523
- type: string;
524
- isKey: boolean;
525
- writable: boolean;
526
- mandatory: boolean;
527
- collection: boolean;
528
- private?: boolean;
529
- depends?: string;
530
- description?: string;
531
- default?: any;
532
- set?: Function;
533
- get?: Function;
534
- env?: string[] | string;
535
- };
352
+ ssid: import("pacc").AttributeDefinition;
353
+ psk: import("pacc").AttributeDefinition;
536
354
  secretName: import("pacc").AttributeDefinition;
537
355
  metric: {
538
356
  type: string;
@@ -31,20 +31,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
31
31
  env?: string[] | string;
32
32
  };
33
33
  priority: import("pacc").AttributeDefinition;
34
- directory: {
35
- writable: boolean;
36
- type: string;
37
- isKey: boolean;
38
- mandatory: boolean;
39
- collection: boolean;
40
- private?: boolean;
41
- depends?: string;
42
- description?: string;
43
- default?: any;
44
- set?: Function;
45
- get?: Function;
46
- env?: string[] | string;
47
- };
34
+ directory: import("pacc").AttributeDefinition;
48
35
  packaging: import("pacc").AttributeDefinition;
49
36
  disabled: import("pacc").AttributeDefinition;
50
37
  tags: import("pacc").AttributeDefinition;
@@ -119,62 +106,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
119
106
  get?: Function;
120
107
  env?: string[] | string;
121
108
  };
122
- cidrAddresses: {
123
- type: string;
124
- isKey: boolean;
125
- writable: boolean;
126
- mandatory: boolean;
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;
135
- };
136
- cidrAddress: {
137
- type: string;
138
- isKey: boolean;
139
- writable: boolean;
140
- mandatory: boolean;
141
- collection: boolean;
142
- private?: boolean;
143
- depends?: string;
144
- description?: string;
145
- default?: any;
146
- set?: Function;
147
- get?: Function;
148
- env?: string[] | string;
149
- };
150
- addresses: {
151
- type: string;
152
- isKey: boolean;
153
- writable: boolean;
154
- mandatory: boolean;
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;
163
- };
164
- address: {
165
- type: string;
166
- isKey: boolean;
167
- writable: boolean;
168
- mandatory: boolean;
169
- collection: boolean;
170
- private?: boolean;
171
- depends?: string;
172
- description?: string;
173
- default?: any;
174
- set?: Function;
175
- get?: Function;
176
- env?: string[] | string;
177
- };
109
+ cidrAddresses: import("pacc").AttributeDefinition;
110
+ cidrAddress: import("pacc").AttributeDefinition;
111
+ addresses: import("pacc").AttributeDefinition;
112
+ address: import("pacc").AttributeDefinition;
178
113
  scope: {
179
114
  values: string[];
180
115
  type: string;
@@ -220,34 +155,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
220
155
  get?: Function;
221
156
  env?: string[] | string;
222
157
  };
223
- ssid: {
224
- type: string;
225
- isKey: boolean;
226
- writable: boolean;
227
- mandatory: boolean;
228
- collection: boolean;
229
- private?: boolean;
230
- depends?: string;
231
- description?: string;
232
- default?: any;
233
- set?: Function;
234
- get?: Function;
235
- env?: string[] | string;
236
- };
237
- psk: {
238
- type: string;
239
- isKey: boolean;
240
- writable: boolean;
241
- mandatory: boolean;
242
- collection: boolean;
243
- private?: boolean;
244
- depends?: string;
245
- description?: string;
246
- default?: any;
247
- set?: Function;
248
- get?: Function;
249
- env?: string[] | string;
250
- };
158
+ ssid: import("pacc").AttributeDefinition;
159
+ psk: import("pacc").AttributeDefinition;
251
160
  secretName: import("pacc").AttributeDefinition;
252
161
  metric: {
253
162
  type: string;
@@ -318,20 +227,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
318
227
  env?: string[] | string;
319
228
  };
320
229
  priority: import("pacc").AttributeDefinition;
321
- directory: {
322
- writable: boolean;
323
- type: string;
324
- isKey: boolean;
325
- mandatory: boolean;
326
- collection: boolean;
327
- private?: boolean;
328
- depends?: string;
329
- description?: string;
330
- default?: any;
331
- set?: Function;
332
- get?: Function;
333
- env?: string[] | string;
334
- };
230
+ directory: import("pacc").AttributeDefinition;
335
231
  packaging: import("pacc").AttributeDefinition;
336
232
  disabled: import("pacc").AttributeDefinition;
337
233
  tags: import("pacc").AttributeDefinition;
@@ -406,62 +302,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
406
302
  get?: Function;
407
303
  env?: string[] | string;
408
304
  };
409
- cidrAddresses: {
410
- type: string;
411
- isKey: boolean;
412
- writable: boolean;
413
- mandatory: boolean;
414
- collection: boolean;
415
- private?: boolean;
416
- depends?: string;
417
- description?: string;
418
- default?: any;
419
- set?: Function;
420
- get?: Function;
421
- env?: string[] | string;
422
- };
423
- cidrAddress: {
424
- type: string;
425
- isKey: boolean;
426
- writable: boolean;
427
- mandatory: boolean;
428
- collection: boolean;
429
- private?: boolean;
430
- depends?: string;
431
- description?: string;
432
- default?: any;
433
- set?: Function;
434
- get?: Function;
435
- env?: string[] | string;
436
- };
437
- addresses: {
438
- type: string;
439
- isKey: boolean;
440
- writable: boolean;
441
- mandatory: boolean;
442
- collection: boolean;
443
- private?: boolean;
444
- depends?: string;
445
- description?: string;
446
- default?: any;
447
- set?: Function;
448
- get?: Function;
449
- env?: string[] | string;
450
- };
451
- address: {
452
- type: string;
453
- isKey: boolean;
454
- writable: boolean;
455
- mandatory: boolean;
456
- collection: boolean;
457
- private?: boolean;
458
- depends?: string;
459
- description?: string;
460
- default?: any;
461
- set?: Function;
462
- get?: Function;
463
- env?: string[] | string;
464
- };
305
+ cidrAddresses: import("pacc").AttributeDefinition;
306
+ cidrAddress: import("pacc").AttributeDefinition;
307
+ addresses: import("pacc").AttributeDefinition;
308
+ address: import("pacc").AttributeDefinition;
465
309
  scope: {
466
310
  values: string[];
467
311
  type: string;
@@ -507,34 +351,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
507
351
  get?: Function;
508
352
  env?: string[] | string;
509
353
  };
510
- ssid: {
511
- type: string;
512
- isKey: boolean;
513
- writable: boolean;
514
- mandatory: boolean;
515
- collection: boolean;
516
- private?: boolean;
517
- depends?: string;
518
- description?: string;
519
- default?: any;
520
- set?: Function;
521
- get?: Function;
522
- env?: string[] | string;
523
- };
524
- psk: {
525
- type: string;
526
- isKey: boolean;
527
- writable: boolean;
528
- mandatory: boolean;
529
- collection: boolean;
530
- private?: boolean;
531
- depends?: string;
532
- description?: string;
533
- default?: any;
534
- set?: Function;
535
- get?: Function;
536
- env?: string[] | string;
537
- };
354
+ ssid: import("pacc").AttributeDefinition;
355
+ psk: import("pacc").AttributeDefinition;
538
356
  secretName: import("pacc").AttributeDefinition;
539
357
  metric: {
540
358
  type: string;
@@ -603,20 +421,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
603
421
  env?: string[] | string;
604
422
  };
605
423
  priority: import("pacc").AttributeDefinition;
606
- directory: {
607
- writable: boolean;
608
- type: string;
609
- isKey: boolean;
610
- mandatory: boolean;
611
- collection: boolean;
612
- private?: boolean;
613
- depends?: string;
614
- description?: string;
615
- default?: any;
616
- set?: Function;
617
- get?: Function;
618
- env?: string[] | string;
619
- };
424
+ directory: import("pacc").AttributeDefinition;
620
425
  packaging: import("pacc").AttributeDefinition;
621
426
  disabled: import("pacc").AttributeDefinition;
622
427
  tags: import("pacc").AttributeDefinition;
@@ -691,62 +496,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
691
496
  get?: Function;
692
497
  env?: string[] | string;
693
498
  };
694
- cidrAddresses: {
695
- type: string;
696
- isKey: boolean;
697
- writable: boolean;
698
- mandatory: boolean;
699
- collection: boolean;
700
- private?: boolean;
701
- depends?: string;
702
- description?: string;
703
- default?: any;
704
- set?: Function;
705
- get?: Function;
706
- env?: string[] | string;
707
- };
708
- cidrAddress: {
709
- type: string;
710
- isKey: boolean;
711
- writable: boolean;
712
- mandatory: boolean;
713
- collection: boolean;
714
- private?: boolean;
715
- depends?: string;
716
- description?: string;
717
- default?: any;
718
- set?: Function;
719
- get?: Function;
720
- env?: string[] | string;
721
- };
722
- addresses: {
723
- type: string;
724
- isKey: boolean;
725
- writable: boolean;
726
- mandatory: boolean;
727
- collection: boolean;
728
- private?: boolean;
729
- depends?: string;
730
- description?: string;
731
- default?: any;
732
- set?: Function;
733
- get?: Function;
734
- env?: string[] | string;
735
- };
736
- address: {
737
- type: string;
738
- isKey: boolean;
739
- writable: boolean;
740
- mandatory: boolean;
741
- collection: boolean;
742
- private?: boolean;
743
- depends?: string;
744
- description?: string;
745
- default?: any;
746
- set?: Function;
747
- get?: Function;
748
- env?: string[] | string;
749
- };
499
+ cidrAddresses: import("pacc").AttributeDefinition;
500
+ cidrAddress: import("pacc").AttributeDefinition;
501
+ addresses: import("pacc").AttributeDefinition;
502
+ address: import("pacc").AttributeDefinition;
750
503
  scope: {
751
504
  values: string[];
752
505
  type: string;
@@ -792,34 +545,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
792
545
  get?: Function;
793
546
  env?: string[] | string;
794
547
  };
795
- ssid: {
796
- type: string;
797
- isKey: boolean;
798
- writable: boolean;
799
- mandatory: boolean;
800
- collection: boolean;
801
- private?: boolean;
802
- depends?: string;
803
- description?: string;
804
- default?: any;
805
- set?: Function;
806
- get?: Function;
807
- env?: string[] | string;
808
- };
809
- psk: {
810
- type: string;
811
- isKey: boolean;
812
- writable: boolean;
813
- mandatory: boolean;
814
- collection: boolean;
815
- private?: boolean;
816
- depends?: string;
817
- description?: string;
818
- default?: any;
819
- set?: Function;
820
- get?: Function;
821
- env?: string[] | string;
822
- };
548
+ ssid: import("pacc").AttributeDefinition;
549
+ psk: import("pacc").AttributeDefinition;
823
550
  secretName: import("pacc").AttributeDefinition;
824
551
  metric: {
825
552
  type: string;