pmcf 3.13.5 → 3.13.7
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.
- package/package.json +4 -4
- package/src/cluster.mjs +0 -1
- package/src/extra-source-service.mjs +2 -2
- package/src/host.mjs +0 -1
- package/src/location.mjs +0 -1
- package/src/module.mjs +1 -0
- package/src/network-interfaces/ethernet.mjs +1 -2
- package/src/network-interfaces/loopback.mjs +1 -2
- package/src/network-interfaces/network-interface.mjs +0 -1
- package/src/network-interfaces/tun.mjs +1 -2
- package/src/network-interfaces/wireguard.mjs +1 -2
- package/src/network-interfaces/wlan.mjs +1 -2
- package/src/network.mjs +0 -1
- package/src/owner.mjs +0 -1
- package/src/root.mjs +1 -2
- package/src/service.mjs +0 -2
- package/src/services/bind.mjs +22 -4
- package/src/services/chrony.mjs +2 -7
- package/src/services/headscale.mjs +3 -8
- package/src/services/influxdb.mjs +2 -2
- package/src/services/kea.mjs +1 -2
- package/src/services/mosquitto.mjs +1 -2
- package/src/services/openldap.mjs +1 -2
- package/src/services/systemd-journal-remote.mjs +1 -2
- package/src/services/systemd-journal-upload.mjs +1 -2
- package/src/services/systemd-journal.mjs +1 -2
- package/src/services/systemd-resolved.mjs +1 -2
- package/src/services/systemd-timesyncd.mjs +0 -1
- package/src/services/tailscale.mjs +24 -0
- package/src/subnet.mjs +0 -1
- package/src/types.mjs +2 -4
- package/types/cluster.d.mts +0 -4
- package/types/extra-source-service.d.mts +504 -206
- package/types/host.d.mts +0 -1
- package/types/location.d.mts +0 -5
- package/types/module.d.mts +1 -0
- package/types/network-interfaces/ethernet.d.mts +4 -14
- package/types/network-interfaces/loopback.d.mts +3 -12
- package/types/network-interfaces/network-interface.d.mts +0 -8
- package/types/network-interfaces/tun.d.mts +3 -12
- package/types/network-interfaces/wireguard.d.mts +3 -12
- package/types/network-interfaces/wlan.d.mts +854 -868
- package/types/network.d.mts +0 -6
- package/types/owner.d.mts +0 -2
- package/types/root.d.mts +0 -6
- package/types/service.d.mts +0 -6
- package/types/services/bind.d.mts +939 -644
- package/types/services/chrony.d.mts +939 -644
- package/types/services/headscale.d.mts +262 -492
- package/types/services/influxdb.d.mts +201 -207
- package/types/services/kea.d.mts +201 -207
- package/types/services/mosquitto.d.mts +201 -207
- package/types/services/openldap.d.mts +201 -207
- package/types/services/systemd-journal-remote.d.mts +201 -207
- package/types/services/systemd-journal-upload.d.mts +201 -207
- package/types/services/systemd-journal.d.mts +201 -207
- package/types/services/systemd-resolved.d.mts +939 -644
- package/types/services/systemd-timesyncd.d.mts +424 -129
- package/types/services/tailscale.d.mts +818 -0
- package/types/subnet.d.mts +0 -1
- package/types/types.d.mts +1 -1
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
export class SystemdJournalRemoteService extends Service {
|
|
2
2
|
static get typeDefinition(): {
|
|
3
3
|
name: string;
|
|
4
|
-
|
|
4
|
+
extends: {
|
|
5
5
|
name: string;
|
|
6
6
|
owners: (string | {
|
|
7
7
|
name: string;
|
|
8
|
-
priority: number;
|
|
9
8
|
owners: string[];
|
|
10
9
|
extends: {
|
|
11
10
|
name: string;
|
|
@@ -203,7 +202,6 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
203
202
|
address: import("pacc").AttributeDefinition;
|
|
204
203
|
};
|
|
205
204
|
})[];
|
|
206
|
-
priority: number;
|
|
207
205
|
extends: {
|
|
208
206
|
name: string;
|
|
209
207
|
key: string;
|
|
@@ -306,211 +304,10 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
306
304
|
address: import("pacc").AttributeDefinition;
|
|
307
305
|
};
|
|
308
306
|
};
|
|
309
|
-
|
|
310
|
-
name: string;
|
|
311
|
-
priority: number;
|
|
312
|
-
owners: string[];
|
|
313
|
-
extends: {
|
|
314
|
-
name: string;
|
|
315
|
-
key: string;
|
|
316
|
-
attributes: {
|
|
317
|
-
owner: {
|
|
318
|
-
type: string;
|
|
319
|
-
isKey: boolean;
|
|
320
|
-
writable: boolean;
|
|
321
|
-
mandatory: boolean;
|
|
322
|
-
collection: boolean;
|
|
323
|
-
private?: boolean;
|
|
324
|
-
depends?: string;
|
|
325
|
-
description?: string;
|
|
326
|
-
default?: any;
|
|
327
|
-
set?: Function;
|
|
328
|
-
get?: Function;
|
|
329
|
-
prepareValue?: Function;
|
|
330
|
-
values?: Set<any>;
|
|
331
|
-
externalName?: string;
|
|
332
|
-
env?: string[] | string;
|
|
333
|
-
additionalValues?: object;
|
|
334
|
-
};
|
|
335
|
-
type: import("pacc").AttributeDefinition;
|
|
336
|
-
name: import("pacc").AttributeDefinition;
|
|
337
|
-
description: import("pacc").AttributeDefinition;
|
|
338
|
-
priority: import("pacc").AttributeDefinition;
|
|
339
|
-
directory: import("pacc").AttributeDefinition;
|
|
340
|
-
packaging: import("pacc").AttributeDefinition;
|
|
341
|
-
disabled: import("pacc").AttributeDefinition;
|
|
342
|
-
tags: import("pacc").AttributeDefinition;
|
|
343
|
-
};
|
|
344
|
-
};
|
|
345
|
-
key: string;
|
|
346
|
-
attributes: {
|
|
347
|
-
networkInterfaces: {
|
|
348
|
-
type: string;
|
|
349
|
-
collection: boolean;
|
|
350
|
-
isKey: boolean;
|
|
351
|
-
writable: boolean;
|
|
352
|
-
mandatory: boolean;
|
|
353
|
-
private?: boolean;
|
|
354
|
-
depends?: string;
|
|
355
|
-
description?: string;
|
|
356
|
-
default?: any;
|
|
357
|
-
set?: Function;
|
|
358
|
-
get?: Function;
|
|
359
|
-
prepareValue?: Function;
|
|
360
|
-
values?: Set<any>;
|
|
361
|
-
externalName?: string;
|
|
362
|
-
env?: string[] | string;
|
|
363
|
-
additionalValues?: object;
|
|
364
|
-
};
|
|
365
|
-
services: {
|
|
366
|
-
type: string;
|
|
367
|
-
collection: boolean;
|
|
368
|
-
isKey: boolean;
|
|
369
|
-
writable: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
private?: boolean;
|
|
372
|
-
depends?: string;
|
|
373
|
-
description?: string;
|
|
374
|
-
default?: any;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
prepareValue?: Function;
|
|
378
|
-
values?: Set<any>;
|
|
379
|
-
externalName?: string;
|
|
380
|
-
env?: string[] | string;
|
|
381
|
-
additionalValues?: object;
|
|
382
|
-
};
|
|
383
|
-
aliases: import("pacc").AttributeDefinition;
|
|
384
|
-
os: {
|
|
385
|
-
values: string[];
|
|
386
|
-
type: object;
|
|
387
|
-
isKey: boolean;
|
|
388
|
-
writable: 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
|
-
prepareValue?: Function;
|
|
398
|
-
externalName?: string;
|
|
399
|
-
env?: string[] | string;
|
|
400
|
-
additionalValues?: object;
|
|
401
|
-
};
|
|
402
|
-
"machine-id": import("pacc").AttributeDefinition;
|
|
403
|
-
distribution: import("pacc").AttributeDefinition;
|
|
404
|
-
deployment: {
|
|
405
|
-
values: string[];
|
|
406
|
-
type: object;
|
|
407
|
-
isKey: boolean;
|
|
408
|
-
writable: boolean;
|
|
409
|
-
mandatory: boolean;
|
|
410
|
-
collection: boolean;
|
|
411
|
-
private?: boolean;
|
|
412
|
-
depends?: string;
|
|
413
|
-
description?: string;
|
|
414
|
-
default?: any;
|
|
415
|
-
set?: Function;
|
|
416
|
-
get?: Function;
|
|
417
|
-
prepareValue?: Function;
|
|
418
|
-
externalName?: string;
|
|
419
|
-
env?: string[] | string;
|
|
420
|
-
additionalValues?: object;
|
|
421
|
-
};
|
|
422
|
-
weight: import("pacc").AttributeDefinition;
|
|
423
|
-
serial: import("pacc").AttributeDefinition;
|
|
424
|
-
vendor: import("pacc").AttributeDefinition;
|
|
425
|
-
keymap: import("pacc").AttributeDefinition;
|
|
426
|
-
chassis: {
|
|
427
|
-
values: string[];
|
|
428
|
-
type: object;
|
|
429
|
-
isKey: boolean;
|
|
430
|
-
writable: boolean;
|
|
431
|
-
mandatory: boolean;
|
|
432
|
-
collection: boolean;
|
|
433
|
-
private?: boolean;
|
|
434
|
-
depends?: string;
|
|
435
|
-
description?: string;
|
|
436
|
-
default?: any;
|
|
437
|
-
set?: Function;
|
|
438
|
-
get?: Function;
|
|
439
|
-
prepareValue?: Function;
|
|
440
|
-
externalName?: string;
|
|
441
|
-
env?: string[] | string;
|
|
442
|
-
additionalValues?: object;
|
|
443
|
-
};
|
|
444
|
-
architecture: {
|
|
445
|
-
values: string[];
|
|
446
|
-
type: object;
|
|
447
|
-
isKey: boolean;
|
|
448
|
-
writable: boolean;
|
|
449
|
-
mandatory: boolean;
|
|
450
|
-
collection: boolean;
|
|
451
|
-
private?: boolean;
|
|
452
|
-
depends?: string;
|
|
453
|
-
description?: string;
|
|
454
|
-
default?: any;
|
|
455
|
-
set?: Function;
|
|
456
|
-
get?: Function;
|
|
457
|
-
prepareValue?: Function;
|
|
458
|
-
externalName?: string;
|
|
459
|
-
env?: string[] | string;
|
|
460
|
-
additionalValues?: object;
|
|
461
|
-
};
|
|
462
|
-
replaces: import("pacc").AttributeDefinition;
|
|
463
|
-
depends: import("pacc").AttributeDefinition;
|
|
464
|
-
provides: import("pacc").AttributeDefinition;
|
|
465
|
-
extends: {
|
|
466
|
-
type: string;
|
|
467
|
-
collection: boolean;
|
|
468
|
-
isKey: boolean;
|
|
469
|
-
writable: boolean;
|
|
470
|
-
mandatory: boolean;
|
|
471
|
-
private?: boolean;
|
|
472
|
-
depends?: string;
|
|
473
|
-
description?: string;
|
|
474
|
-
default?: any;
|
|
475
|
-
set?: Function;
|
|
476
|
-
get?: Function;
|
|
477
|
-
prepareValue?: Function;
|
|
478
|
-
values?: Set<any>;
|
|
479
|
-
externalName?: string;
|
|
480
|
-
env?: string[] | string;
|
|
481
|
-
additionalValues?: object;
|
|
482
|
-
};
|
|
483
|
-
model: import("pacc").AttributeDefinition;
|
|
484
|
-
isModel: import("pacc").AttributeDefinition;
|
|
485
|
-
hostName: {
|
|
486
|
-
writable: boolean;
|
|
487
|
-
type: object;
|
|
488
|
-
isKey: boolean;
|
|
489
|
-
mandatory: boolean;
|
|
490
|
-
collection: boolean;
|
|
491
|
-
private?: boolean;
|
|
492
|
-
depends?: string;
|
|
493
|
-
description?: string;
|
|
494
|
-
default?: any;
|
|
495
|
-
set?: Function;
|
|
496
|
-
get?: Function;
|
|
497
|
-
prepareValue?: Function;
|
|
498
|
-
values?: Set<any>;
|
|
499
|
-
externalName?: string;
|
|
500
|
-
env?: string[] | string;
|
|
501
|
-
additionalValues?: object;
|
|
502
|
-
};
|
|
503
|
-
cidrAddresses: import("pacc").AttributeDefinition;
|
|
504
|
-
cidrAddress: import("pacc").AttributeDefinition;
|
|
505
|
-
addresses: import("pacc").AttributeDefinition;
|
|
506
|
-
address: import("pacc").AttributeDefinition;
|
|
507
|
-
};
|
|
508
|
-
})[];
|
|
509
|
-
extends: {
|
|
307
|
+
specializationOf: {
|
|
510
308
|
name: string;
|
|
511
309
|
owners: (string | {
|
|
512
310
|
name: string;
|
|
513
|
-
priority: number;
|
|
514
311
|
owners: string[];
|
|
515
312
|
extends: {
|
|
516
313
|
name: string;
|
|
@@ -708,7 +505,6 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
708
505
|
address: import("pacc").AttributeDefinition;
|
|
709
506
|
};
|
|
710
507
|
})[];
|
|
711
|
-
priority: number;
|
|
712
508
|
extends: {
|
|
713
509
|
name: string;
|
|
714
510
|
key: string;
|
|
@@ -811,7 +607,205 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
811
607
|
address: import("pacc").AttributeDefinition;
|
|
812
608
|
};
|
|
813
609
|
};
|
|
814
|
-
|
|
610
|
+
owners: (string | {
|
|
611
|
+
name: string;
|
|
612
|
+
owners: string[];
|
|
613
|
+
extends: {
|
|
614
|
+
name: string;
|
|
615
|
+
key: string;
|
|
616
|
+
attributes: {
|
|
617
|
+
owner: {
|
|
618
|
+
type: string;
|
|
619
|
+
isKey: boolean;
|
|
620
|
+
writable: boolean;
|
|
621
|
+
mandatory: boolean;
|
|
622
|
+
collection: boolean;
|
|
623
|
+
private?: boolean;
|
|
624
|
+
depends?: string;
|
|
625
|
+
description?: string;
|
|
626
|
+
default?: any;
|
|
627
|
+
set?: Function;
|
|
628
|
+
get?: Function;
|
|
629
|
+
prepareValue?: Function;
|
|
630
|
+
values?: Set<any>;
|
|
631
|
+
externalName?: string;
|
|
632
|
+
env?: string[] | string;
|
|
633
|
+
additionalValues?: object;
|
|
634
|
+
};
|
|
635
|
+
type: import("pacc").AttributeDefinition;
|
|
636
|
+
name: import("pacc").AttributeDefinition;
|
|
637
|
+
description: import("pacc").AttributeDefinition;
|
|
638
|
+
priority: import("pacc").AttributeDefinition;
|
|
639
|
+
directory: import("pacc").AttributeDefinition;
|
|
640
|
+
packaging: import("pacc").AttributeDefinition;
|
|
641
|
+
disabled: import("pacc").AttributeDefinition;
|
|
642
|
+
tags: import("pacc").AttributeDefinition;
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
key: string;
|
|
646
|
+
attributes: {
|
|
647
|
+
networkInterfaces: {
|
|
648
|
+
type: string;
|
|
649
|
+
collection: boolean;
|
|
650
|
+
isKey: boolean;
|
|
651
|
+
writable: boolean;
|
|
652
|
+
mandatory: boolean;
|
|
653
|
+
private?: boolean;
|
|
654
|
+
depends?: string;
|
|
655
|
+
description?: string;
|
|
656
|
+
default?: any;
|
|
657
|
+
set?: Function;
|
|
658
|
+
get?: Function;
|
|
659
|
+
prepareValue?: Function;
|
|
660
|
+
values?: Set<any>;
|
|
661
|
+
externalName?: string;
|
|
662
|
+
env?: string[] | string;
|
|
663
|
+
additionalValues?: object;
|
|
664
|
+
};
|
|
665
|
+
services: {
|
|
666
|
+
type: string;
|
|
667
|
+
collection: boolean;
|
|
668
|
+
isKey: boolean;
|
|
669
|
+
writable: boolean;
|
|
670
|
+
mandatory: boolean;
|
|
671
|
+
private?: boolean;
|
|
672
|
+
depends?: string;
|
|
673
|
+
description?: string;
|
|
674
|
+
default?: any;
|
|
675
|
+
set?: Function;
|
|
676
|
+
get?: Function;
|
|
677
|
+
prepareValue?: Function;
|
|
678
|
+
values?: Set<any>;
|
|
679
|
+
externalName?: string;
|
|
680
|
+
env?: string[] | string;
|
|
681
|
+
additionalValues?: object;
|
|
682
|
+
};
|
|
683
|
+
aliases: import("pacc").AttributeDefinition;
|
|
684
|
+
os: {
|
|
685
|
+
values: string[];
|
|
686
|
+
type: object;
|
|
687
|
+
isKey: boolean;
|
|
688
|
+
writable: boolean;
|
|
689
|
+
mandatory: boolean;
|
|
690
|
+
collection: boolean;
|
|
691
|
+
private?: boolean;
|
|
692
|
+
depends?: string;
|
|
693
|
+
description?: string;
|
|
694
|
+
default?: any;
|
|
695
|
+
set?: Function;
|
|
696
|
+
get?: Function;
|
|
697
|
+
prepareValue?: Function;
|
|
698
|
+
externalName?: string;
|
|
699
|
+
env?: string[] | string;
|
|
700
|
+
additionalValues?: object;
|
|
701
|
+
};
|
|
702
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
703
|
+
distribution: import("pacc").AttributeDefinition;
|
|
704
|
+
deployment: {
|
|
705
|
+
values: string[];
|
|
706
|
+
type: object;
|
|
707
|
+
isKey: boolean;
|
|
708
|
+
writable: boolean;
|
|
709
|
+
mandatory: boolean;
|
|
710
|
+
collection: boolean;
|
|
711
|
+
private?: boolean;
|
|
712
|
+
depends?: string;
|
|
713
|
+
description?: string;
|
|
714
|
+
default?: any;
|
|
715
|
+
set?: Function;
|
|
716
|
+
get?: Function;
|
|
717
|
+
prepareValue?: Function;
|
|
718
|
+
externalName?: string;
|
|
719
|
+
env?: string[] | string;
|
|
720
|
+
additionalValues?: object;
|
|
721
|
+
};
|
|
722
|
+
weight: import("pacc").AttributeDefinition;
|
|
723
|
+
serial: import("pacc").AttributeDefinition;
|
|
724
|
+
vendor: import("pacc").AttributeDefinition;
|
|
725
|
+
keymap: import("pacc").AttributeDefinition;
|
|
726
|
+
chassis: {
|
|
727
|
+
values: string[];
|
|
728
|
+
type: object;
|
|
729
|
+
isKey: boolean;
|
|
730
|
+
writable: boolean;
|
|
731
|
+
mandatory: boolean;
|
|
732
|
+
collection: boolean;
|
|
733
|
+
private?: boolean;
|
|
734
|
+
depends?: string;
|
|
735
|
+
description?: string;
|
|
736
|
+
default?: any;
|
|
737
|
+
set?: Function;
|
|
738
|
+
get?: Function;
|
|
739
|
+
prepareValue?: Function;
|
|
740
|
+
externalName?: string;
|
|
741
|
+
env?: string[] | string;
|
|
742
|
+
additionalValues?: object;
|
|
743
|
+
};
|
|
744
|
+
architecture: {
|
|
745
|
+
values: string[];
|
|
746
|
+
type: object;
|
|
747
|
+
isKey: boolean;
|
|
748
|
+
writable: boolean;
|
|
749
|
+
mandatory: boolean;
|
|
750
|
+
collection: boolean;
|
|
751
|
+
private?: boolean;
|
|
752
|
+
depends?: string;
|
|
753
|
+
description?: string;
|
|
754
|
+
default?: any;
|
|
755
|
+
set?: Function;
|
|
756
|
+
get?: Function;
|
|
757
|
+
prepareValue?: Function;
|
|
758
|
+
externalName?: string;
|
|
759
|
+
env?: string[] | string;
|
|
760
|
+
additionalValues?: object;
|
|
761
|
+
};
|
|
762
|
+
replaces: import("pacc").AttributeDefinition;
|
|
763
|
+
depends: import("pacc").AttributeDefinition;
|
|
764
|
+
provides: import("pacc").AttributeDefinition;
|
|
765
|
+
extends: {
|
|
766
|
+
type: string;
|
|
767
|
+
collection: boolean;
|
|
768
|
+
isKey: boolean;
|
|
769
|
+
writable: boolean;
|
|
770
|
+
mandatory: boolean;
|
|
771
|
+
private?: boolean;
|
|
772
|
+
depends?: string;
|
|
773
|
+
description?: string;
|
|
774
|
+
default?: any;
|
|
775
|
+
set?: Function;
|
|
776
|
+
get?: Function;
|
|
777
|
+
prepareValue?: Function;
|
|
778
|
+
values?: Set<any>;
|
|
779
|
+
externalName?: string;
|
|
780
|
+
env?: string[] | string;
|
|
781
|
+
additionalValues?: object;
|
|
782
|
+
};
|
|
783
|
+
model: import("pacc").AttributeDefinition;
|
|
784
|
+
isModel: import("pacc").AttributeDefinition;
|
|
785
|
+
hostName: {
|
|
786
|
+
writable: boolean;
|
|
787
|
+
type: object;
|
|
788
|
+
isKey: boolean;
|
|
789
|
+
mandatory: boolean;
|
|
790
|
+
collection: boolean;
|
|
791
|
+
private?: boolean;
|
|
792
|
+
depends?: string;
|
|
793
|
+
description?: string;
|
|
794
|
+
default?: any;
|
|
795
|
+
set?: Function;
|
|
796
|
+
get?: Function;
|
|
797
|
+
prepareValue?: Function;
|
|
798
|
+
values?: Set<any>;
|
|
799
|
+
externalName?: string;
|
|
800
|
+
env?: string[] | string;
|
|
801
|
+
additionalValues?: object;
|
|
802
|
+
};
|
|
803
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
804
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
805
|
+
addresses: import("pacc").AttributeDefinition;
|
|
806
|
+
address: import("pacc").AttributeDefinition;
|
|
807
|
+
};
|
|
808
|
+
})[];
|
|
815
809
|
key: string;
|
|
816
810
|
service: {
|
|
817
811
|
services: {
|