pmcf 3.5.1 → 3.6.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 (33) hide show
  1. package/package.json +2 -2
  2. package/src/base.mjs +11 -7
  3. package/src/network-interfaces/loopback.mjs +3 -0
  4. package/src/network-interfaces/network-interface.mjs +1 -1
  5. package/src/network-support.mjs +6 -9
  6. package/src/service.mjs +5 -4
  7. package/types/base.d.mts +3 -29
  8. package/types/cluster.d.mts +4 -56
  9. package/types/extra-source-service.d.mts +6 -45
  10. package/types/host.d.mts +3 -29
  11. package/types/location.d.mts +5 -57
  12. package/types/network-interfaces/ethernet.d.mts +14 -92
  13. package/types/network-interfaces/loopback.d.mts +16 -92
  14. package/types/network-interfaces/network-interface.d.mts +14 -92
  15. package/types/network-interfaces/tun.d.mts +14 -92
  16. package/types/network-interfaces/wireguard.d.mts +14 -92
  17. package/types/network-interfaces/wlan.d.mts +21 -138
  18. package/types/network-support.d.mts +6 -18
  19. package/types/network.d.mts +6 -45
  20. package/types/owner.d.mts +2 -28
  21. package/types/root.d.mts +4 -56
  22. package/types/service.d.mts +13 -91
  23. package/types/services/bind.d.mts +12 -90
  24. package/types/services/chrony.d.mts +13 -91
  25. package/types/services/influxdb.d.mts +13 -91
  26. package/types/services/kea.d.mts +13 -91
  27. package/types/services/mosquitto.d.mts +13 -91
  28. package/types/services/openldap.d.mts +13 -91
  29. package/types/services/systemd-journal-remote.d.mts +12 -90
  30. package/types/services/systemd-journal-upload.d.mts +12 -90
  31. package/types/services/systemd-journal.d.mts +12 -90
  32. package/types/services/systemd-resolved.d.mts +12 -90
  33. package/types/services/systemd-timesyncd.d.mts +12 -90
@@ -43,20 +43,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
43
43
  get?: Function;
44
44
  env?: string[] | string;
45
45
  };
46
- priority: {
47
- writable: boolean;
48
- type: string;
49
- isKey: boolean;
50
- mandatory: boolean;
51
- collection: boolean;
52
- private?: boolean;
53
- depends?: string;
54
- description?: string;
55
- default?: any;
56
- set?: Function;
57
- get?: Function;
58
- env?: string[] | string;
59
- };
46
+ priority: import("pacc").AttributeDefinition;
60
47
  directory: {
61
48
  writable: boolean;
62
49
  type: string;
@@ -86,20 +73,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
86
73
  env?: string[] | string;
87
74
  };
88
75
  disabled: import("pacc").AttributeDefinition;
89
- tags: {
90
- writable: boolean;
91
- collection: boolean;
92
- type: string;
93
- isKey: boolean;
94
- mandatory: boolean;
95
- private: boolean;
96
- depends: string;
97
- description: string;
98
- default: any;
99
- set: Function;
100
- get: Function;
101
- env: string[] | string;
102
- };
76
+ tags: import("pacc").AttributeDefinition;
103
77
  };
104
78
  };
105
79
  specializations: {};
@@ -230,7 +204,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
230
204
  scope: {
231
205
  writable: boolean;
232
206
  values: string[];
233
- default: string;
234
207
  type: string;
235
208
  isKey: boolean;
236
209
  mandatory: boolean;
@@ -238,6 +211,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
238
211
  private?: boolean;
239
212
  depends?: string;
240
213
  description?: string;
214
+ default?: any;
241
215
  set?: Function;
242
216
  get?: Function;
243
217
  env?: string[] | string;
@@ -301,24 +275,24 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
301
275
  env?: string[] | string;
302
276
  };
303
277
  metric: {
304
- writable: boolean;
305
- default: number;
306
278
  type: string;
307
279
  isKey: boolean;
280
+ writable: boolean;
308
281
  mandatory: boolean;
309
282
  collection: boolean;
310
283
  private?: boolean;
311
284
  depends?: string;
312
285
  description?: string;
286
+ default?: any;
313
287
  set?: Function;
314
288
  get?: Function;
315
289
  env?: string[] | string;
316
290
  };
317
291
  mtu: {
318
- writable: boolean;
319
292
  default: number;
320
293
  type: string;
321
294
  isKey: boolean;
295
+ writable: boolean;
322
296
  mandatory: boolean;
323
297
  collection: boolean;
324
298
  private?: boolean;
@@ -333,20 +307,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
333
307
  collection: boolean;
334
308
  writable: boolean;
335
309
  };
336
- multicastDNS: {
337
- writable: boolean;
338
- type: string;
339
- isKey: boolean;
340
- mandatory: boolean;
341
- collection: boolean;
342
- private?: boolean;
343
- depends?: string;
344
- description?: string;
345
- default?: any;
346
- set?: Function;
347
- get?: Function;
348
- env?: string[] | string;
349
- };
310
+ multicastDNS: import("pacc").AttributeDefinition;
350
311
  };
351
312
  };
352
313
  owners: string[];
@@ -394,20 +355,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
394
355
  get?: Function;
395
356
  env?: string[] | string;
396
357
  };
397
- priority: {
398
- writable: boolean;
399
- type: string;
400
- isKey: boolean;
401
- mandatory: boolean;
402
- collection: boolean;
403
- private?: boolean;
404
- depends?: string;
405
- description?: string;
406
- default?: any;
407
- set?: Function;
408
- get?: Function;
409
- env?: string[] | string;
410
- };
358
+ priority: import("pacc").AttributeDefinition;
411
359
  directory: {
412
360
  writable: boolean;
413
361
  type: string;
@@ -437,20 +385,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
437
385
  env?: string[] | string;
438
386
  };
439
387
  disabled: import("pacc").AttributeDefinition;
440
- tags: {
441
- writable: boolean;
442
- collection: boolean;
443
- type: string;
444
- isKey: boolean;
445
- mandatory: boolean;
446
- private: boolean;
447
- depends: string;
448
- description: string;
449
- default: any;
450
- set: Function;
451
- get: Function;
452
- env: string[] | string;
453
- };
388
+ tags: import("pacc").AttributeDefinition;
454
389
  };
455
390
  };
456
391
  specializations: {};
@@ -581,7 +516,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
581
516
  scope: {
582
517
  writable: boolean;
583
518
  values: string[];
584
- default: string;
585
519
  type: string;
586
520
  isKey: boolean;
587
521
  mandatory: boolean;
@@ -589,6 +523,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
589
523
  private?: boolean;
590
524
  depends?: string;
591
525
  description?: string;
526
+ default?: any;
592
527
  set?: Function;
593
528
  get?: Function;
594
529
  env?: string[] | string;
@@ -652,24 +587,24 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
652
587
  env?: string[] | string;
653
588
  };
654
589
  metric: {
655
- writable: boolean;
656
- default: number;
657
590
  type: string;
658
591
  isKey: boolean;
592
+ writable: boolean;
659
593
  mandatory: boolean;
660
594
  collection: boolean;
661
595
  private?: boolean;
662
596
  depends?: string;
663
597
  description?: string;
598
+ default?: any;
664
599
  set?: Function;
665
600
  get?: Function;
666
601
  env?: string[] | string;
667
602
  };
668
603
  mtu: {
669
- writable: boolean;
670
604
  default: number;
671
605
  type: string;
672
606
  isKey: boolean;
607
+ writable: boolean;
673
608
  mandatory: boolean;
674
609
  collection: boolean;
675
610
  private?: boolean;
@@ -684,20 +619,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
684
619
  collection: boolean;
685
620
  writable: boolean;
686
621
  };
687
- multicastDNS: {
688
- writable: boolean;
689
- type: string;
690
- isKey: boolean;
691
- mandatory: boolean;
692
- collection: boolean;
693
- private?: boolean;
694
- depends?: string;
695
- description?: string;
696
- default?: any;
697
- set?: Function;
698
- get?: Function;
699
- env?: string[] | string;
700
- };
622
+ multicastDNS: import("pacc").AttributeDefinition;
701
623
  };
702
624
  };
703
625
  owners: string[];
@@ -743,20 +665,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
743
665
  get?: Function;
744
666
  env?: string[] | string;
745
667
  };
746
- priority: {
747
- writable: boolean;
748
- type: string;
749
- isKey: boolean;
750
- mandatory: boolean;
751
- collection: boolean;
752
- private?: boolean;
753
- depends?: string;
754
- description?: string;
755
- default?: any;
756
- set?: Function;
757
- get?: Function;
758
- env?: string[] | string;
759
- };
668
+ priority: import("pacc").AttributeDefinition;
760
669
  directory: {
761
670
  writable: boolean;
762
671
  type: string;
@@ -786,20 +695,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
786
695
  env?: string[] | string;
787
696
  };
788
697
  disabled: import("pacc").AttributeDefinition;
789
- tags: {
790
- writable: boolean;
791
- collection: boolean;
792
- type: string;
793
- isKey: boolean;
794
- mandatory: boolean;
795
- private: boolean;
796
- depends: string;
797
- description: string;
798
- default: any;
799
- set: Function;
800
- get: Function;
801
- env: string[] | string;
802
- };
698
+ tags: import("pacc").AttributeDefinition;
803
699
  };
804
700
  };
805
701
  specializations: {};
@@ -930,7 +826,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
930
826
  scope: {
931
827
  writable: boolean;
932
828
  values: string[];
933
- default: string;
934
829
  type: string;
935
830
  isKey: boolean;
936
831
  mandatory: boolean;
@@ -938,6 +833,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
938
833
  private?: boolean;
939
834
  depends?: string;
940
835
  description?: string;
836
+ default?: any;
941
837
  set?: Function;
942
838
  get?: Function;
943
839
  env?: string[] | string;
@@ -1001,24 +897,24 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1001
897
  env?: string[] | string;
1002
898
  };
1003
899
  metric: {
1004
- writable: boolean;
1005
- default: number;
1006
900
  type: string;
1007
901
  isKey: boolean;
902
+ writable: boolean;
1008
903
  mandatory: boolean;
1009
904
  collection: boolean;
1010
905
  private?: boolean;
1011
906
  depends?: string;
1012
907
  description?: string;
908
+ default?: any;
1013
909
  set?: Function;
1014
910
  get?: Function;
1015
911
  env?: string[] | string;
1016
912
  };
1017
913
  mtu: {
1018
- writable: boolean;
1019
914
  default: number;
1020
915
  type: string;
1021
916
  isKey: boolean;
917
+ writable: boolean;
1022
918
  mandatory: boolean;
1023
919
  collection: boolean;
1024
920
  private?: boolean;
@@ -1033,20 +929,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
1033
929
  collection: boolean;
1034
930
  writable: boolean;
1035
931
  };
1036
- multicastDNS: {
1037
- writable: boolean;
1038
- type: string;
1039
- isKey: boolean;
1040
- mandatory: boolean;
1041
- collection: boolean;
1042
- private?: boolean;
1043
- depends?: string;
1044
- description?: string;
1045
- default?: any;
1046
- set?: Function;
1047
- get?: Function;
1048
- env?: string[] | string;
1049
- };
932
+ multicastDNS: import("pacc").AttributeDefinition;
1050
933
  };
1051
934
  };
1052
935
  priority: number;
@@ -2,7 +2,6 @@ export namespace networkProperties {
2
2
  export let scope: {
3
3
  writable: boolean;
4
4
  values: string[];
5
- default: string;
6
5
  type: string;
7
6
  isKey: boolean;
8
7
  mandatory: boolean;
@@ -10,6 +9,7 @@ export namespace networkProperties {
10
9
  private?: boolean;
11
10
  depends?: string;
12
11
  description?: string;
12
+ default?: any;
13
13
  set?: Function;
14
14
  get?: Function;
15
15
  env?: string[] | string;
@@ -74,24 +74,24 @@ export namespace networkProperties {
74
74
  env?: string[] | string;
75
75
  };
76
76
  export let metric: {
77
- writable: boolean;
78
- default: number;
79
77
  type: string;
80
78
  isKey: boolean;
79
+ writable: boolean;
81
80
  mandatory: boolean;
82
81
  collection: boolean;
83
82
  private?: boolean;
84
83
  depends?: string;
85
84
  description?: string;
85
+ default?: any;
86
86
  set?: Function;
87
87
  get?: Function;
88
88
  env?: string[] | string;
89
89
  };
90
90
  export let mtu: {
91
- writable: boolean;
92
91
  default: number;
93
92
  type: string;
94
93
  isKey: boolean;
94
+ writable: boolean;
95
95
  mandatory: boolean;
96
96
  collection: boolean;
97
97
  private?: boolean;
@@ -106,20 +106,7 @@ export namespace networkProperties {
106
106
  let collection: boolean;
107
107
  let writable: boolean;
108
108
  }
109
- export let multicastDNS: {
110
- writable: boolean;
111
- type: string;
112
- isKey: boolean;
113
- mandatory: boolean;
114
- collection: boolean;
115
- private?: boolean;
116
- depends?: string;
117
- description?: string;
118
- default?: any;
119
- set?: Function;
120
- get?: Function;
121
- env?: string[] | string;
122
- };
109
+ export { boolean_attribute_writable as multicastDNS };
123
110
  }
124
111
  export namespace networkAddressProperties {
125
112
  let hostName: {
@@ -193,3 +180,4 @@ export namespace networkAddressProperties {
193
180
  env?: string[] | string;
194
181
  };
195
182
  }
183
+ import { boolean_attribute_writable } from "pacc";
@@ -45,20 +45,7 @@ export class Network extends Owner {
45
45
  get?: Function;
46
46
  env?: string[] | string;
47
47
  };
48
- priority: {
49
- writable: boolean;
50
- type: string;
51
- isKey: boolean;
52
- mandatory: boolean;
53
- collection: boolean;
54
- private?: boolean;
55
- depends?: string;
56
- description?: string;
57
- default?: any;
58
- set?: Function;
59
- get?: Function;
60
- env?: string[] | string;
61
- };
48
+ priority: import("pacc").AttributeDefinition;
62
49
  directory: {
63
50
  writable: boolean;
64
51
  type: string;
@@ -88,20 +75,7 @@ export class Network extends Owner {
88
75
  env?: string[] | string;
89
76
  };
90
77
  disabled: import("pacc").AttributeDefinition;
91
- tags: {
92
- writable: boolean;
93
- collection: boolean;
94
- type: string;
95
- isKey: boolean;
96
- mandatory: boolean;
97
- private: boolean;
98
- depends: string;
99
- description: string;
100
- default: any;
101
- set: Function;
102
- get: Function;
103
- env: string[] | string;
104
- };
78
+ tags: import("pacc").AttributeDefinition;
105
79
  };
106
80
  };
107
81
  properties: {
@@ -279,7 +253,6 @@ export class Network extends Owner {
279
253
  scope: {
280
254
  writable: boolean;
281
255
  values: string[];
282
- default: string;
283
256
  type: string;
284
257
  isKey: boolean;
285
258
  mandatory: boolean;
@@ -287,6 +260,7 @@ export class Network extends Owner {
287
260
  private?: boolean;
288
261
  depends?: string;
289
262
  description?: string;
263
+ default?: any;
290
264
  set?: Function;
291
265
  get?: Function;
292
266
  env?: string[] | string;
@@ -350,47 +324,34 @@ export class Network extends Owner {
350
324
  env?: string[] | string;
351
325
  };
352
326
  metric: {
353
- writable: boolean;
354
- default: number;
355
327
  type: string;
356
328
  isKey: boolean;
329
+ writable: boolean;
357
330
  mandatory: boolean;
358
331
  collection: boolean;
359
332
  private?: boolean;
360
333
  depends?: string;
361
334
  description?: string;
335
+ default?: any;
362
336
  set?: Function;
363
337
  get?: Function;
364
338
  env?: string[] | string;
365
339
  };
366
340
  mtu: {
367
- writable: boolean;
368
341
  default: number;
369
342
  type: string;
370
343
  isKey: boolean;
371
- mandatory: boolean;
372
- collection: boolean;
373
- private?: boolean;
374
- depends?: string;
375
- description?: string;
376
- set?: Function;
377
- get?: Function;
378
- env?: string[] | string;
379
- };
380
- multicastDNS: {
381
344
  writable: boolean;
382
- type: string;
383
- isKey: boolean;
384
345
  mandatory: boolean;
385
346
  collection: boolean;
386
347
  private?: boolean;
387
348
  depends?: string;
388
349
  description?: string;
389
- default?: any;
390
350
  set?: Function;
391
351
  get?: Function;
392
352
  env?: string[] | string;
393
353
  };
354
+ multicastDNS: import("pacc").AttributeDefinition;
394
355
  };
395
356
  };
396
357
  kind: any;
package/types/owner.d.mts CHANGED
@@ -41,20 +41,7 @@ export class Owner extends Base {
41
41
  get?: Function;
42
42
  env?: string[] | string;
43
43
  };
44
- priority: {
45
- writable: boolean;
46
- type: string;
47
- isKey: boolean;
48
- mandatory: boolean;
49
- collection: boolean;
50
- private?: boolean;
51
- depends?: string;
52
- description?: string;
53
- default?: any;
54
- set?: Function;
55
- get?: Function;
56
- env?: string[] | string;
57
- };
44
+ priority: import("pacc").AttributeDefinition;
58
45
  directory: {
59
46
  writable: boolean;
60
47
  type: string;
@@ -84,20 +71,7 @@ export class Owner extends Base {
84
71
  env?: string[] | string;
85
72
  };
86
73
  disabled: import("pacc").AttributeDefinition;
87
- tags: {
88
- writable: boolean;
89
- collection: boolean;
90
- type: string;
91
- isKey: boolean;
92
- mandatory: boolean;
93
- private: boolean;
94
- depends: string;
95
- description: string;
96
- default: any;
97
- set: Function;
98
- get: Function;
99
- env: string[] | string;
100
- };
74
+ tags: import("pacc").AttributeDefinition;
101
75
  };
102
76
  };
103
77
  properties: {
package/types/root.d.mts CHANGED
@@ -47,20 +47,7 @@ export class Root extends Location {
47
47
  get?: Function;
48
48
  env?: string[] | string;
49
49
  };
50
- priority: {
51
- writable: boolean;
52
- type: string;
53
- isKey: boolean;
54
- mandatory: boolean;
55
- collection: boolean;
56
- private?: boolean;
57
- depends?: string;
58
- description?: string;
59
- default?: any;
60
- set?: Function;
61
- get?: Function;
62
- env?: string[] | string;
63
- };
50
+ priority: import("pacc").AttributeDefinition;
64
51
  directory: {
65
52
  writable: boolean;
66
53
  type: string;
@@ -90,20 +77,7 @@ export class Root extends Location {
90
77
  env?: string[] | string;
91
78
  };
92
79
  disabled: import("pacc").AttributeDefinition;
93
- tags: {
94
- writable: boolean;
95
- collection: boolean;
96
- type: string;
97
- isKey: boolean;
98
- mandatory: boolean;
99
- private: boolean;
100
- depends: string;
101
- description: string;
102
- default: any;
103
- set: Function;
104
- get: Function;
105
- env: string[] | string;
106
- };
80
+ tags: import("pacc").AttributeDefinition;
107
81
  };
108
82
  };
109
83
  properties: {
@@ -310,20 +284,7 @@ export class Root extends Location {
310
284
  get?: Function;
311
285
  env?: string[] | string;
312
286
  };
313
- priority: {
314
- writable: boolean;
315
- type: string;
316
- isKey: boolean;
317
- mandatory: boolean;
318
- collection: boolean;
319
- private?: boolean;
320
- depends?: string;
321
- description?: string;
322
- default?: any;
323
- set?: Function;
324
- get?: Function;
325
- env?: string[] | string;
326
- };
287
+ priority: import("pacc").AttributeDefinition;
327
288
  directory: {
328
289
  writable: boolean;
329
290
  type: string;
@@ -353,20 +314,7 @@ export class Root extends Location {
353
314
  env?: string[] | string;
354
315
  };
355
316
  disabled: import("pacc").AttributeDefinition;
356
- tags: {
357
- writable: boolean;
358
- collection: boolean;
359
- type: string;
360
- isKey: boolean;
361
- mandatory: boolean;
362
- private: boolean;
363
- depends: string;
364
- description: string;
365
- default: any;
366
- set: Function;
367
- get: Function;
368
- env: string[] | string;
369
- };
317
+ tags: import("pacc").AttributeDefinition;
370
318
  };
371
319
  };
372
320
  properties: {