pmcf 3.11.3 → 3.11.5
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 +3 -3
- package/src/base.mjs +4 -3
- package/src/cluster.mjs +22 -5
- package/src/extra-source-service.mjs +6 -1
- package/src/host.mjs +10 -6
- package/src/network-interfaces/ethernet.mjs +6 -1
- package/src/network-interfaces/network-interface.mjs +15 -8
- package/src/owner.mjs +12 -3
- package/src/services/bind.mjs +19 -4
- package/types/base.d.mts +4 -8
- package/types/cluster.d.mts +125 -16
- package/types/extra-source-service.d.mts +164 -38
- package/types/host.d.mts +43 -8
- package/types/location.d.mts +86 -16
- package/types/network-interfaces/ethernet.d.mts +137 -99
- package/types/network-interfaces/loopback.d.mts +106 -94
- package/types/network-interfaces/network-interface.d.mts +106 -94
- package/types/network-interfaces/tun.d.mts +106 -94
- package/types/network-interfaces/wireguard.d.mts +106 -94
- package/types/network-interfaces/wlan.d.mts +172 -141
- package/types/network.d.mts +86 -16
- package/types/owner.d.mts +43 -8
- package/types/root.d.mts +86 -16
- package/types/service.d.mts +94 -32
- package/types/services/bind.d.mts +232 -48
- package/types/services/chrony.d.mts +193 -48
- package/types/services/headscale.d.mts +193 -48
- package/types/services/influxdb.d.mts +137 -40
- package/types/services/kea.d.mts +137 -40
- package/types/services/mosquitto.d.mts +137 -40
- package/types/services/openldap.d.mts +137 -40
- package/types/services/systemd-journal-remote.d.mts +137 -40
- package/types/services/systemd-journal-upload.d.mts +137 -40
- package/types/services/systemd-journal.d.mts +137 -40
- package/types/services/systemd-resolved.d.mts +193 -48
- package/types/services/systemd-timesyncd.d.mts +193 -48
|
@@ -13,15 +13,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
13
13
|
attributes: {
|
|
14
14
|
owner: {
|
|
15
15
|
type: string;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
writable: boolean;
|
|
18
|
-
};
|
|
19
|
-
type: import("pacc").AttributeDefinition;
|
|
20
|
-
name: import("pacc").AttributeDefinition;
|
|
21
|
-
description: {
|
|
22
|
-
writable: boolean;
|
|
23
|
-
type: object;
|
|
24
16
|
isKey: boolean;
|
|
17
|
+
writable: boolean;
|
|
25
18
|
mandatory: boolean;
|
|
26
19
|
collection: boolean;
|
|
27
20
|
private?: boolean;
|
|
@@ -36,6 +29,9 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
36
29
|
env?: string[] | string;
|
|
37
30
|
additionalValues?: object;
|
|
38
31
|
};
|
|
32
|
+
type: import("pacc").AttributeDefinition;
|
|
33
|
+
name: import("pacc").AttributeDefinition;
|
|
34
|
+
description: import("pacc").AttributeDefinition;
|
|
39
35
|
priority: import("pacc").AttributeDefinition;
|
|
40
36
|
directory: import("pacc").AttributeDefinition;
|
|
41
37
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -48,12 +44,38 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
48
44
|
networkInterfaces: {
|
|
49
45
|
type: string;
|
|
50
46
|
collection: boolean;
|
|
47
|
+
isKey: boolean;
|
|
51
48
|
writable: boolean;
|
|
49
|
+
mandatory: boolean;
|
|
50
|
+
private?: boolean;
|
|
51
|
+
depends?: string;
|
|
52
|
+
description?: string;
|
|
53
|
+
default?: any;
|
|
54
|
+
set?: Function;
|
|
55
|
+
get?: Function;
|
|
56
|
+
prepareValue?: Function;
|
|
57
|
+
values?: Set<any>;
|
|
58
|
+
externalName?: string;
|
|
59
|
+
env?: string[] | string;
|
|
60
|
+
additionalValues?: object;
|
|
52
61
|
};
|
|
53
62
|
services: {
|
|
54
63
|
type: string;
|
|
55
64
|
collection: boolean;
|
|
65
|
+
isKey: boolean;
|
|
56
66
|
writable: boolean;
|
|
67
|
+
mandatory: boolean;
|
|
68
|
+
private?: boolean;
|
|
69
|
+
depends?: string;
|
|
70
|
+
description?: string;
|
|
71
|
+
default?: any;
|
|
72
|
+
set?: Function;
|
|
73
|
+
get?: Function;
|
|
74
|
+
prepareValue?: Function;
|
|
75
|
+
values?: Set<any>;
|
|
76
|
+
externalName?: string;
|
|
77
|
+
env?: string[] | string;
|
|
78
|
+
additionalValues?: object;
|
|
57
79
|
};
|
|
58
80
|
aliases: import("pacc").AttributeDefinition;
|
|
59
81
|
os: {
|
|
@@ -140,7 +162,20 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
140
162
|
extends: {
|
|
141
163
|
type: string;
|
|
142
164
|
collection: boolean;
|
|
165
|
+
isKey: boolean;
|
|
143
166
|
writable: boolean;
|
|
167
|
+
mandatory: boolean;
|
|
168
|
+
private?: boolean;
|
|
169
|
+
depends?: string;
|
|
170
|
+
description?: string;
|
|
171
|
+
default?: any;
|
|
172
|
+
set?: Function;
|
|
173
|
+
get?: Function;
|
|
174
|
+
prepareValue?: Function;
|
|
175
|
+
values?: Set<any>;
|
|
176
|
+
externalName?: string;
|
|
177
|
+
env?: string[] | string;
|
|
178
|
+
additionalValues?: object;
|
|
144
179
|
};
|
|
145
180
|
model: import("pacc").AttributeDefinition;
|
|
146
181
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -180,15 +215,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
180
215
|
attributes: {
|
|
181
216
|
owner: {
|
|
182
217
|
type: string;
|
|
183
|
-
collection: boolean;
|
|
184
|
-
writable: boolean;
|
|
185
|
-
};
|
|
186
|
-
type: import("pacc").AttributeDefinition;
|
|
187
|
-
name: import("pacc").AttributeDefinition;
|
|
188
|
-
description: {
|
|
189
|
-
writable: boolean;
|
|
190
|
-
type: object;
|
|
191
218
|
isKey: boolean;
|
|
219
|
+
writable: boolean;
|
|
192
220
|
mandatory: boolean;
|
|
193
221
|
collection: boolean;
|
|
194
222
|
private?: boolean;
|
|
@@ -203,6 +231,9 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
203
231
|
env?: string[] | string;
|
|
204
232
|
additionalValues?: object;
|
|
205
233
|
};
|
|
234
|
+
type: import("pacc").AttributeDefinition;
|
|
235
|
+
name: import("pacc").AttributeDefinition;
|
|
236
|
+
description: import("pacc").AttributeDefinition;
|
|
206
237
|
priority: import("pacc").AttributeDefinition;
|
|
207
238
|
directory: import("pacc").AttributeDefinition;
|
|
208
239
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -215,12 +246,38 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
215
246
|
networkInterfaces: {
|
|
216
247
|
type: string;
|
|
217
248
|
collection: boolean;
|
|
249
|
+
isKey: boolean;
|
|
218
250
|
writable: boolean;
|
|
251
|
+
mandatory: boolean;
|
|
252
|
+
private?: boolean;
|
|
253
|
+
depends?: string;
|
|
254
|
+
description?: string;
|
|
255
|
+
default?: any;
|
|
256
|
+
set?: Function;
|
|
257
|
+
get?: Function;
|
|
258
|
+
prepareValue?: Function;
|
|
259
|
+
values?: Set<any>;
|
|
260
|
+
externalName?: string;
|
|
261
|
+
env?: string[] | string;
|
|
262
|
+
additionalValues?: object;
|
|
219
263
|
};
|
|
220
264
|
services: {
|
|
221
265
|
type: string;
|
|
222
266
|
collection: boolean;
|
|
267
|
+
isKey: boolean;
|
|
223
268
|
writable: boolean;
|
|
269
|
+
mandatory: boolean;
|
|
270
|
+
private?: boolean;
|
|
271
|
+
depends?: string;
|
|
272
|
+
description?: string;
|
|
273
|
+
default?: any;
|
|
274
|
+
set?: Function;
|
|
275
|
+
get?: Function;
|
|
276
|
+
prepareValue?: Function;
|
|
277
|
+
values?: Set<any>;
|
|
278
|
+
externalName?: string;
|
|
279
|
+
env?: string[] | string;
|
|
280
|
+
additionalValues?: object;
|
|
224
281
|
};
|
|
225
282
|
aliases: import("pacc").AttributeDefinition;
|
|
226
283
|
os: {
|
|
@@ -307,7 +364,20 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
307
364
|
extends: {
|
|
308
365
|
type: string;
|
|
309
366
|
collection: boolean;
|
|
367
|
+
isKey: boolean;
|
|
310
368
|
writable: boolean;
|
|
369
|
+
mandatory: boolean;
|
|
370
|
+
private?: boolean;
|
|
371
|
+
depends?: string;
|
|
372
|
+
description?: string;
|
|
373
|
+
default?: any;
|
|
374
|
+
set?: Function;
|
|
375
|
+
get?: Function;
|
|
376
|
+
prepareValue?: Function;
|
|
377
|
+
values?: Set<any>;
|
|
378
|
+
externalName?: string;
|
|
379
|
+
env?: string[] | string;
|
|
380
|
+
additionalValues?: object;
|
|
311
381
|
};
|
|
312
382
|
model: import("pacc").AttributeDefinition;
|
|
313
383
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -342,15 +412,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
342
412
|
attributes: {
|
|
343
413
|
owner: {
|
|
344
414
|
type: string;
|
|
345
|
-
collection: boolean;
|
|
346
|
-
writable: boolean;
|
|
347
|
-
};
|
|
348
|
-
type: import("pacc").AttributeDefinition;
|
|
349
|
-
name: import("pacc").AttributeDefinition;
|
|
350
|
-
description: {
|
|
351
|
-
writable: boolean;
|
|
352
|
-
type: object;
|
|
353
415
|
isKey: boolean;
|
|
416
|
+
writable: boolean;
|
|
354
417
|
mandatory: boolean;
|
|
355
418
|
collection: boolean;
|
|
356
419
|
private?: boolean;
|
|
@@ -365,6 +428,9 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
365
428
|
env?: string[] | string;
|
|
366
429
|
additionalValues?: object;
|
|
367
430
|
};
|
|
431
|
+
type: import("pacc").AttributeDefinition;
|
|
432
|
+
name: import("pacc").AttributeDefinition;
|
|
433
|
+
description: import("pacc").AttributeDefinition;
|
|
368
434
|
priority: import("pacc").AttributeDefinition;
|
|
369
435
|
directory: import("pacc").AttributeDefinition;
|
|
370
436
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -447,7 +513,20 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
447
513
|
source: {
|
|
448
514
|
type: any;
|
|
449
515
|
collection: boolean;
|
|
516
|
+
isKey: boolean;
|
|
450
517
|
writable: boolean;
|
|
518
|
+
mandatory: boolean;
|
|
519
|
+
private?: boolean;
|
|
520
|
+
depends?: string;
|
|
521
|
+
description?: string;
|
|
522
|
+
default?: any;
|
|
523
|
+
set?: Function;
|
|
524
|
+
get?: Function;
|
|
525
|
+
prepareValue?: Function;
|
|
526
|
+
values?: Set<any>;
|
|
527
|
+
externalName?: string;
|
|
528
|
+
env?: string[] | string;
|
|
529
|
+
additionalValues?: object;
|
|
451
530
|
};
|
|
452
531
|
};
|
|
453
532
|
};
|
|
@@ -463,15 +542,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
463
542
|
attributes: {
|
|
464
543
|
owner: {
|
|
465
544
|
type: string;
|
|
466
|
-
collection: boolean;
|
|
467
|
-
writable: boolean;
|
|
468
|
-
};
|
|
469
|
-
type: import("pacc").AttributeDefinition;
|
|
470
|
-
name: import("pacc").AttributeDefinition;
|
|
471
|
-
description: {
|
|
472
|
-
writable: boolean;
|
|
473
|
-
type: object;
|
|
474
545
|
isKey: boolean;
|
|
546
|
+
writable: boolean;
|
|
475
547
|
mandatory: boolean;
|
|
476
548
|
collection: boolean;
|
|
477
549
|
private?: boolean;
|
|
@@ -486,6 +558,9 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
486
558
|
env?: string[] | string;
|
|
487
559
|
additionalValues?: object;
|
|
488
560
|
};
|
|
561
|
+
type: import("pacc").AttributeDefinition;
|
|
562
|
+
name: import("pacc").AttributeDefinition;
|
|
563
|
+
description: import("pacc").AttributeDefinition;
|
|
489
564
|
priority: import("pacc").AttributeDefinition;
|
|
490
565
|
directory: import("pacc").AttributeDefinition;
|
|
491
566
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -498,12 +573,38 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
498
573
|
networkInterfaces: {
|
|
499
574
|
type: string;
|
|
500
575
|
collection: boolean;
|
|
576
|
+
isKey: boolean;
|
|
501
577
|
writable: boolean;
|
|
578
|
+
mandatory: boolean;
|
|
579
|
+
private?: boolean;
|
|
580
|
+
depends?: string;
|
|
581
|
+
description?: string;
|
|
582
|
+
default?: any;
|
|
583
|
+
set?: Function;
|
|
584
|
+
get?: Function;
|
|
585
|
+
prepareValue?: Function;
|
|
586
|
+
values?: Set<any>;
|
|
587
|
+
externalName?: string;
|
|
588
|
+
env?: string[] | string;
|
|
589
|
+
additionalValues?: object;
|
|
502
590
|
};
|
|
503
591
|
services: {
|
|
504
592
|
type: string;
|
|
505
593
|
collection: boolean;
|
|
594
|
+
isKey: boolean;
|
|
506
595
|
writable: boolean;
|
|
596
|
+
mandatory: boolean;
|
|
597
|
+
private?: boolean;
|
|
598
|
+
depends?: string;
|
|
599
|
+
description?: string;
|
|
600
|
+
default?: any;
|
|
601
|
+
set?: Function;
|
|
602
|
+
get?: Function;
|
|
603
|
+
prepareValue?: Function;
|
|
604
|
+
values?: Set<any>;
|
|
605
|
+
externalName?: string;
|
|
606
|
+
env?: string[] | string;
|
|
607
|
+
additionalValues?: object;
|
|
507
608
|
};
|
|
508
609
|
aliases: import("pacc").AttributeDefinition;
|
|
509
610
|
os: {
|
|
@@ -590,7 +691,20 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
590
691
|
extends: {
|
|
591
692
|
type: string;
|
|
592
693
|
collection: boolean;
|
|
694
|
+
isKey: boolean;
|
|
593
695
|
writable: boolean;
|
|
696
|
+
mandatory: boolean;
|
|
697
|
+
private?: boolean;
|
|
698
|
+
depends?: string;
|
|
699
|
+
description?: string;
|
|
700
|
+
default?: any;
|
|
701
|
+
set?: Function;
|
|
702
|
+
get?: Function;
|
|
703
|
+
prepareValue?: Function;
|
|
704
|
+
values?: Set<any>;
|
|
705
|
+
externalName?: string;
|
|
706
|
+
env?: string[] | string;
|
|
707
|
+
additionalValues?: object;
|
|
594
708
|
};
|
|
595
709
|
model: import("pacc").AttributeDefinition;
|
|
596
710
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -625,15 +739,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
625
739
|
attributes: {
|
|
626
740
|
owner: {
|
|
627
741
|
type: string;
|
|
628
|
-
collection: boolean;
|
|
629
|
-
writable: boolean;
|
|
630
|
-
};
|
|
631
|
-
type: import("pacc").AttributeDefinition;
|
|
632
|
-
name: import("pacc").AttributeDefinition;
|
|
633
|
-
description: {
|
|
634
|
-
writable: boolean;
|
|
635
|
-
type: object;
|
|
636
742
|
isKey: boolean;
|
|
743
|
+
writable: boolean;
|
|
637
744
|
mandatory: boolean;
|
|
638
745
|
collection: boolean;
|
|
639
746
|
private?: boolean;
|
|
@@ -648,6 +755,9 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
648
755
|
env?: string[] | string;
|
|
649
756
|
additionalValues?: object;
|
|
650
757
|
};
|
|
758
|
+
type: import("pacc").AttributeDefinition;
|
|
759
|
+
name: import("pacc").AttributeDefinition;
|
|
760
|
+
description: import("pacc").AttributeDefinition;
|
|
651
761
|
priority: import("pacc").AttributeDefinition;
|
|
652
762
|
directory: import("pacc").AttributeDefinition;
|
|
653
763
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -735,15 +845,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
735
845
|
attributes: {
|
|
736
846
|
owner: {
|
|
737
847
|
type: string;
|
|
738
|
-
collection: boolean;
|
|
739
|
-
writable: boolean;
|
|
740
|
-
};
|
|
741
|
-
type: import("pacc").AttributeDefinition;
|
|
742
|
-
name: import("pacc").AttributeDefinition;
|
|
743
|
-
description: {
|
|
744
|
-
writable: boolean;
|
|
745
|
-
type: object;
|
|
746
848
|
isKey: boolean;
|
|
849
|
+
writable: boolean;
|
|
747
850
|
mandatory: boolean;
|
|
748
851
|
collection: boolean;
|
|
749
852
|
private?: boolean;
|
|
@@ -758,6 +861,9 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
758
861
|
env?: string[] | string;
|
|
759
862
|
additionalValues?: object;
|
|
760
863
|
};
|
|
864
|
+
type: import("pacc").AttributeDefinition;
|
|
865
|
+
name: import("pacc").AttributeDefinition;
|
|
866
|
+
description: import("pacc").AttributeDefinition;
|
|
761
867
|
priority: import("pacc").AttributeDefinition;
|
|
762
868
|
directory: import("pacc").AttributeDefinition;
|
|
763
869
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -770,12 +876,38 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
770
876
|
networkInterfaces: {
|
|
771
877
|
type: string;
|
|
772
878
|
collection: boolean;
|
|
879
|
+
isKey: boolean;
|
|
773
880
|
writable: boolean;
|
|
881
|
+
mandatory: boolean;
|
|
882
|
+
private?: boolean;
|
|
883
|
+
depends?: string;
|
|
884
|
+
description?: string;
|
|
885
|
+
default?: any;
|
|
886
|
+
set?: Function;
|
|
887
|
+
get?: Function;
|
|
888
|
+
prepareValue?: Function;
|
|
889
|
+
values?: Set<any>;
|
|
890
|
+
externalName?: string;
|
|
891
|
+
env?: string[] | string;
|
|
892
|
+
additionalValues?: object;
|
|
774
893
|
};
|
|
775
894
|
services: {
|
|
776
895
|
type: string;
|
|
777
896
|
collection: boolean;
|
|
897
|
+
isKey: boolean;
|
|
778
898
|
writable: boolean;
|
|
899
|
+
mandatory: boolean;
|
|
900
|
+
private?: boolean;
|
|
901
|
+
depends?: string;
|
|
902
|
+
description?: string;
|
|
903
|
+
default?: any;
|
|
904
|
+
set?: Function;
|
|
905
|
+
get?: Function;
|
|
906
|
+
prepareValue?: Function;
|
|
907
|
+
values?: Set<any>;
|
|
908
|
+
externalName?: string;
|
|
909
|
+
env?: string[] | string;
|
|
910
|
+
additionalValues?: object;
|
|
779
911
|
};
|
|
780
912
|
aliases: import("pacc").AttributeDefinition;
|
|
781
913
|
os: {
|
|
@@ -862,7 +994,20 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
862
994
|
extends: {
|
|
863
995
|
type: string;
|
|
864
996
|
collection: boolean;
|
|
997
|
+
isKey: boolean;
|
|
865
998
|
writable: boolean;
|
|
999
|
+
mandatory: boolean;
|
|
1000
|
+
private?: boolean;
|
|
1001
|
+
depends?: string;
|
|
1002
|
+
description?: string;
|
|
1003
|
+
default?: any;
|
|
1004
|
+
set?: Function;
|
|
1005
|
+
get?: Function;
|
|
1006
|
+
prepareValue?: Function;
|
|
1007
|
+
values?: Set<any>;
|
|
1008
|
+
externalName?: string;
|
|
1009
|
+
env?: string[] | string;
|
|
1010
|
+
additionalValues?: object;
|
|
866
1011
|
};
|
|
867
1012
|
model: import("pacc").AttributeDefinition;
|
|
868
1013
|
isModel: import("pacc").AttributeDefinition;
|