pmcf 3.8.9 → 3.8.11

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
@@ -29,20 +29,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
29
29
  writable: boolean;
30
30
  };
31
31
  type: import("pacc").AttributeDefinition;
32
- name: {
33
- writable: boolean;
34
- type: string;
35
- isKey: boolean;
36
- mandatory: boolean;
37
- collection: boolean;
38
- private?: boolean;
39
- depends?: string;
40
- description?: string;
41
- default?: any;
42
- set?: Function;
43
- get?: Function;
44
- env?: string[] | string;
45
- };
32
+ name: import("pacc").AttributeDefinition;
46
33
  description: {
47
34
  writable: boolean;
48
35
  type: string;
@@ -72,20 +59,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
72
59
  get?: Function;
73
60
  env?: string[] | string;
74
61
  };
75
- packaging: {
76
- writable: boolean;
77
- type: string;
78
- isKey: boolean;
79
- mandatory: boolean;
80
- collection: boolean;
81
- private?: boolean;
82
- depends?: string;
83
- description?: string;
84
- default?: any;
85
- set?: Function;
86
- get?: Function;
87
- env?: string[] | string;
88
- };
62
+ packaging: import("pacc").AttributeDefinition;
89
63
  disabled: import("pacc").AttributeDefinition;
90
64
  tags: import("pacc").AttributeDefinition;
91
65
  };
@@ -113,9 +87,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
113
87
  env?: string[] | string;
114
88
  };
115
89
  ipAddresses: {
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;
@@ -127,9 +101,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
127
101
  env?: string[] | string;
128
102
  };
129
103
  hwaddr: {
130
- writable: boolean;
131
104
  type: string;
132
105
  isKey: boolean;
106
+ writable: boolean;
133
107
  mandatory: boolean;
134
108
  collection: boolean;
135
109
  private?: boolean;
@@ -146,9 +120,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
146
120
  writable: boolean;
147
121
  };
148
122
  destination: {
149
- writable: boolean;
150
123
  type: string;
151
124
  isKey: boolean;
125
+ writable: boolean;
152
126
  mandatory: boolean;
153
127
  collection: boolean;
154
128
  private?: boolean;
@@ -160,23 +134,23 @@ export class EthernetNetworkInterface extends NetworkInterface {
160
134
  env?: string[] | string;
161
135
  };
162
136
  cidrAddresses: {
163
- writable: boolean;
164
- collection: boolean;
165
137
  type: string;
166
138
  isKey: boolean;
139
+ writable: boolean;
167
140
  mandatory: boolean;
168
- private: boolean;
169
- depends: string;
170
- description: string;
171
- default: any;
172
- set: Function;
173
- get: Function;
174
- env: string[] | string;
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;
175
149
  };
176
150
  cidrAddress: {
177
- writable: boolean;
178
151
  type: string;
179
152
  isKey: boolean;
153
+ writable: boolean;
180
154
  mandatory: boolean;
181
155
  collection: boolean;
182
156
  private?: boolean;
@@ -188,23 +162,23 @@ export class EthernetNetworkInterface extends NetworkInterface {
188
162
  env?: string[] | string;
189
163
  };
190
164
  addresses: {
191
- writable: boolean;
192
- collection: boolean;
193
165
  type: string;
194
166
  isKey: boolean;
167
+ writable: boolean;
195
168
  mandatory: boolean;
196
- private: boolean;
197
- depends: string;
198
- description: string;
199
- default: any;
200
- set: Function;
201
- get: Function;
202
- env: string[] | string;
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;
203
177
  };
204
178
  address: {
205
- writable: boolean;
206
179
  type: string;
207
180
  isKey: boolean;
181
+ writable: boolean;
208
182
  mandatory: boolean;
209
183
  collection: boolean;
210
184
  private?: boolean;
@@ -216,10 +190,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
216
190
  env?: string[] | string;
217
191
  };
218
192
  scope: {
219
- writable: boolean;
220
193
  values: string[];
221
194
  type: string;
222
195
  isKey: boolean;
196
+ writable: boolean;
223
197
  mandatory: boolean;
224
198
  collection: boolean;
225
199
  private?: boolean;
@@ -231,10 +205,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
231
205
  env?: string[] | string;
232
206
  };
233
207
  class: {
234
- writable: boolean;
235
208
  values: string[];
236
209
  type: string;
237
210
  isKey: boolean;
211
+ writable: boolean;
238
212
  mandatory: boolean;
239
213
  collection: boolean;
240
214
  private?: boolean;
@@ -246,10 +220,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
246
220
  env?: string[] | string;
247
221
  };
248
222
  kind: {
249
- writable: boolean;
250
223
  values: string[];
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 EthernetNetworkInterface extends NetworkInterface {
261
235
  env?: string[] | string;
262
236
  };
263
237
  ssid: {
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;
@@ -275,9 +249,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
275
249
  env?: string[] | string;
276
250
  };
277
251
  psk: {
278
- writable: boolean;
279
252
  type: string;
280
253
  isKey: boolean;
254
+ writable: boolean;
281
255
  mandatory: boolean;
282
256
  collection: boolean;
283
257
  private?: boolean;
@@ -339,20 +313,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
339
313
  writable: boolean;
340
314
  };
341
315
  type: import("pacc").AttributeDefinition;
342
- name: {
343
- writable: boolean;
344
- type: string;
345
- isKey: boolean;
346
- mandatory: boolean;
347
- collection: boolean;
348
- private?: boolean;
349
- depends?: string;
350
- description?: string;
351
- default?: any;
352
- set?: Function;
353
- get?: Function;
354
- env?: string[] | string;
355
- };
316
+ name: import("pacc").AttributeDefinition;
356
317
  description: {
357
318
  writable: boolean;
358
319
  type: string;
@@ -382,20 +343,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
382
343
  get?: Function;
383
344
  env?: string[] | string;
384
345
  };
385
- packaging: {
386
- writable: boolean;
387
- type: string;
388
- isKey: boolean;
389
- mandatory: boolean;
390
- collection: boolean;
391
- private?: boolean;
392
- depends?: string;
393
- description?: string;
394
- default?: any;
395
- set?: Function;
396
- get?: Function;
397
- env?: string[] | string;
398
- };
346
+ packaging: import("pacc").AttributeDefinition;
399
347
  disabled: import("pacc").AttributeDefinition;
400
348
  tags: import("pacc").AttributeDefinition;
401
349
  };
@@ -423,9 +371,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
423
371
  env?: string[] | string;
424
372
  };
425
373
  ipAddresses: {
426
- writable: boolean;
427
374
  type: string;
428
375
  isKey: boolean;
376
+ writable: boolean;
429
377
  mandatory: boolean;
430
378
  collection: boolean;
431
379
  private?: boolean;
@@ -437,9 +385,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
437
385
  env?: string[] | string;
438
386
  };
439
387
  hwaddr: {
440
- writable: boolean;
441
388
  type: string;
442
389
  isKey: boolean;
390
+ writable: boolean;
443
391
  mandatory: boolean;
444
392
  collection: boolean;
445
393
  private?: boolean;
@@ -456,9 +404,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
456
404
  writable: boolean;
457
405
  };
458
406
  destination: {
459
- writable: boolean;
460
407
  type: string;
461
408
  isKey: boolean;
409
+ writable: boolean;
462
410
  mandatory: boolean;
463
411
  collection: boolean;
464
412
  private?: boolean;
@@ -470,23 +418,23 @@ export class EthernetNetworkInterface extends NetworkInterface {
470
418
  env?: string[] | string;
471
419
  };
472
420
  cidrAddresses: {
473
- writable: boolean;
474
- collection: boolean;
475
421
  type: string;
476
422
  isKey: boolean;
423
+ writable: boolean;
477
424
  mandatory: boolean;
478
- private: boolean;
479
- depends: string;
480
- description: string;
481
- default: any;
482
- set: Function;
483
- get: Function;
484
- env: string[] | string;
425
+ collection: boolean;
426
+ private?: boolean;
427
+ depends?: string;
428
+ description?: string;
429
+ default?: any;
430
+ set?: Function;
431
+ get?: Function;
432
+ env?: string[] | string;
485
433
  };
486
434
  cidrAddress: {
487
- writable: boolean;
488
435
  type: string;
489
436
  isKey: boolean;
437
+ writable: boolean;
490
438
  mandatory: boolean;
491
439
  collection: boolean;
492
440
  private?: boolean;
@@ -498,23 +446,23 @@ export class EthernetNetworkInterface extends NetworkInterface {
498
446
  env?: string[] | string;
499
447
  };
500
448
  addresses: {
501
- writable: boolean;
502
- collection: boolean;
503
449
  type: string;
504
450
  isKey: boolean;
451
+ writable: boolean;
505
452
  mandatory: boolean;
506
- private: boolean;
507
- depends: string;
508
- description: string;
509
- default: any;
510
- set: Function;
511
- get: Function;
512
- env: string[] | string;
453
+ collection: boolean;
454
+ private?: boolean;
455
+ depends?: string;
456
+ description?: string;
457
+ default?: any;
458
+ set?: Function;
459
+ get?: Function;
460
+ env?: string[] | string;
513
461
  };
514
462
  address: {
515
- writable: boolean;
516
463
  type: string;
517
464
  isKey: boolean;
465
+ writable: boolean;
518
466
  mandatory: boolean;
519
467
  collection: boolean;
520
468
  private?: boolean;
@@ -526,10 +474,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
526
474
  env?: string[] | string;
527
475
  };
528
476
  scope: {
529
- writable: boolean;
530
477
  values: string[];
531
478
  type: string;
532
479
  isKey: boolean;
480
+ writable: boolean;
533
481
  mandatory: boolean;
534
482
  collection: boolean;
535
483
  private?: boolean;
@@ -541,10 +489,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
541
489
  env?: string[] | string;
542
490
  };
543
491
  class: {
544
- writable: boolean;
545
492
  values: string[];
546
493
  type: string;
547
494
  isKey: boolean;
495
+ writable: boolean;
548
496
  mandatory: boolean;
549
497
  collection: boolean;
550
498
  private?: boolean;
@@ -556,10 +504,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
556
504
  env?: string[] | string;
557
505
  };
558
506
  kind: {
559
- writable: boolean;
560
507
  values: string[];
561
508
  type: string;
562
509
  isKey: boolean;
510
+ writable: boolean;
563
511
  mandatory: boolean;
564
512
  collection: boolean;
565
513
  private?: boolean;
@@ -571,9 +519,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
571
519
  env?: string[] | string;
572
520
  };
573
521
  ssid: {
574
- writable: boolean;
575
522
  type: string;
576
523
  isKey: boolean;
524
+ writable: boolean;
577
525
  mandatory: boolean;
578
526
  collection: boolean;
579
527
  private?: boolean;
@@ -585,9 +533,9 @@ export class EthernetNetworkInterface extends NetworkInterface {
585
533
  env?: string[] | string;
586
534
  };
587
535
  psk: {
588
- writable: boolean;
589
536
  type: string;
590
537
  isKey: boolean;
538
+ writable: boolean;
591
539
  mandatory: boolean;
592
540
  collection: boolean;
593
541
  private?: boolean;