pmcf 3.0.0 → 3.1.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 (45) hide show
  1. package/package.json +3 -3
  2. package/src/base.mjs +9 -9
  3. package/src/cluster.mjs +5 -5
  4. package/src/extra-source-service.mjs +1 -1
  5. package/src/host.mjs +19 -19
  6. package/src/location.mjs +1 -1
  7. package/src/network-interfaces/ethernet.mjs +1 -1
  8. package/src/network-interfaces/network-interface.mjs +6 -6
  9. package/src/network-support.mjs +14 -14
  10. package/src/network.mjs +2 -2
  11. package/src/owner.mjs +11 -11
  12. package/src/service.mjs +7 -7
  13. package/src/services/bind.mjs +18 -18
  14. package/src/services/chrony.mjs +0 -1
  15. package/src/services/kea.mjs +47 -6
  16. package/src/services/openldap.mjs +3 -3
  17. package/src/services/systemd-journal-upload.mjs +1 -1
  18. package/src/subnet.mjs +2 -2
  19. package/types/base.d.mts +8 -14
  20. package/types/cluster.d.mts +58 -95
  21. package/types/extra-source-service.d.mts +22 -37
  22. package/types/host.d.mts +32 -56
  23. package/types/location.d.mts +43 -70
  24. package/types/network-interfaces/ethernet.d.mts +56 -96
  25. package/types/network-interfaces/loopback.d.mts +54 -94
  26. package/types/network-interfaces/network-interface.d.mts +54 -94
  27. package/types/network-interfaces/wireguard.d.mts +54 -94
  28. package/types/network-interfaces/wlan.d.mts +82 -142
  29. package/types/network-support.d.mts +16 -27
  30. package/types/network.d.mts +31 -50
  31. package/types/owner.d.mts +21 -34
  32. package/types/root.d.mts +43 -70
  33. package/types/service.d.mts +44 -77
  34. package/types/services/bind.d.mts +59 -101
  35. package/types/services/chrony.d.mts +41 -71
  36. package/types/services/influxdb.d.mts +40 -70
  37. package/types/services/kea.d.mts +122 -71
  38. package/types/services/mosquitto.d.mts +40 -70
  39. package/types/services/openldap.d.mts +43 -76
  40. package/types/services/systemd-journal-remote.d.mts +40 -70
  41. package/types/services/systemd-journal-upload.d.mts +41 -72
  42. package/types/services/systemd-journal.d.mts +40 -70
  43. package/types/services/systemd-resolved.d.mts +40 -70
  44. package/types/services/systemd-timesyncd.d.mts +40 -70
  45. package/types/subnet.d.mts +2 -2
package/types/root.d.mts CHANGED
@@ -16,14 +16,13 @@ export class Root extends Location {
16
16
  owner: {
17
17
  type: string;
18
18
  collection: boolean;
19
- writeable: boolean;
19
+ writable: boolean;
20
20
  };
21
21
  type: import("pacc").AttributeDefinition;
22
22
  name: {
23
23
  isKey: boolean;
24
- writeable: boolean;
25
- type: string;
26
24
  writable: boolean;
25
+ type: string;
27
26
  mandatory: boolean;
28
27
  collection: boolean;
29
28
  private?: boolean;
@@ -36,10 +35,9 @@ export class Root extends Location {
36
35
  env?: string[] | string;
37
36
  };
38
37
  description: {
39
- writeable: boolean;
38
+ writable: boolean;
40
39
  type: string;
41
40
  isKey: boolean;
42
- writable: boolean;
43
41
  mandatory: boolean;
44
42
  collection: boolean;
45
43
  private?: boolean;
@@ -54,13 +52,12 @@ export class Root extends Location {
54
52
  priority: {
55
53
  type: string;
56
54
  collection: boolean;
57
- writeable: boolean;
55
+ writable: boolean;
58
56
  };
59
57
  directory: {
60
- writeable: boolean;
58
+ writable: boolean;
61
59
  type: string;
62
60
  isKey: boolean;
63
- writable: boolean;
64
61
  mandatory: boolean;
65
62
  collection: boolean;
66
63
  private?: boolean;
@@ -73,10 +70,9 @@ export class Root extends Location {
73
70
  env?: string[] | string;
74
71
  };
75
72
  packaging: {
76
- writeable: boolean;
73
+ writable: boolean;
77
74
  type: string;
78
75
  isKey: boolean;
79
- writable: boolean;
80
76
  mandatory: boolean;
81
77
  collection: boolean;
82
78
  private?: boolean;
@@ -89,11 +85,10 @@ export class Root extends Location {
89
85
  env?: string[] | string;
90
86
  };
91
87
  disabled: {
92
- writeable: boolean;
88
+ writable: boolean;
93
89
  default: boolean;
94
90
  type: string;
95
91
  isKey: boolean;
96
- writable: boolean;
97
92
  mandatory: boolean;
98
93
  collection: boolean;
99
94
  private?: boolean;
@@ -106,10 +101,9 @@ export class Root extends Location {
106
101
  };
107
102
  tags: {
108
103
  collection: boolean;
109
- writeable: boolean;
104
+ writable: boolean;
110
105
  type: string;
111
106
  isKey: boolean;
112
- writable: boolean;
113
107
  mandatory: boolean;
114
108
  private?: boolean;
115
109
  depends?: string;
@@ -126,17 +120,17 @@ export class Root extends Location {
126
120
  networks: {
127
121
  type: string;
128
122
  collection: boolean;
129
- writeable: boolean;
123
+ writable: boolean;
130
124
  };
131
125
  hosts: {
132
126
  type: string;
133
127
  collection: boolean;
134
- writeable: boolean;
128
+ writable: boolean;
135
129
  };
136
130
  clusters: {
137
131
  type: string;
138
132
  collection: boolean;
139
- writeable: boolean;
133
+ writable: boolean;
140
134
  };
141
135
  subnets: {
142
136
  type: {
@@ -163,23 +157,22 @@ export class Root extends Location {
163
157
  networks: {
164
158
  type: string;
165
159
  collection: boolean;
166
- writeable: boolean;
160
+ writable: boolean;
167
161
  };
168
162
  prefixLength: {
169
163
  type: string;
170
164
  collection: boolean;
171
- writeable: boolean;
165
+ writable: boolean;
172
166
  };
173
167
  };
174
168
  };
175
169
  collection: boolean;
176
- writeable: boolean;
170
+ writable: boolean;
177
171
  };
178
172
  country: {
179
- writeable: boolean;
173
+ writable: boolean;
180
174
  type: string;
181
175
  isKey: boolean;
182
- writable: boolean;
183
176
  mandatory: boolean;
184
177
  collection: boolean;
185
178
  private?: boolean;
@@ -192,10 +185,9 @@ export class Root extends Location {
192
185
  env?: string[] | string;
193
186
  };
194
187
  domain: {
195
- writeable: boolean;
188
+ writable: boolean;
196
189
  type: string;
197
190
  isKey: boolean;
198
- writable: boolean;
199
191
  mandatory: boolean;
200
192
  collection: boolean;
201
193
  private?: boolean;
@@ -209,10 +201,9 @@ export class Root extends Location {
209
201
  };
210
202
  domains: {
211
203
  collection: boolean;
212
- writeable: boolean;
204
+ writable: boolean;
213
205
  type: string;
214
206
  isKey: boolean;
215
- writable: boolean;
216
207
  mandatory: boolean;
217
208
  private?: boolean;
218
209
  depends?: string;
@@ -224,10 +215,9 @@ export class Root extends Location {
224
215
  env?: string[] | string;
225
216
  };
226
217
  timezone: {
227
- writeable: boolean;
218
+ writable: boolean;
228
219
  type: string;
229
220
  isKey: boolean;
230
- writable: boolean;
231
221
  mandatory: boolean;
232
222
  collection: boolean;
233
223
  private?: boolean;
@@ -241,10 +231,9 @@ export class Root extends Location {
241
231
  };
242
232
  architectures: {
243
233
  collection: boolean;
244
- writeable: boolean;
234
+ writable: boolean;
245
235
  type: string;
246
236
  isKey: boolean;
247
- writable: boolean;
248
237
  mandatory: boolean;
249
238
  private?: boolean;
250
239
  depends?: string;
@@ -257,10 +246,9 @@ export class Root extends Location {
257
246
  };
258
247
  locales: {
259
248
  collection: boolean;
260
- writeable: boolean;
249
+ writable: boolean;
261
250
  type: string;
262
251
  isKey: boolean;
263
- writable: boolean;
264
252
  mandatory: boolean;
265
253
  private?: boolean;
266
254
  depends?: string;
@@ -272,10 +260,9 @@ export class Root extends Location {
272
260
  env?: string[] | string;
273
261
  };
274
262
  administratorEmail: {
275
- writeable: boolean;
263
+ writable: boolean;
276
264
  type: string;
277
265
  isKey: boolean;
278
- writable: boolean;
279
266
  mandatory: boolean;
280
267
  collection: boolean;
281
268
  private?: boolean;
@@ -301,14 +288,13 @@ export class Root extends Location {
301
288
  owner: {
302
289
  type: string;
303
290
  collection: boolean;
304
- writeable: boolean;
291
+ writable: boolean;
305
292
  };
306
293
  type: import("pacc").AttributeDefinition;
307
294
  name: {
308
295
  isKey: boolean;
309
- writeable: boolean;
310
- type: string;
311
296
  writable: boolean;
297
+ type: string;
312
298
  mandatory: boolean;
313
299
  collection: boolean;
314
300
  private?: boolean;
@@ -321,10 +307,9 @@ export class Root extends Location {
321
307
  env?: string[] | string;
322
308
  };
323
309
  description: {
324
- writeable: boolean;
310
+ writable: boolean;
325
311
  type: string;
326
312
  isKey: boolean;
327
- writable: boolean;
328
313
  mandatory: boolean;
329
314
  collection: boolean;
330
315
  private?: boolean;
@@ -339,13 +324,12 @@ export class Root extends Location {
339
324
  priority: {
340
325
  type: string;
341
326
  collection: boolean;
342
- writeable: boolean;
327
+ writable: boolean;
343
328
  };
344
329
  directory: {
345
- writeable: boolean;
330
+ writable: boolean;
346
331
  type: string;
347
332
  isKey: boolean;
348
- writable: boolean;
349
333
  mandatory: boolean;
350
334
  collection: boolean;
351
335
  private?: boolean;
@@ -358,10 +342,9 @@ export class Root extends Location {
358
342
  env?: string[] | string;
359
343
  };
360
344
  packaging: {
361
- writeable: boolean;
345
+ writable: boolean;
362
346
  type: string;
363
347
  isKey: boolean;
364
- writable: boolean;
365
348
  mandatory: boolean;
366
349
  collection: boolean;
367
350
  private?: boolean;
@@ -374,11 +357,10 @@ export class Root extends Location {
374
357
  env?: string[] | string;
375
358
  };
376
359
  disabled: {
377
- writeable: boolean;
360
+ writable: boolean;
378
361
  default: boolean;
379
362
  type: string;
380
363
  isKey: boolean;
381
- writable: boolean;
382
364
  mandatory: boolean;
383
365
  collection: boolean;
384
366
  private?: boolean;
@@ -391,10 +373,9 @@ export class Root extends Location {
391
373
  };
392
374
  tags: {
393
375
  collection: boolean;
394
- writeable: boolean;
376
+ writable: boolean;
395
377
  type: string;
396
378
  isKey: boolean;
397
- writable: boolean;
398
379
  mandatory: boolean;
399
380
  private?: boolean;
400
381
  depends?: string;
@@ -411,17 +392,17 @@ export class Root extends Location {
411
392
  networks: {
412
393
  type: string;
413
394
  collection: boolean;
414
- writeable: boolean;
395
+ writable: boolean;
415
396
  };
416
397
  hosts: {
417
398
  type: string;
418
399
  collection: boolean;
419
- writeable: boolean;
400
+ writable: boolean;
420
401
  };
421
402
  clusters: {
422
403
  type: string;
423
404
  collection: boolean;
424
- writeable: boolean;
405
+ writable: boolean;
425
406
  };
426
407
  subnets: {
427
408
  type: {
@@ -448,23 +429,22 @@ export class Root extends Location {
448
429
  networks: {
449
430
  type: string;
450
431
  collection: boolean;
451
- writeable: boolean;
432
+ writable: boolean;
452
433
  };
453
434
  prefixLength: {
454
435
  type: string;
455
436
  collection: boolean;
456
- writeable: boolean;
437
+ writable: boolean;
457
438
  };
458
439
  };
459
440
  };
460
441
  collection: boolean;
461
- writeable: boolean;
442
+ writable: boolean;
462
443
  };
463
444
  country: {
464
- writeable: boolean;
445
+ writable: boolean;
465
446
  type: string;
466
447
  isKey: boolean;
467
- writable: boolean;
468
448
  mandatory: boolean;
469
449
  collection: boolean;
470
450
  private?: boolean;
@@ -477,10 +457,9 @@ export class Root extends Location {
477
457
  env?: string[] | string;
478
458
  };
479
459
  domain: {
480
- writeable: boolean;
460
+ writable: boolean;
481
461
  type: string;
482
462
  isKey: boolean;
483
- writable: boolean;
484
463
  mandatory: boolean;
485
464
  collection: boolean;
486
465
  private?: boolean;
@@ -494,10 +473,9 @@ export class Root extends Location {
494
473
  };
495
474
  domains: {
496
475
  collection: boolean;
497
- writeable: boolean;
476
+ writable: boolean;
498
477
  type: string;
499
478
  isKey: boolean;
500
- writable: boolean;
501
479
  mandatory: boolean;
502
480
  private?: boolean;
503
481
  depends?: string;
@@ -509,10 +487,9 @@ export class Root extends Location {
509
487
  env?: string[] | string;
510
488
  };
511
489
  timezone: {
512
- writeable: boolean;
490
+ writable: boolean;
513
491
  type: string;
514
492
  isKey: boolean;
515
- writable: boolean;
516
493
  mandatory: boolean;
517
494
  collection: boolean;
518
495
  private?: boolean;
@@ -526,10 +503,9 @@ export class Root extends Location {
526
503
  };
527
504
  architectures: {
528
505
  collection: boolean;
529
- writeable: boolean;
506
+ writable: boolean;
530
507
  type: string;
531
508
  isKey: boolean;
532
- writable: boolean;
533
509
  mandatory: boolean;
534
510
  private?: boolean;
535
511
  depends?: string;
@@ -542,10 +518,9 @@ export class Root extends Location {
542
518
  };
543
519
  locales: {
544
520
  collection: boolean;
545
- writeable: boolean;
521
+ writable: boolean;
546
522
  type: string;
547
523
  isKey: boolean;
548
- writable: boolean;
549
524
  mandatory: boolean;
550
525
  private?: boolean;
551
526
  depends?: string;
@@ -557,10 +532,9 @@ export class Root extends Location {
557
532
  env?: string[] | string;
558
533
  };
559
534
  administratorEmail: {
560
- writeable: boolean;
535
+ writable: boolean;
561
536
  type: string;
562
537
  isKey: boolean;
563
- writable: boolean;
564
538
  mandatory: boolean;
565
539
  collection: boolean;
566
540
  private?: boolean;
@@ -577,10 +551,9 @@ export class Root extends Location {
577
551
  properties: {
578
552
  locales: {
579
553
  collection: boolean;
580
- writeable: boolean;
554
+ writable: boolean;
581
555
  type: string;
582
556
  isKey: boolean;
583
- writable: boolean;
584
557
  mandatory: boolean;
585
558
  private?: boolean;
586
559
  depends?: string;