pmcf 2.74.0 → 2.74.2

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 (35) hide show
  1. package/package.json +2 -2
  2. package/src/host.mjs +17 -22
  3. package/src/location.mjs +2 -1
  4. package/src/network-interfaces/network-interface.mjs +5 -4
  5. package/src/network-support.mjs +14 -17
  6. package/src/owner.mjs +8 -8
  7. package/src/service.mjs +7 -9
  8. package/src/services/kea.mjs +1 -1
  9. package/src/subnet.mjs +2 -3
  10. package/types/cluster.d.mts +316 -31
  11. package/types/extra-source-service.d.mts +121 -13
  12. package/types/host.d.mts +220 -22
  13. package/types/location.d.mts +204 -19
  14. package/types/network-interfaces/ethernet.d.mts +340 -36
  15. package/types/network-interfaces/loopback.d.mts +340 -36
  16. package/types/network-interfaces/network-interface.d.mts +340 -36
  17. package/types/network-interfaces/wireguard.d.mts +340 -36
  18. package/types/network-interfaces/wlan.d.mts +510 -54
  19. package/types/network-support.d.mts +186 -104
  20. package/types/network.d.mts +170 -19
  21. package/types/owner.d.mts +96 -9
  22. package/types/root.d.mts +204 -19
  23. package/types/service.d.mts +307 -62
  24. package/types/services/bind.d.mts +242 -26
  25. package/types/services/chrony.d.mts +242 -26
  26. package/types/services/influxdb.d.mts +242 -26
  27. package/types/services/kea.d.mts +242 -26
  28. package/types/services/mosquitto.d.mts +242 -26
  29. package/types/services/openldap.d.mts +242 -26
  30. package/types/services/systemd-journal-remote.d.mts +242 -26
  31. package/types/services/systemd-journal-upload.d.mts +242 -26
  32. package/types/services/systemd-journal.d.mts +242 -26
  33. package/types/services/systemd-resolved.d.mts +242 -26
  34. package/types/services/systemd-timesyncd.d.mts +242 -26
  35. package/types/subnet.d.mts +12 -2
@@ -22,42 +22,71 @@ export namespace endpointProperties {
22
22
  let collection: boolean;
23
23
  let writeable: boolean;
24
24
  }
25
- export namespace protocol {
26
- let type_1: string;
27
- export { type_1 as type };
28
- let collection_1: boolean;
29
- export { collection_1 as collection };
30
- let writeable_1: boolean;
31
- export { writeable_1 as writeable };
32
- export let values: string[];
33
- }
34
- export namespace type_2 {
35
- let type_3: string;
36
- export { type_3 as type };
37
- let collection_2: boolean;
38
- export { collection_2 as collection };
39
- let writeable_2: boolean;
40
- export { writeable_2 as writeable };
41
- }
42
- export { type_2 as type };
43
- export namespace types {
44
- let type_4: string;
45
- export { type_4 as type };
46
- let collection_3: boolean;
47
- export { collection_3 as collection };
48
- let writeable_3: boolean;
49
- export { writeable_3 as writeable };
50
- }
51
- export namespace tls {
52
- let type_5: string;
53
- export { type_5 as type };
54
- let collection_4: boolean;
55
- export { collection_4 as collection };
56
- let writeable_4: boolean;
57
- export { writeable_4 as writeable };
58
- let _default: boolean;
59
- export { _default as default };
60
- }
25
+ export let protocol: {
26
+ writeable: boolean;
27
+ values: string[];
28
+ type: string;
29
+ isKey: boolean;
30
+ writable: boolean;
31
+ mandatory: boolean;
32
+ collection: boolean;
33
+ private?: boolean;
34
+ depends?: string;
35
+ additionalAttributes: string[];
36
+ description?: string;
37
+ default?: any;
38
+ set?: Function;
39
+ get?: Function;
40
+ env?: string[] | string;
41
+ };
42
+ let type_1: {
43
+ writeable: boolean;
44
+ type: string;
45
+ isKey: boolean;
46
+ writable: boolean;
47
+ mandatory: boolean;
48
+ collection: boolean;
49
+ private?: boolean;
50
+ depends?: string;
51
+ additionalAttributes: string[];
52
+ description?: string;
53
+ default?: any;
54
+ set?: Function;
55
+ get?: Function;
56
+ env?: string[] | string;
57
+ };
58
+ export { type_1 as type };
59
+ export let types: {
60
+ collection: boolean;
61
+ type: string;
62
+ isKey: boolean;
63
+ writable: boolean;
64
+ mandatory: boolean;
65
+ private?: boolean;
66
+ depends?: string;
67
+ additionalAttributes: string[];
68
+ description?: string;
69
+ default?: any;
70
+ set?: Function;
71
+ get?: Function;
72
+ env?: string[] | string;
73
+ };
74
+ export let tls: {
75
+ writeable: boolean;
76
+ type: string;
77
+ isKey: boolean;
78
+ writable: boolean;
79
+ mandatory: boolean;
80
+ collection: boolean;
81
+ private?: boolean;
82
+ depends?: string;
83
+ additionalAttributes: string[];
84
+ description?: string;
85
+ default?: any;
86
+ set?: Function;
87
+ get?: Function;
88
+ env?: string[] | string;
89
+ };
61
90
  }
62
91
  export namespace EndpointTypeDefinition {
63
92
  export let name: string;
@@ -176,9 +205,20 @@ export namespace ServiceTypeDefinition {
176
205
  export function factoryFor(owner: any, value: any): any;
177
206
  export let properties: {
178
207
  alias: {
208
+ writeable: boolean;
179
209
  type: string;
210
+ isKey: boolean;
211
+ writable: boolean;
212
+ mandatory: boolean;
180
213
  collection: boolean;
181
- writeable: boolean;
214
+ private?: boolean;
215
+ depends?: string;
216
+ additionalAttributes: string[];
217
+ description?: string;
218
+ default?: any;
219
+ set?: Function;
220
+ get?: Function;
221
+ env?: string[] | string;
182
222
  };
183
223
  weight: {
184
224
  type: string;
@@ -197,51 +237,148 @@ export namespace ServiceTypeDefinition {
197
237
  writeable: boolean;
198
238
  };
199
239
  protocol: {
200
- type: string;
201
- collection: boolean;
202
240
  writeable: boolean;
203
241
  values: string[];
242
+ type: string;
243
+ isKey: boolean;
244
+ writable: boolean;
245
+ mandatory: boolean;
246
+ collection: boolean;
247
+ private?: boolean;
248
+ depends?: string;
249
+ additionalAttributes: string[];
250
+ description?: string;
251
+ default?: any;
252
+ set?: Function;
253
+ get?: Function;
254
+ env?: string[] | string;
204
255
  };
205
256
  type: {
257
+ writeable: boolean;
206
258
  type: string;
259
+ isKey: boolean;
260
+ writable: boolean;
261
+ mandatory: boolean;
207
262
  collection: boolean;
208
- writeable: boolean;
263
+ private?: boolean;
264
+ depends?: string;
265
+ additionalAttributes: string[];
266
+ description?: string;
267
+ default?: any;
268
+ set?: Function;
269
+ get?: Function;
270
+ env?: string[] | string;
209
271
  };
210
272
  types: {
211
- type: string;
212
273
  collection: boolean;
213
- writeable: boolean;
274
+ type: string;
275
+ isKey: boolean;
276
+ writable: boolean;
277
+ mandatory: boolean;
278
+ private?: boolean;
279
+ depends?: string;
280
+ additionalAttributes: string[];
281
+ description?: string;
282
+ default?: any;
283
+ set?: Function;
284
+ get?: Function;
285
+ env?: string[] | string;
214
286
  };
215
287
  tls: {
288
+ writeable: boolean;
216
289
  type: string;
290
+ isKey: boolean;
291
+ writable: boolean;
292
+ mandatory: boolean;
217
293
  collection: boolean;
218
- writeable: boolean;
219
- default: boolean;
294
+ private?: boolean;
295
+ depends?: string;
296
+ additionalAttributes: string[];
297
+ description?: string;
298
+ default?: any;
299
+ set?: Function;
300
+ get?: Function;
301
+ env?: string[] | string;
220
302
  };
221
303
  hostName: {
304
+ writeable: boolean;
222
305
  type: string;
306
+ isKey: boolean;
307
+ writable: boolean;
308
+ mandatory: boolean;
223
309
  collection: boolean;
224
- writeable: boolean;
310
+ private?: boolean;
311
+ depends?: string;
312
+ additionalAttributes: string[];
313
+ description?: string;
314
+ default?: any;
315
+ set?: Function;
316
+ get?: Function;
317
+ env?: string[] | string;
225
318
  };
226
319
  cidrAddresses: {
227
- type: string;
228
320
  collection: boolean;
229
321
  writeable: boolean;
322
+ type: string;
323
+ isKey: boolean;
324
+ writable: boolean;
325
+ mandatory: boolean;
326
+ private?: boolean;
327
+ depends?: string;
328
+ additionalAttributes: string[];
329
+ description?: string;
330
+ default?: any;
331
+ set?: Function;
332
+ get?: Function;
333
+ env?: string[] | string;
230
334
  };
231
335
  cidrAddress: {
336
+ writeable: boolean;
232
337
  type: string;
338
+ isKey: boolean;
339
+ writable: boolean;
340
+ mandatory: boolean;
233
341
  collection: boolean;
234
- writeable: boolean;
342
+ private?: boolean;
343
+ depends?: string;
344
+ additionalAttributes: string[];
345
+ description?: string;
346
+ default?: any;
347
+ set?: Function;
348
+ get?: Function;
349
+ env?: string[] | string;
235
350
  };
236
351
  addresses: {
237
- type: string;
238
352
  collection: boolean;
239
353
  writeable: boolean;
354
+ type: string;
355
+ isKey: boolean;
356
+ writable: boolean;
357
+ mandatory: boolean;
358
+ private?: boolean;
359
+ depends?: string;
360
+ additionalAttributes: string[];
361
+ description?: string;
362
+ default?: any;
363
+ set?: Function;
364
+ get?: Function;
365
+ env?: string[] | string;
240
366
  };
241
367
  address: {
368
+ writeable: boolean;
242
369
  type: string;
370
+ isKey: boolean;
371
+ writable: boolean;
372
+ mandatory: boolean;
243
373
  collection: boolean;
244
- writeable: boolean;
374
+ private?: boolean;
375
+ depends?: string;
376
+ additionalAttributes: string[];
377
+ description?: string;
378
+ default?: any;
379
+ set?: Function;
380
+ get?: Function;
381
+ env?: string[] | string;
245
382
  };
246
383
  };
247
384
  }
@@ -351,9 +488,20 @@ export class Service extends Base {
351
488
  factoryFor(owner: any, value: any): any;
352
489
  properties: {
353
490
  alias: {
491
+ writeable: boolean;
354
492
  type: string;
493
+ isKey: boolean;
494
+ writable: boolean;
495
+ mandatory: boolean;
355
496
  collection: boolean;
356
- writeable: boolean;
497
+ private?: boolean;
498
+ depends?: string;
499
+ additionalAttributes: string[];
500
+ description?: string;
501
+ default?: any;
502
+ set?: Function;
503
+ get?: Function;
504
+ env?: string[] | string;
357
505
  };
358
506
  weight: {
359
507
  type: string;
@@ -372,51 +520,148 @@ export class Service extends Base {
372
520
  writeable: boolean;
373
521
  };
374
522
  protocol: {
375
- type: string;
376
- collection: boolean;
377
523
  writeable: boolean;
378
524
  values: string[];
525
+ type: string;
526
+ isKey: boolean;
527
+ writable: boolean;
528
+ mandatory: boolean;
529
+ collection: boolean;
530
+ private?: boolean;
531
+ depends?: string;
532
+ additionalAttributes: string[];
533
+ description?: string;
534
+ default?: any;
535
+ set?: Function;
536
+ get?: Function;
537
+ env?: string[] | string;
379
538
  };
380
539
  type: {
540
+ writeable: boolean;
381
541
  type: string;
542
+ isKey: boolean;
543
+ writable: boolean;
544
+ mandatory: boolean;
382
545
  collection: boolean;
383
- writeable: boolean;
546
+ private?: boolean;
547
+ depends?: string;
548
+ additionalAttributes: string[];
549
+ description?: string;
550
+ default?: any;
551
+ set?: Function;
552
+ get?: Function;
553
+ env?: string[] | string;
384
554
  };
385
555
  types: {
386
- type: string;
387
556
  collection: boolean;
388
- writeable: boolean;
557
+ type: string;
558
+ isKey: boolean;
559
+ writable: boolean;
560
+ mandatory: boolean;
561
+ private?: boolean;
562
+ depends?: string;
563
+ additionalAttributes: string[];
564
+ description?: string;
565
+ default?: any;
566
+ set?: Function;
567
+ get?: Function;
568
+ env?: string[] | string;
389
569
  };
390
570
  tls: {
571
+ writeable: boolean;
391
572
  type: string;
573
+ isKey: boolean;
574
+ writable: boolean;
575
+ mandatory: boolean;
392
576
  collection: boolean;
393
- writeable: boolean;
394
- default: boolean;
577
+ private?: boolean;
578
+ depends?: string;
579
+ additionalAttributes: string[];
580
+ description?: string;
581
+ default?: any;
582
+ set?: Function;
583
+ get?: Function;
584
+ env?: string[] | string;
395
585
  };
396
586
  hostName: {
587
+ writeable: boolean;
397
588
  type: string;
589
+ isKey: boolean;
590
+ writable: boolean;
591
+ mandatory: boolean;
398
592
  collection: boolean;
399
- writeable: boolean;
593
+ private?: boolean;
594
+ depends?: string;
595
+ additionalAttributes: string[];
596
+ description?: string;
597
+ default?: any;
598
+ set?: Function;
599
+ get?: Function;
600
+ env?: string[] | string;
400
601
  };
401
602
  cidrAddresses: {
402
- type: string;
403
603
  collection: boolean;
404
604
  writeable: boolean;
605
+ type: string;
606
+ isKey: boolean;
607
+ writable: boolean;
608
+ mandatory: boolean;
609
+ private?: boolean;
610
+ depends?: string;
611
+ additionalAttributes: string[];
612
+ description?: string;
613
+ default?: any;
614
+ set?: Function;
615
+ get?: Function;
616
+ env?: string[] | string;
405
617
  };
406
618
  cidrAddress: {
619
+ writeable: boolean;
407
620
  type: string;
621
+ isKey: boolean;
622
+ writable: boolean;
623
+ mandatory: boolean;
408
624
  collection: boolean;
409
- writeable: boolean;
625
+ private?: boolean;
626
+ depends?: string;
627
+ additionalAttributes: string[];
628
+ description?: string;
629
+ default?: any;
630
+ set?: Function;
631
+ get?: Function;
632
+ env?: string[] | string;
410
633
  };
411
634
  addresses: {
412
- type: string;
413
635
  collection: boolean;
414
636
  writeable: boolean;
637
+ type: string;
638
+ isKey: boolean;
639
+ writable: boolean;
640
+ mandatory: boolean;
641
+ private?: boolean;
642
+ depends?: string;
643
+ additionalAttributes: string[];
644
+ description?: string;
645
+ default?: any;
646
+ set?: Function;
647
+ get?: Function;
648
+ env?: string[] | string;
415
649
  };
416
650
  address: {
651
+ writeable: boolean;
417
652
  type: string;
653
+ isKey: boolean;
654
+ writable: boolean;
655
+ mandatory: boolean;
418
656
  collection: boolean;
419
- writeable: boolean;
657
+ private?: boolean;
658
+ depends?: string;
659
+ additionalAttributes: string[];
660
+ description?: string;
661
+ default?: any;
662
+ set?: Function;
663
+ get?: Function;
664
+ env?: string[] | string;
420
665
  };
421
666
  };
422
667
  };