pmcf 3.4.0 → 3.4.1

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 (40) hide show
  1. package/package.json +2 -2
  2. package/src/base.mjs +14 -7
  3. package/src/host.mjs +20 -15
  4. package/src/location.mjs +2 -2
  5. package/src/network-interfaces/network-interface.mjs +4 -4
  6. package/src/network-support.mjs +16 -10
  7. package/src/owner.mjs +11 -7
  8. package/src/service.mjs +11 -6
  9. package/src/services/bind.mjs +9 -9
  10. package/src/services/kea.mjs +9 -8
  11. package/src/services/openldap.mjs +4 -4
  12. package/src/services/systemd-journal-upload.mjs +2 -2
  13. package/src/subnet.mjs +3 -3
  14. package/types/base.d.mts +9 -9
  15. package/types/cluster.d.mts +92 -105
  16. package/types/extra-source-service.d.mts +34 -47
  17. package/types/host.d.mts +58 -71
  18. package/types/location.d.mts +76 -76
  19. package/types/network-interfaces/ethernet.d.mts +50 -50
  20. package/types/network-interfaces/loopback.d.mts +50 -50
  21. package/types/network-interfaces/network-interface.d.mts +50 -50
  22. package/types/network-interfaces/wireguard.d.mts +50 -50
  23. package/types/network-interfaces/wlan.d.mts +75 -75
  24. package/types/network-support.d.mts +16 -16
  25. package/types/network.d.mts +34 -34
  26. package/types/owner.d.mts +34 -34
  27. package/types/root.d.mts +76 -76
  28. package/types/service.d.mts +70 -108
  29. package/types/services/bind.d.mts +85 -110
  30. package/types/services/chrony.d.mts +68 -94
  31. package/types/services/influxdb.d.mts +68 -94
  32. package/types/services/kea.d.mts +71 -97
  33. package/types/services/mosquitto.d.mts +68 -94
  34. package/types/services/openldap.d.mts +68 -94
  35. package/types/services/systemd-journal-remote.d.mts +68 -94
  36. package/types/services/systemd-journal-upload.d.mts +68 -94
  37. package/types/services/systemd-journal.d.mts +68 -94
  38. package/types/services/systemd-resolved.d.mts +68 -94
  39. package/types/services/systemd-timesyncd.d.mts +68 -94
  40. package/types/subnet.d.mts +1 -1
@@ -13,9 +13,9 @@ export namespace NetworkInterfaceTypeDefinition {
13
13
  };
14
14
  type: import("pacc").AttributeDefinition;
15
15
  name: {
16
- isKey: boolean;
17
16
  writable: boolean;
18
17
  type: string;
18
+ isKey: boolean;
19
19
  mandatory: boolean;
20
20
  collection: boolean;
21
21
  private?: boolean;
@@ -97,18 +97,18 @@ export namespace NetworkInterfaceTypeDefinition {
97
97
  env?: string[] | string;
98
98
  };
99
99
  tags: {
100
- collection: boolean;
101
100
  writable: boolean;
101
+ collection: boolean;
102
102
  type: string;
103
103
  isKey: boolean;
104
104
  mandatory: boolean;
105
- private?: boolean;
106
- depends?: string;
107
- description?: string;
108
- default?: any;
109
- set?: Function;
110
- get?: Function;
111
- env?: string[] | string;
105
+ private: boolean;
106
+ depends: string;
107
+ description: string;
108
+ default: any;
109
+ set: Function;
110
+ get: Function;
111
+ env: string[] | string;
112
112
  };
113
113
  };
114
114
  };
@@ -183,18 +183,18 @@ export namespace NetworkInterfaceTypeDefinition {
183
183
  env?: string[] | string;
184
184
  };
185
185
  cidrAddresses: {
186
- collection: boolean;
187
186
  writable: boolean;
187
+ collection: boolean;
188
188
  type: string;
189
189
  isKey: boolean;
190
190
  mandatory: boolean;
191
- private?: boolean;
192
- depends?: string;
193
- description?: string;
194
- default?: any;
195
- set?: Function;
196
- get?: Function;
197
- env?: string[] | string;
191
+ private: boolean;
192
+ depends: string;
193
+ description: string;
194
+ default: any;
195
+ set: Function;
196
+ get: Function;
197
+ env: string[] | string;
198
198
  };
199
199
  cidrAddress: {
200
200
  writable: boolean;
@@ -211,18 +211,18 @@ export namespace NetworkInterfaceTypeDefinition {
211
211
  env?: string[] | string;
212
212
  };
213
213
  addresses: {
214
- collection: boolean;
215
214
  writable: boolean;
215
+ collection: boolean;
216
216
  type: string;
217
217
  isKey: boolean;
218
218
  mandatory: boolean;
219
- private?: boolean;
220
- depends?: string;
221
- description?: string;
222
- default?: any;
223
- set?: Function;
224
- get?: Function;
225
- env?: string[] | string;
219
+ private: boolean;
220
+ depends: string;
221
+ description: string;
222
+ default: any;
223
+ set: Function;
224
+ get: Function;
225
+ env: string[] | string;
226
226
  };
227
227
  address: {
228
228
  writable: boolean;
@@ -376,9 +376,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
376
376
  };
377
377
  type: import("pacc").AttributeDefinition;
378
378
  name: {
379
- isKey: boolean;
380
379
  writable: boolean;
381
380
  type: string;
381
+ isKey: boolean;
382
382
  mandatory: boolean;
383
383
  collection: boolean;
384
384
  private?: boolean;
@@ -460,18 +460,18 @@ export class NetworkInterface extends SkeletonNetworkInterface {
460
460
  env?: string[] | string;
461
461
  };
462
462
  tags: {
463
- collection: boolean;
464
463
  writable: boolean;
464
+ collection: boolean;
465
465
  type: string;
466
466
  isKey: boolean;
467
467
  mandatory: boolean;
468
- private?: boolean;
469
- depends?: string;
470
- description?: string;
471
- default?: any;
472
- set?: Function;
473
- get?: Function;
474
- env?: string[] | string;
468
+ private: boolean;
469
+ depends: string;
470
+ description: string;
471
+ default: any;
472
+ set: Function;
473
+ get: Function;
474
+ env: string[] | string;
475
475
  };
476
476
  };
477
477
  };
@@ -545,18 +545,18 @@ export class NetworkInterface extends SkeletonNetworkInterface {
545
545
  env?: string[] | string;
546
546
  };
547
547
  cidrAddresses: {
548
- collection: boolean;
549
548
  writable: boolean;
549
+ collection: boolean;
550
550
  type: string;
551
551
  isKey: boolean;
552
552
  mandatory: boolean;
553
- private?: boolean;
554
- depends?: string;
555
- description?: string;
556
- default?: any;
557
- set?: Function;
558
- get?: Function;
559
- env?: string[] | string;
553
+ private: boolean;
554
+ depends: string;
555
+ description: string;
556
+ default: any;
557
+ set: Function;
558
+ get: Function;
559
+ env: string[] | string;
560
560
  };
561
561
  cidrAddress: {
562
562
  writable: boolean;
@@ -573,18 +573,18 @@ export class NetworkInterface extends SkeletonNetworkInterface {
573
573
  env?: string[] | string;
574
574
  };
575
575
  addresses: {
576
- collection: boolean;
577
576
  writable: boolean;
577
+ collection: boolean;
578
578
  type: string;
579
579
  isKey: boolean;
580
580
  mandatory: boolean;
581
- private?: boolean;
582
- depends?: string;
583
- description?: string;
584
- default?: any;
585
- set?: Function;
586
- get?: Function;
587
- env?: string[] | string;
581
+ private: boolean;
582
+ depends: string;
583
+ description: string;
584
+ default: any;
585
+ set: Function;
586
+ get: Function;
587
+ env: string[] | string;
588
588
  };
589
589
  address: {
590
590
  writable: boolean;
@@ -16,9 +16,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
16
16
  };
17
17
  type: import("pacc").AttributeDefinition;
18
18
  name: {
19
- isKey: boolean;
20
19
  writable: boolean;
21
20
  type: string;
21
+ isKey: boolean;
22
22
  mandatory: boolean;
23
23
  collection: boolean;
24
24
  private?: boolean;
@@ -100,18 +100,18 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
100
100
  env?: string[] | string;
101
101
  };
102
102
  tags: {
103
- collection: boolean;
104
103
  writable: boolean;
104
+ collection: boolean;
105
105
  type: string;
106
106
  isKey: boolean;
107
107
  mandatory: boolean;
108
- private?: boolean;
109
- depends?: string;
110
- description?: string;
111
- default?: any;
112
- set?: Function;
113
- get?: Function;
114
- env?: string[] | string;
108
+ private: boolean;
109
+ depends: string;
110
+ description: string;
111
+ default: any;
112
+ set: Function;
113
+ get: Function;
114
+ env: string[] | string;
115
115
  };
116
116
  };
117
117
  };
@@ -185,18 +185,18 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
185
185
  env?: string[] | string;
186
186
  };
187
187
  cidrAddresses: {
188
- collection: boolean;
189
188
  writable: boolean;
189
+ collection: boolean;
190
190
  type: string;
191
191
  isKey: boolean;
192
192
  mandatory: boolean;
193
- private?: boolean;
194
- depends?: string;
195
- description?: string;
196
- default?: any;
197
- set?: Function;
198
- get?: Function;
199
- env?: string[] | string;
193
+ private: boolean;
194
+ depends: string;
195
+ description: string;
196
+ default: any;
197
+ set: Function;
198
+ get: Function;
199
+ env: string[] | string;
200
200
  };
201
201
  cidrAddress: {
202
202
  writable: boolean;
@@ -213,18 +213,18 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
213
213
  env?: string[] | string;
214
214
  };
215
215
  addresses: {
216
- collection: boolean;
217
216
  writable: boolean;
217
+ collection: boolean;
218
218
  type: string;
219
219
  isKey: boolean;
220
220
  mandatory: boolean;
221
- private?: boolean;
222
- depends?: string;
223
- description?: string;
224
- default?: any;
225
- set?: Function;
226
- get?: Function;
227
- env?: string[] | string;
221
+ private: boolean;
222
+ depends: string;
223
+ description: string;
224
+ default: any;
225
+ set: Function;
226
+ get: Function;
227
+ env: string[] | string;
228
228
  };
229
229
  address: {
230
230
  writable: boolean;
@@ -378,9 +378,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
378
378
  };
379
379
  type: import("pacc").AttributeDefinition;
380
380
  name: {
381
- isKey: boolean;
382
381
  writable: boolean;
383
382
  type: string;
383
+ isKey: boolean;
384
384
  mandatory: boolean;
385
385
  collection: boolean;
386
386
  private?: boolean;
@@ -462,18 +462,18 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
462
462
  env?: string[] | string;
463
463
  };
464
464
  tags: {
465
- collection: boolean;
466
465
  writable: boolean;
466
+ collection: boolean;
467
467
  type: string;
468
468
  isKey: boolean;
469
469
  mandatory: boolean;
470
- private?: boolean;
471
- depends?: string;
472
- description?: string;
473
- default?: any;
474
- set?: Function;
475
- get?: Function;
476
- env?: string[] | string;
470
+ private: boolean;
471
+ depends: string;
472
+ description: string;
473
+ default: any;
474
+ set: Function;
475
+ get: Function;
476
+ env: string[] | string;
477
477
  };
478
478
  };
479
479
  };
@@ -547,18 +547,18 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
547
547
  env?: string[] | string;
548
548
  };
549
549
  cidrAddresses: {
550
- collection: boolean;
551
550
  writable: boolean;
551
+ collection: boolean;
552
552
  type: string;
553
553
  isKey: boolean;
554
554
  mandatory: boolean;
555
- private?: boolean;
556
- depends?: string;
557
- description?: string;
558
- default?: any;
559
- set?: Function;
560
- get?: Function;
561
- env?: string[] | string;
555
+ private: boolean;
556
+ depends: string;
557
+ description: string;
558
+ default: any;
559
+ set: Function;
560
+ get: Function;
561
+ env: string[] | string;
562
562
  };
563
563
  cidrAddress: {
564
564
  writable: boolean;
@@ -575,18 +575,18 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
575
575
  env?: string[] | string;
576
576
  };
577
577
  addresses: {
578
- collection: boolean;
579
578
  writable: boolean;
579
+ collection: boolean;
580
580
  type: string;
581
581
  isKey: boolean;
582
582
  mandatory: boolean;
583
- private?: boolean;
584
- depends?: string;
585
- description?: string;
586
- default?: any;
587
- set?: Function;
588
- get?: Function;
589
- env?: string[] | string;
583
+ private: boolean;
584
+ depends: string;
585
+ description: string;
586
+ default: any;
587
+ set: Function;
588
+ get: Function;
589
+ env: string[] | string;
590
590
  };
591
591
  address: {
592
592
  writable: boolean;
@@ -16,9 +16,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
16
16
  };
17
17
  type: import("pacc").AttributeDefinition;
18
18
  name: {
19
- isKey: boolean;
20
19
  writable: boolean;
21
20
  type: string;
21
+ isKey: boolean;
22
22
  mandatory: boolean;
23
23
  collection: boolean;
24
24
  private?: boolean;
@@ -100,18 +100,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
100
100
  env?: string[] | string;
101
101
  };
102
102
  tags: {
103
- collection: boolean;
104
103
  writable: boolean;
104
+ collection: boolean;
105
105
  type: string;
106
106
  isKey: boolean;
107
107
  mandatory: boolean;
108
- private?: boolean;
109
- depends?: string;
110
- description?: string;
111
- default?: any;
112
- set?: Function;
113
- get?: Function;
114
- env?: string[] | string;
108
+ private: boolean;
109
+ depends: string;
110
+ description: string;
111
+ default: any;
112
+ set: Function;
113
+ get: Function;
114
+ env: string[] | string;
115
115
  };
116
116
  };
117
117
  };
@@ -185,18 +185,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
185
185
  env?: string[] | string;
186
186
  };
187
187
  cidrAddresses: {
188
- collection: boolean;
189
188
  writable: boolean;
189
+ collection: boolean;
190
190
  type: string;
191
191
  isKey: boolean;
192
192
  mandatory: boolean;
193
- private?: boolean;
194
- depends?: string;
195
- description?: string;
196
- default?: any;
197
- set?: Function;
198
- get?: Function;
199
- env?: string[] | string;
193
+ private: boolean;
194
+ depends: string;
195
+ description: string;
196
+ default: any;
197
+ set: Function;
198
+ get: Function;
199
+ env: string[] | string;
200
200
  };
201
201
  cidrAddress: {
202
202
  writable: boolean;
@@ -213,18 +213,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
213
213
  env?: string[] | string;
214
214
  };
215
215
  addresses: {
216
- collection: boolean;
217
216
  writable: boolean;
217
+ collection: boolean;
218
218
  type: string;
219
219
  isKey: boolean;
220
220
  mandatory: boolean;
221
- private?: boolean;
222
- depends?: string;
223
- description?: string;
224
- default?: any;
225
- set?: Function;
226
- get?: Function;
227
- env?: string[] | string;
221
+ private: boolean;
222
+ depends: string;
223
+ description: string;
224
+ default: any;
225
+ set: Function;
226
+ get: Function;
227
+ env: string[] | string;
228
228
  };
229
229
  address: {
230
230
  writable: boolean;
@@ -380,9 +380,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
380
380
  };
381
381
  type: import("pacc").AttributeDefinition;
382
382
  name: {
383
- isKey: boolean;
384
383
  writable: boolean;
385
384
  type: string;
385
+ isKey: boolean;
386
386
  mandatory: boolean;
387
387
  collection: boolean;
388
388
  private?: boolean;
@@ -464,18 +464,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
464
464
  env?: string[] | string;
465
465
  };
466
466
  tags: {
467
- collection: boolean;
468
467
  writable: boolean;
468
+ collection: boolean;
469
469
  type: string;
470
470
  isKey: boolean;
471
471
  mandatory: boolean;
472
- private?: boolean;
473
- depends?: string;
474
- description?: string;
475
- default?: any;
476
- set?: Function;
477
- get?: Function;
478
- env?: string[] | string;
472
+ private: boolean;
473
+ depends: string;
474
+ description: string;
475
+ default: any;
476
+ set: Function;
477
+ get: Function;
478
+ env: string[] | string;
479
479
  };
480
480
  };
481
481
  };
@@ -549,18 +549,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
549
549
  env?: string[] | string;
550
550
  };
551
551
  cidrAddresses: {
552
- collection: boolean;
553
552
  writable: boolean;
553
+ collection: boolean;
554
554
  type: string;
555
555
  isKey: boolean;
556
556
  mandatory: boolean;
557
- private?: boolean;
558
- depends?: string;
559
- description?: string;
560
- default?: any;
561
- set?: Function;
562
- get?: Function;
563
- env?: string[] | string;
557
+ private: boolean;
558
+ depends: string;
559
+ description: string;
560
+ default: any;
561
+ set: Function;
562
+ get: Function;
563
+ env: string[] | string;
564
564
  };
565
565
  cidrAddress: {
566
566
  writable: boolean;
@@ -577,18 +577,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
577
577
  env?: string[] | string;
578
578
  };
579
579
  addresses: {
580
- collection: boolean;
581
580
  writable: boolean;
581
+ collection: boolean;
582
582
  type: string;
583
583
  isKey: boolean;
584
584
  mandatory: boolean;
585
- private?: boolean;
586
- depends?: string;
587
- description?: string;
588
- default?: any;
589
- set?: Function;
590
- get?: Function;
591
- env?: string[] | string;
585
+ private: boolean;
586
+ depends: string;
587
+ description: string;
588
+ default: any;
589
+ set: Function;
590
+ get: Function;
591
+ env: string[] | string;
592
592
  };
593
593
  address: {
594
594
  writable: boolean;
@@ -742,9 +742,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
742
742
  };
743
743
  type: import("pacc").AttributeDefinition;
744
744
  name: {
745
- isKey: boolean;
746
745
  writable: boolean;
747
746
  type: string;
747
+ isKey: boolean;
748
748
  mandatory: boolean;
749
749
  collection: boolean;
750
750
  private?: boolean;
@@ -826,18 +826,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
826
826
  env?: string[] | string;
827
827
  };
828
828
  tags: {
829
- collection: boolean;
830
829
  writable: boolean;
830
+ collection: boolean;
831
831
  type: string;
832
832
  isKey: boolean;
833
833
  mandatory: boolean;
834
- private?: boolean;
835
- depends?: string;
836
- description?: string;
837
- default?: any;
838
- set?: Function;
839
- get?: Function;
840
- env?: string[] | string;
834
+ private: boolean;
835
+ depends: string;
836
+ description: string;
837
+ default: any;
838
+ set: Function;
839
+ get: Function;
840
+ env: string[] | string;
841
841
  };
842
842
  };
843
843
  };
@@ -911,18 +911,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
911
911
  env?: string[] | string;
912
912
  };
913
913
  cidrAddresses: {
914
- collection: boolean;
915
914
  writable: boolean;
915
+ collection: boolean;
916
916
  type: string;
917
917
  isKey: boolean;
918
918
  mandatory: boolean;
919
- private?: boolean;
920
- depends?: string;
921
- description?: string;
922
- default?: any;
923
- set?: Function;
924
- get?: Function;
925
- env?: string[] | string;
919
+ private: boolean;
920
+ depends: string;
921
+ description: string;
922
+ default: any;
923
+ set: Function;
924
+ get: Function;
925
+ env: string[] | string;
926
926
  };
927
927
  cidrAddress: {
928
928
  writable: boolean;
@@ -939,18 +939,18 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
939
939
  env?: string[] | string;
940
940
  };
941
941
  addresses: {
942
- collection: boolean;
943
942
  writable: boolean;
943
+ collection: boolean;
944
944
  type: string;
945
945
  isKey: boolean;
946
946
  mandatory: boolean;
947
- private?: boolean;
948
- depends?: string;
949
- description?: string;
950
- default?: any;
951
- set?: Function;
952
- get?: Function;
953
- env?: string[] | string;
947
+ private: boolean;
948
+ depends: string;
949
+ description: string;
950
+ default: any;
951
+ set: Function;
952
+ get: Function;
953
+ env: string[] | string;
954
954
  };
955
955
  address: {
956
956
  writable: boolean;