pmcf 3.8.8 → 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
@@ -12,20 +12,7 @@ export namespace NetworkInterfaceTypeDefinition {
12
12
  writable: boolean;
13
13
  };
14
14
  type: import("pacc").AttributeDefinition;
15
- name: {
16
- writable: boolean;
17
- type: string;
18
- isKey: boolean;
19
- mandatory: boolean;
20
- collection: boolean;
21
- private?: boolean;
22
- depends?: string;
23
- description?: string;
24
- default?: any;
25
- set?: Function;
26
- get?: Function;
27
- env?: string[] | string;
28
- };
15
+ name: import("pacc").AttributeDefinition;
29
16
  description: {
30
17
  writable: boolean;
31
18
  type: string;
@@ -55,20 +42,7 @@ export namespace NetworkInterfaceTypeDefinition {
55
42
  get?: Function;
56
43
  env?: string[] | string;
57
44
  };
58
- packaging: {
59
- writable: boolean;
60
- type: string;
61
- isKey: boolean;
62
- mandatory: boolean;
63
- collection: boolean;
64
- private?: boolean;
65
- depends?: string;
66
- description?: string;
67
- default?: any;
68
- set?: Function;
69
- get?: Function;
70
- env?: string[] | string;
71
- };
45
+ packaging: import("pacc").AttributeDefinition;
72
46
  disabled: import("pacc").AttributeDefinition;
73
47
  tags: import("pacc").AttributeDefinition;
74
48
  };
@@ -97,9 +71,9 @@ export namespace NetworkInterfaceTypeDefinition {
97
71
  env?: string[] | string;
98
72
  };
99
73
  ipAddresses: {
100
- writable: boolean;
101
74
  type: string;
102
75
  isKey: boolean;
76
+ writable: boolean;
103
77
  mandatory: boolean;
104
78
  collection: boolean;
105
79
  private?: boolean;
@@ -111,9 +85,9 @@ export namespace NetworkInterfaceTypeDefinition {
111
85
  env?: string[] | string;
112
86
  };
113
87
  hwaddr: {
114
- writable: boolean;
115
88
  type: string;
116
89
  isKey: boolean;
90
+ writable: boolean;
117
91
  mandatory: boolean;
118
92
  collection: boolean;
119
93
  private?: boolean;
@@ -130,9 +104,9 @@ export namespace NetworkInterfaceTypeDefinition {
130
104
  writable: boolean;
131
105
  };
132
106
  destination: {
133
- writable: boolean;
134
107
  type: string;
135
108
  isKey: boolean;
109
+ writable: boolean;
136
110
  mandatory: boolean;
137
111
  collection: boolean;
138
112
  private?: boolean;
@@ -144,23 +118,23 @@ export namespace NetworkInterfaceTypeDefinition {
144
118
  env?: string[] | string;
145
119
  };
146
120
  cidrAddresses: {
147
- writable: boolean;
148
- collection: boolean;
149
121
  type: string;
150
122
  isKey: boolean;
123
+ writable: boolean;
151
124
  mandatory: boolean;
152
- private: boolean;
153
- depends: string;
154
- description: string;
155
- default: any;
156
- set: Function;
157
- get: Function;
158
- env: string[] | string;
125
+ collection: boolean;
126
+ private?: boolean;
127
+ depends?: string;
128
+ description?: string;
129
+ default?: any;
130
+ set?: Function;
131
+ get?: Function;
132
+ env?: string[] | string;
159
133
  };
160
134
  cidrAddress: {
161
- writable: boolean;
162
135
  type: string;
163
136
  isKey: boolean;
137
+ writable: boolean;
164
138
  mandatory: boolean;
165
139
  collection: boolean;
166
140
  private?: boolean;
@@ -172,23 +146,23 @@ export namespace NetworkInterfaceTypeDefinition {
172
146
  env?: string[] | string;
173
147
  };
174
148
  addresses: {
175
- writable: boolean;
176
- collection: boolean;
177
149
  type: string;
178
150
  isKey: boolean;
151
+ writable: boolean;
179
152
  mandatory: boolean;
180
- private: boolean;
181
- depends: string;
182
- description: string;
183
- default: any;
184
- set: Function;
185
- get: Function;
186
- env: string[] | string;
153
+ collection: boolean;
154
+ private?: boolean;
155
+ depends?: string;
156
+ description?: string;
157
+ default?: any;
158
+ set?: Function;
159
+ get?: Function;
160
+ env?: string[] | string;
187
161
  };
188
162
  address: {
189
- writable: boolean;
190
163
  type: string;
191
164
  isKey: boolean;
165
+ writable: boolean;
192
166
  mandatory: boolean;
193
167
  collection: boolean;
194
168
  private?: boolean;
@@ -200,10 +174,10 @@ export namespace NetworkInterfaceTypeDefinition {
200
174
  env?: string[] | string;
201
175
  };
202
176
  scope: {
203
- writable: boolean;
204
177
  values: string[];
205
178
  type: string;
206
179
  isKey: boolean;
180
+ writable: boolean;
207
181
  mandatory: boolean;
208
182
  collection: boolean;
209
183
  private?: boolean;
@@ -215,10 +189,10 @@ export namespace NetworkInterfaceTypeDefinition {
215
189
  env?: string[] | string;
216
190
  };
217
191
  class: {
218
- writable: boolean;
219
192
  values: string[];
220
193
  type: string;
221
194
  isKey: boolean;
195
+ writable: boolean;
222
196
  mandatory: boolean;
223
197
  collection: boolean;
224
198
  private?: boolean;
@@ -230,10 +204,10 @@ export namespace NetworkInterfaceTypeDefinition {
230
204
  env?: string[] | string;
231
205
  };
232
206
  kind: {
233
- writable: boolean;
234
207
  values: string[];
235
208
  type: string;
236
209
  isKey: boolean;
210
+ writable: boolean;
237
211
  mandatory: boolean;
238
212
  collection: boolean;
239
213
  private?: boolean;
@@ -245,9 +219,9 @@ export namespace NetworkInterfaceTypeDefinition {
245
219
  env?: string[] | string;
246
220
  };
247
221
  ssid: {
248
- writable: boolean;
249
222
  type: string;
250
223
  isKey: boolean;
224
+ writable: boolean;
251
225
  mandatory: boolean;
252
226
  collection: boolean;
253
227
  private?: boolean;
@@ -259,9 +233,9 @@ export namespace NetworkInterfaceTypeDefinition {
259
233
  env?: string[] | string;
260
234
  };
261
235
  psk: {
262
- writable: boolean;
263
236
  type: string;
264
237
  isKey: boolean;
238
+ writable: boolean;
265
239
  mandatory: boolean;
266
240
  collection: boolean;
267
241
  private?: boolean;
@@ -323,20 +297,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
323
297
  writable: boolean;
324
298
  };
325
299
  type: import("pacc").AttributeDefinition;
326
- name: {
327
- writable: boolean;
328
- type: string;
329
- isKey: boolean;
330
- mandatory: boolean;
331
- collection: boolean;
332
- private?: boolean;
333
- depends?: string;
334
- description?: string;
335
- default?: any;
336
- set?: Function;
337
- get?: Function;
338
- env?: string[] | string;
339
- };
300
+ name: import("pacc").AttributeDefinition;
340
301
  description: {
341
302
  writable: boolean;
342
303
  type: string;
@@ -366,20 +327,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
366
327
  get?: Function;
367
328
  env?: string[] | string;
368
329
  };
369
- packaging: {
370
- writable: boolean;
371
- type: string;
372
- isKey: boolean;
373
- mandatory: boolean;
374
- collection: boolean;
375
- private?: boolean;
376
- depends?: string;
377
- description?: string;
378
- default?: any;
379
- set?: Function;
380
- get?: Function;
381
- env?: string[] | string;
382
- };
330
+ packaging: import("pacc").AttributeDefinition;
383
331
  disabled: import("pacc").AttributeDefinition;
384
332
  tags: import("pacc").AttributeDefinition;
385
333
  };
@@ -407,9 +355,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
407
355
  env?: string[] | string;
408
356
  };
409
357
  ipAddresses: {
410
- writable: boolean;
411
358
  type: string;
412
359
  isKey: boolean;
360
+ writable: boolean;
413
361
  mandatory: boolean;
414
362
  collection: boolean;
415
363
  private?: boolean;
@@ -421,9 +369,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
421
369
  env?: string[] | string;
422
370
  };
423
371
  hwaddr: {
424
- writable: boolean;
425
372
  type: string;
426
373
  isKey: boolean;
374
+ writable: boolean;
427
375
  mandatory: boolean;
428
376
  collection: boolean;
429
377
  private?: boolean;
@@ -440,9 +388,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
440
388
  writable: boolean;
441
389
  };
442
390
  destination: {
443
- writable: boolean;
444
391
  type: string;
445
392
  isKey: boolean;
393
+ writable: boolean;
446
394
  mandatory: boolean;
447
395
  collection: boolean;
448
396
  private?: boolean;
@@ -454,23 +402,23 @@ export class NetworkInterface extends SkeletonNetworkInterface {
454
402
  env?: string[] | string;
455
403
  };
456
404
  cidrAddresses: {
457
- writable: boolean;
458
- collection: boolean;
459
405
  type: string;
460
406
  isKey: boolean;
407
+ writable: boolean;
461
408
  mandatory: boolean;
462
- private: boolean;
463
- depends: string;
464
- description: string;
465
- default: any;
466
- set: Function;
467
- get: Function;
468
- env: string[] | string;
409
+ collection: boolean;
410
+ private?: boolean;
411
+ depends?: string;
412
+ description?: string;
413
+ default?: any;
414
+ set?: Function;
415
+ get?: Function;
416
+ env?: string[] | string;
469
417
  };
470
418
  cidrAddress: {
471
- writable: boolean;
472
419
  type: string;
473
420
  isKey: boolean;
421
+ writable: boolean;
474
422
  mandatory: boolean;
475
423
  collection: boolean;
476
424
  private?: boolean;
@@ -482,23 +430,23 @@ export class NetworkInterface extends SkeletonNetworkInterface {
482
430
  env?: string[] | string;
483
431
  };
484
432
  addresses: {
485
- writable: boolean;
486
- collection: boolean;
487
433
  type: string;
488
434
  isKey: boolean;
435
+ writable: boolean;
489
436
  mandatory: boolean;
490
- private: boolean;
491
- depends: string;
492
- description: string;
493
- default: any;
494
- set: Function;
495
- get: Function;
496
- env: string[] | string;
437
+ collection: boolean;
438
+ private?: boolean;
439
+ depends?: string;
440
+ description?: string;
441
+ default?: any;
442
+ set?: Function;
443
+ get?: Function;
444
+ env?: string[] | string;
497
445
  };
498
446
  address: {
499
- writable: boolean;
500
447
  type: string;
501
448
  isKey: boolean;
449
+ writable: boolean;
502
450
  mandatory: boolean;
503
451
  collection: boolean;
504
452
  private?: boolean;
@@ -510,10 +458,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
510
458
  env?: string[] | string;
511
459
  };
512
460
  scope: {
513
- writable: boolean;
514
461
  values: string[];
515
462
  type: string;
516
463
  isKey: boolean;
464
+ writable: boolean;
517
465
  mandatory: boolean;
518
466
  collection: boolean;
519
467
  private?: boolean;
@@ -525,10 +473,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
525
473
  env?: string[] | string;
526
474
  };
527
475
  class: {
528
- writable: boolean;
529
476
  values: string[];
530
477
  type: string;
531
478
  isKey: boolean;
479
+ writable: boolean;
532
480
  mandatory: boolean;
533
481
  collection: boolean;
534
482
  private?: boolean;
@@ -540,10 +488,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
540
488
  env?: string[] | string;
541
489
  };
542
490
  kind: {
543
- writable: boolean;
544
491
  values: string[];
545
492
  type: string;
546
493
  isKey: boolean;
494
+ writable: boolean;
547
495
  mandatory: boolean;
548
496
  collection: boolean;
549
497
  private?: boolean;
@@ -555,9 +503,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
555
503
  env?: string[] | string;
556
504
  };
557
505
  ssid: {
558
- writable: boolean;
559
506
  type: string;
560
507
  isKey: boolean;
508
+ writable: boolean;
561
509
  mandatory: boolean;
562
510
  collection: boolean;
563
511
  private?: boolean;
@@ -569,9 +517,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
569
517
  env?: string[] | string;
570
518
  };
571
519
  psk: {
572
- writable: boolean;
573
520
  type: string;
574
521
  isKey: boolean;
522
+ writable: boolean;
575
523
  mandatory: boolean;
576
524
  collection: boolean;
577
525
  private?: boolean;