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
@@ -12,14 +12,13 @@ export class Location extends Owner {
12
12
  owner: {
13
13
  type: string;
14
14
  collection: boolean;
15
- writeable: boolean;
15
+ writable: boolean;
16
16
  };
17
17
  type: import("pacc").AttributeDefinition;
18
18
  name: {
19
19
  isKey: boolean;
20
- writeable: boolean;
21
- type: string;
22
20
  writable: boolean;
21
+ type: string;
23
22
  mandatory: boolean;
24
23
  collection: boolean;
25
24
  private?: boolean;
@@ -32,10 +31,9 @@ export class Location extends Owner {
32
31
  env?: string[] | string;
33
32
  };
34
33
  description: {
35
- writeable: boolean;
34
+ writable: boolean;
36
35
  type: string;
37
36
  isKey: boolean;
38
- writable: boolean;
39
37
  mandatory: boolean;
40
38
  collection: boolean;
41
39
  private?: boolean;
@@ -50,13 +48,12 @@ export class Location extends Owner {
50
48
  priority: {
51
49
  type: string;
52
50
  collection: boolean;
53
- writeable: boolean;
51
+ writable: boolean;
54
52
  };
55
53
  directory: {
56
- writeable: boolean;
54
+ writable: boolean;
57
55
  type: string;
58
56
  isKey: boolean;
59
- writable: boolean;
60
57
  mandatory: boolean;
61
58
  collection: boolean;
62
59
  private?: boolean;
@@ -69,10 +66,9 @@ export class Location extends Owner {
69
66
  env?: string[] | string;
70
67
  };
71
68
  packaging: {
72
- writeable: boolean;
69
+ writable: boolean;
73
70
  type: string;
74
71
  isKey: boolean;
75
- writable: boolean;
76
72
  mandatory: boolean;
77
73
  collection: boolean;
78
74
  private?: boolean;
@@ -85,11 +81,10 @@ export class Location extends Owner {
85
81
  env?: string[] | string;
86
82
  };
87
83
  disabled: {
88
- writeable: boolean;
84
+ writable: boolean;
89
85
  default: boolean;
90
86
  type: string;
91
87
  isKey: boolean;
92
- writable: boolean;
93
88
  mandatory: boolean;
94
89
  collection: boolean;
95
90
  private?: boolean;
@@ -102,10 +97,9 @@ export class Location extends Owner {
102
97
  };
103
98
  tags: {
104
99
  collection: boolean;
105
- writeable: boolean;
100
+ writable: boolean;
106
101
  type: string;
107
102
  isKey: boolean;
108
- writable: boolean;
109
103
  mandatory: boolean;
110
104
  private?: boolean;
111
105
  depends?: string;
@@ -122,17 +116,17 @@ export class Location extends Owner {
122
116
  networks: {
123
117
  type: string;
124
118
  collection: boolean;
125
- writeable: boolean;
119
+ writable: boolean;
126
120
  };
127
121
  hosts: {
128
122
  type: string;
129
123
  collection: boolean;
130
- writeable: boolean;
124
+ writable: boolean;
131
125
  };
132
126
  clusters: {
133
127
  type: string;
134
128
  collection: boolean;
135
- writeable: boolean;
129
+ writable: boolean;
136
130
  };
137
131
  subnets: {
138
132
  type: {
@@ -159,23 +153,22 @@ export class Location extends Owner {
159
153
  networks: {
160
154
  type: string;
161
155
  collection: boolean;
162
- writeable: boolean;
156
+ writable: boolean;
163
157
  };
164
158
  prefixLength: {
165
159
  type: string;
166
160
  collection: boolean;
167
- writeable: boolean;
161
+ writable: boolean;
168
162
  };
169
163
  };
170
164
  };
171
165
  collection: boolean;
172
- writeable: boolean;
166
+ writable: boolean;
173
167
  };
174
168
  country: {
175
- writeable: boolean;
169
+ writable: boolean;
176
170
  type: string;
177
171
  isKey: boolean;
178
- writable: boolean;
179
172
  mandatory: boolean;
180
173
  collection: boolean;
181
174
  private?: boolean;
@@ -188,10 +181,9 @@ export class Location extends Owner {
188
181
  env?: string[] | string;
189
182
  };
190
183
  domain: {
191
- writeable: boolean;
184
+ writable: boolean;
192
185
  type: string;
193
186
  isKey: boolean;
194
- writable: boolean;
195
187
  mandatory: boolean;
196
188
  collection: boolean;
197
189
  private?: boolean;
@@ -205,10 +197,9 @@ export class Location extends Owner {
205
197
  };
206
198
  domains: {
207
199
  collection: boolean;
208
- writeable: boolean;
200
+ writable: boolean;
209
201
  type: string;
210
202
  isKey: boolean;
211
- writable: boolean;
212
203
  mandatory: boolean;
213
204
  private?: boolean;
214
205
  depends?: string;
@@ -220,10 +211,9 @@ export class Location extends Owner {
220
211
  env?: string[] | string;
221
212
  };
222
213
  timezone: {
223
- writeable: boolean;
214
+ writable: boolean;
224
215
  type: string;
225
216
  isKey: boolean;
226
- writable: boolean;
227
217
  mandatory: boolean;
228
218
  collection: boolean;
229
219
  private?: boolean;
@@ -237,10 +227,9 @@ export class Location extends Owner {
237
227
  };
238
228
  architectures: {
239
229
  collection: boolean;
240
- writeable: boolean;
230
+ writable: boolean;
241
231
  type: string;
242
232
  isKey: boolean;
243
- writable: boolean;
244
233
  mandatory: boolean;
245
234
  private?: boolean;
246
235
  depends?: string;
@@ -253,10 +242,9 @@ export class Location extends Owner {
253
242
  };
254
243
  locales: {
255
244
  collection: boolean;
256
- writeable: boolean;
245
+ writable: boolean;
257
246
  type: string;
258
247
  isKey: boolean;
259
- writable: boolean;
260
248
  mandatory: boolean;
261
249
  private?: boolean;
262
250
  depends?: string;
@@ -268,10 +256,9 @@ export class Location extends Owner {
268
256
  env?: string[] | string;
269
257
  };
270
258
  administratorEmail: {
271
- writeable: boolean;
259
+ writable: boolean;
272
260
  type: string;
273
261
  isKey: boolean;
274
- writable: boolean;
275
262
  mandatory: boolean;
276
263
  collection: boolean;
277
264
  private?: boolean;
@@ -297,14 +284,13 @@ export class Location extends Owner {
297
284
  owner: {
298
285
  type: string;
299
286
  collection: boolean;
300
- writeable: boolean;
287
+ writable: boolean;
301
288
  };
302
289
  type: import("pacc").AttributeDefinition;
303
290
  name: {
304
291
  isKey: boolean;
305
- writeable: boolean;
306
- type: string;
307
292
  writable: boolean;
293
+ type: string;
308
294
  mandatory: boolean;
309
295
  collection: boolean;
310
296
  private?: boolean;
@@ -317,10 +303,9 @@ export class Location extends Owner {
317
303
  env?: string[] | string;
318
304
  };
319
305
  description: {
320
- writeable: boolean;
306
+ writable: boolean;
321
307
  type: string;
322
308
  isKey: boolean;
323
- writable: boolean;
324
309
  mandatory: boolean;
325
310
  collection: boolean;
326
311
  private?: boolean;
@@ -335,13 +320,12 @@ export class Location extends Owner {
335
320
  priority: {
336
321
  type: string;
337
322
  collection: boolean;
338
- writeable: boolean;
323
+ writable: boolean;
339
324
  };
340
325
  directory: {
341
- writeable: boolean;
326
+ writable: boolean;
342
327
  type: string;
343
328
  isKey: boolean;
344
- writable: boolean;
345
329
  mandatory: boolean;
346
330
  collection: boolean;
347
331
  private?: boolean;
@@ -354,10 +338,9 @@ export class Location extends Owner {
354
338
  env?: string[] | string;
355
339
  };
356
340
  packaging: {
357
- writeable: boolean;
341
+ writable: boolean;
358
342
  type: string;
359
343
  isKey: boolean;
360
- writable: boolean;
361
344
  mandatory: boolean;
362
345
  collection: boolean;
363
346
  private?: boolean;
@@ -370,11 +353,10 @@ export class Location extends Owner {
370
353
  env?: string[] | string;
371
354
  };
372
355
  disabled: {
373
- writeable: boolean;
356
+ writable: boolean;
374
357
  default: boolean;
375
358
  type: string;
376
359
  isKey: boolean;
377
- writable: boolean;
378
360
  mandatory: boolean;
379
361
  collection: boolean;
380
362
  private?: boolean;
@@ -387,10 +369,9 @@ export class Location extends Owner {
387
369
  };
388
370
  tags: {
389
371
  collection: boolean;
390
- writeable: boolean;
372
+ writable: boolean;
391
373
  type: string;
392
374
  isKey: boolean;
393
- writable: boolean;
394
375
  mandatory: boolean;
395
376
  private?: boolean;
396
377
  depends?: string;
@@ -407,17 +388,17 @@ export class Location extends Owner {
407
388
  networks: {
408
389
  type: string;
409
390
  collection: boolean;
410
- writeable: boolean;
391
+ writable: boolean;
411
392
  };
412
393
  hosts: {
413
394
  type: string;
414
395
  collection: boolean;
415
- writeable: boolean;
396
+ writable: boolean;
416
397
  };
417
398
  clusters: {
418
399
  type: string;
419
400
  collection: boolean;
420
- writeable: boolean;
401
+ writable: boolean;
421
402
  };
422
403
  subnets: {
423
404
  type: {
@@ -444,23 +425,22 @@ export class Location extends Owner {
444
425
  networks: {
445
426
  type: string;
446
427
  collection: boolean;
447
- writeable: boolean;
428
+ writable: boolean;
448
429
  };
449
430
  prefixLength: {
450
431
  type: string;
451
432
  collection: boolean;
452
- writeable: boolean;
433
+ writable: boolean;
453
434
  };
454
435
  };
455
436
  };
456
437
  collection: boolean;
457
- writeable: boolean;
438
+ writable: boolean;
458
439
  };
459
440
  country: {
460
- writeable: boolean;
441
+ writable: boolean;
461
442
  type: string;
462
443
  isKey: boolean;
463
- writable: boolean;
464
444
  mandatory: boolean;
465
445
  collection: boolean;
466
446
  private?: boolean;
@@ -473,10 +453,9 @@ export class Location extends Owner {
473
453
  env?: string[] | string;
474
454
  };
475
455
  domain: {
476
- writeable: boolean;
456
+ writable: boolean;
477
457
  type: string;
478
458
  isKey: boolean;
479
- writable: boolean;
480
459
  mandatory: boolean;
481
460
  collection: boolean;
482
461
  private?: boolean;
@@ -490,10 +469,9 @@ export class Location extends Owner {
490
469
  };
491
470
  domains: {
492
471
  collection: boolean;
493
- writeable: boolean;
472
+ writable: boolean;
494
473
  type: string;
495
474
  isKey: boolean;
496
- writable: boolean;
497
475
  mandatory: boolean;
498
476
  private?: boolean;
499
477
  depends?: string;
@@ -505,10 +483,9 @@ export class Location extends Owner {
505
483
  env?: string[] | string;
506
484
  };
507
485
  timezone: {
508
- writeable: boolean;
486
+ writable: boolean;
509
487
  type: string;
510
488
  isKey: boolean;
511
- writable: boolean;
512
489
  mandatory: boolean;
513
490
  collection: boolean;
514
491
  private?: boolean;
@@ -522,10 +499,9 @@ export class Location extends Owner {
522
499
  };
523
500
  architectures: {
524
501
  collection: boolean;
525
- writeable: boolean;
502
+ writable: boolean;
526
503
  type: string;
527
504
  isKey: boolean;
528
- writable: boolean;
529
505
  mandatory: boolean;
530
506
  private?: boolean;
531
507
  depends?: string;
@@ -538,10 +514,9 @@ export class Location extends Owner {
538
514
  };
539
515
  locales: {
540
516
  collection: boolean;
541
- writeable: boolean;
517
+ writable: boolean;
542
518
  type: string;
543
519
  isKey: boolean;
544
- writable: boolean;
545
520
  mandatory: boolean;
546
521
  private?: boolean;
547
522
  depends?: string;
@@ -553,10 +528,9 @@ export class Location extends Owner {
553
528
  env?: string[] | string;
554
529
  };
555
530
  administratorEmail: {
556
- writeable: boolean;
531
+ writable: boolean;
557
532
  type: string;
558
533
  isKey: boolean;
559
- writable: boolean;
560
534
  mandatory: boolean;
561
535
  collection: boolean;
562
536
  private?: boolean;
@@ -573,10 +547,9 @@ export class Location extends Owner {
573
547
  properties: {
574
548
  locales: {
575
549
  collection: boolean;
576
- writeable: boolean;
550
+ writable: boolean;
577
551
  type: string;
578
552
  isKey: boolean;
579
- writable: boolean;
580
553
  mandatory: boolean;
581
554
  private?: boolean;
582
555
  depends?: string;