pmcf 3.5.1 → 3.6.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.
- package/package.json +2 -2
- package/src/base.mjs +11 -7
- package/src/network-interfaces/loopback.mjs +3 -0
- package/src/network-interfaces/network-interface.mjs +1 -1
- package/src/network-support.mjs +6 -9
- package/src/service.mjs +5 -4
- package/types/base.d.mts +3 -29
- package/types/cluster.d.mts +4 -56
- package/types/extra-source-service.d.mts +6 -45
- package/types/host.d.mts +3 -29
- package/types/location.d.mts +5 -57
- package/types/network-interfaces/ethernet.d.mts +14 -92
- package/types/network-interfaces/loopback.d.mts +16 -92
- package/types/network-interfaces/network-interface.d.mts +14 -92
- package/types/network-interfaces/tun.d.mts +14 -92
- package/types/network-interfaces/wireguard.d.mts +14 -92
- package/types/network-interfaces/wlan.d.mts +21 -138
- package/types/network-support.d.mts +6 -18
- package/types/network.d.mts +6 -45
- package/types/owner.d.mts +2 -28
- package/types/root.d.mts +4 -56
- package/types/service.d.mts +13 -91
- package/types/services/bind.d.mts +12 -90
- package/types/services/chrony.d.mts +13 -91
- package/types/services/influxdb.d.mts +13 -91
- package/types/services/kea.d.mts +13 -91
- package/types/services/mosquitto.d.mts +13 -91
- package/types/services/openldap.d.mts +13 -91
- package/types/services/systemd-journal-remote.d.mts +12 -90
- package/types/services/systemd-journal-upload.d.mts +12 -90
- package/types/services/systemd-journal.d.mts +12 -90
- package/types/services/systemd-resolved.d.mts +12 -90
- package/types/services/systemd-timesyncd.d.mts +12 -90
|
@@ -43,20 +43,7 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
43
43
|
get?: Function;
|
|
44
44
|
env?: string[] | string;
|
|
45
45
|
};
|
|
46
|
-
priority:
|
|
47
|
-
writable: boolean;
|
|
48
|
-
type: string;
|
|
49
|
-
isKey: boolean;
|
|
50
|
-
mandatory: boolean;
|
|
51
|
-
collection: boolean;
|
|
52
|
-
private?: boolean;
|
|
53
|
-
depends?: string;
|
|
54
|
-
description?: string;
|
|
55
|
-
default?: any;
|
|
56
|
-
set?: Function;
|
|
57
|
-
get?: Function;
|
|
58
|
-
env?: string[] | string;
|
|
59
|
-
};
|
|
46
|
+
priority: import("pacc").AttributeDefinition;
|
|
60
47
|
directory: {
|
|
61
48
|
writable: boolean;
|
|
62
49
|
type: string;
|
|
@@ -86,20 +73,7 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
86
73
|
env?: string[] | string;
|
|
87
74
|
};
|
|
88
75
|
disabled: import("pacc").AttributeDefinition;
|
|
89
|
-
tags:
|
|
90
|
-
writable: boolean;
|
|
91
|
-
collection: boolean;
|
|
92
|
-
type: string;
|
|
93
|
-
isKey: boolean;
|
|
94
|
-
mandatory: boolean;
|
|
95
|
-
private: boolean;
|
|
96
|
-
depends: string;
|
|
97
|
-
description: string;
|
|
98
|
-
default: any;
|
|
99
|
-
set: Function;
|
|
100
|
-
get: Function;
|
|
101
|
-
env: string[] | string;
|
|
102
|
-
};
|
|
76
|
+
tags: import("pacc").AttributeDefinition;
|
|
103
77
|
};
|
|
104
78
|
};
|
|
105
79
|
specializations: {};
|
|
@@ -230,7 +204,6 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
230
204
|
scope: {
|
|
231
205
|
writable: boolean;
|
|
232
206
|
values: string[];
|
|
233
|
-
default: string;
|
|
234
207
|
type: string;
|
|
235
208
|
isKey: boolean;
|
|
236
209
|
mandatory: boolean;
|
|
@@ -238,6 +211,7 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
238
211
|
private?: boolean;
|
|
239
212
|
depends?: string;
|
|
240
213
|
description?: string;
|
|
214
|
+
default?: any;
|
|
241
215
|
set?: Function;
|
|
242
216
|
get?: Function;
|
|
243
217
|
env?: string[] | string;
|
|
@@ -301,24 +275,24 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
301
275
|
env?: string[] | string;
|
|
302
276
|
};
|
|
303
277
|
metric: {
|
|
304
|
-
writable: boolean;
|
|
305
|
-
default: number;
|
|
306
278
|
type: string;
|
|
307
279
|
isKey: boolean;
|
|
280
|
+
writable: boolean;
|
|
308
281
|
mandatory: boolean;
|
|
309
282
|
collection: boolean;
|
|
310
283
|
private?: boolean;
|
|
311
284
|
depends?: string;
|
|
312
285
|
description?: string;
|
|
286
|
+
default?: any;
|
|
313
287
|
set?: Function;
|
|
314
288
|
get?: Function;
|
|
315
289
|
env?: string[] | string;
|
|
316
290
|
};
|
|
317
291
|
mtu: {
|
|
318
|
-
writable: boolean;
|
|
319
292
|
default: number;
|
|
320
293
|
type: string;
|
|
321
294
|
isKey: boolean;
|
|
295
|
+
writable: boolean;
|
|
322
296
|
mandatory: boolean;
|
|
323
297
|
collection: boolean;
|
|
324
298
|
private?: boolean;
|
|
@@ -333,20 +307,7 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
333
307
|
collection: boolean;
|
|
334
308
|
writable: boolean;
|
|
335
309
|
};
|
|
336
|
-
multicastDNS:
|
|
337
|
-
writable: boolean;
|
|
338
|
-
type: string;
|
|
339
|
-
isKey: boolean;
|
|
340
|
-
mandatory: boolean;
|
|
341
|
-
collection: boolean;
|
|
342
|
-
private?: boolean;
|
|
343
|
-
depends?: string;
|
|
344
|
-
description?: string;
|
|
345
|
-
default?: any;
|
|
346
|
-
set?: Function;
|
|
347
|
-
get?: Function;
|
|
348
|
-
env?: string[] | string;
|
|
349
|
-
};
|
|
310
|
+
multicastDNS: import("pacc").AttributeDefinition;
|
|
350
311
|
};
|
|
351
312
|
};
|
|
352
313
|
owners: string[];
|
|
@@ -392,20 +353,7 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
392
353
|
get?: Function;
|
|
393
354
|
env?: string[] | string;
|
|
394
355
|
};
|
|
395
|
-
priority:
|
|
396
|
-
writable: boolean;
|
|
397
|
-
type: string;
|
|
398
|
-
isKey: boolean;
|
|
399
|
-
mandatory: boolean;
|
|
400
|
-
collection: boolean;
|
|
401
|
-
private?: boolean;
|
|
402
|
-
depends?: string;
|
|
403
|
-
description?: string;
|
|
404
|
-
default?: any;
|
|
405
|
-
set?: Function;
|
|
406
|
-
get?: Function;
|
|
407
|
-
env?: string[] | string;
|
|
408
|
-
};
|
|
356
|
+
priority: import("pacc").AttributeDefinition;
|
|
409
357
|
directory: {
|
|
410
358
|
writable: boolean;
|
|
411
359
|
type: string;
|
|
@@ -435,20 +383,7 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
435
383
|
env?: string[] | string;
|
|
436
384
|
};
|
|
437
385
|
disabled: import("pacc").AttributeDefinition;
|
|
438
|
-
tags:
|
|
439
|
-
writable: boolean;
|
|
440
|
-
collection: boolean;
|
|
441
|
-
type: string;
|
|
442
|
-
isKey: boolean;
|
|
443
|
-
mandatory: boolean;
|
|
444
|
-
private: boolean;
|
|
445
|
-
depends: string;
|
|
446
|
-
description: string;
|
|
447
|
-
default: any;
|
|
448
|
-
set: Function;
|
|
449
|
-
get: Function;
|
|
450
|
-
env: string[] | string;
|
|
451
|
-
};
|
|
386
|
+
tags: import("pacc").AttributeDefinition;
|
|
452
387
|
};
|
|
453
388
|
};
|
|
454
389
|
specializations: {};
|
|
@@ -579,7 +514,6 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
579
514
|
scope: {
|
|
580
515
|
writable: boolean;
|
|
581
516
|
values: string[];
|
|
582
|
-
default: string;
|
|
583
517
|
type: string;
|
|
584
518
|
isKey: boolean;
|
|
585
519
|
mandatory: boolean;
|
|
@@ -587,6 +521,7 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
587
521
|
private?: boolean;
|
|
588
522
|
depends?: string;
|
|
589
523
|
description?: string;
|
|
524
|
+
default?: any;
|
|
590
525
|
set?: Function;
|
|
591
526
|
get?: Function;
|
|
592
527
|
env?: string[] | string;
|
|
@@ -650,24 +585,24 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
650
585
|
env?: string[] | string;
|
|
651
586
|
};
|
|
652
587
|
metric: {
|
|
653
|
-
writable: boolean;
|
|
654
|
-
default: number;
|
|
655
588
|
type: string;
|
|
656
589
|
isKey: boolean;
|
|
590
|
+
writable: boolean;
|
|
657
591
|
mandatory: boolean;
|
|
658
592
|
collection: boolean;
|
|
659
593
|
private?: boolean;
|
|
660
594
|
depends?: string;
|
|
661
595
|
description?: string;
|
|
596
|
+
default?: any;
|
|
662
597
|
set?: Function;
|
|
663
598
|
get?: Function;
|
|
664
599
|
env?: string[] | string;
|
|
665
600
|
};
|
|
666
601
|
mtu: {
|
|
667
|
-
writable: boolean;
|
|
668
602
|
default: number;
|
|
669
603
|
type: string;
|
|
670
604
|
isKey: boolean;
|
|
605
|
+
writable: boolean;
|
|
671
606
|
mandatory: boolean;
|
|
672
607
|
collection: boolean;
|
|
673
608
|
private?: boolean;
|
|
@@ -682,20 +617,7 @@ export class TUNNetworkInterface extends SkeletonNetworkInterface {
|
|
|
682
617
|
collection: boolean;
|
|
683
618
|
writable: boolean;
|
|
684
619
|
};
|
|
685
|
-
multicastDNS:
|
|
686
|
-
writable: boolean;
|
|
687
|
-
type: string;
|
|
688
|
-
isKey: 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
|
-
env?: string[] | string;
|
|
698
|
-
};
|
|
620
|
+
multicastDNS: import("pacc").AttributeDefinition;
|
|
699
621
|
};
|
|
700
622
|
};
|
|
701
623
|
priority: number;
|
|
@@ -43,20 +43,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
43
43
|
get?: Function;
|
|
44
44
|
env?: string[] | string;
|
|
45
45
|
};
|
|
46
|
-
priority:
|
|
47
|
-
writable: boolean;
|
|
48
|
-
type: string;
|
|
49
|
-
isKey: boolean;
|
|
50
|
-
mandatory: boolean;
|
|
51
|
-
collection: boolean;
|
|
52
|
-
private?: boolean;
|
|
53
|
-
depends?: string;
|
|
54
|
-
description?: string;
|
|
55
|
-
default?: any;
|
|
56
|
-
set?: Function;
|
|
57
|
-
get?: Function;
|
|
58
|
-
env?: string[] | string;
|
|
59
|
-
};
|
|
46
|
+
priority: import("pacc").AttributeDefinition;
|
|
60
47
|
directory: {
|
|
61
48
|
writable: boolean;
|
|
62
49
|
type: string;
|
|
@@ -86,20 +73,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
86
73
|
env?: string[] | string;
|
|
87
74
|
};
|
|
88
75
|
disabled: import("pacc").AttributeDefinition;
|
|
89
|
-
tags:
|
|
90
|
-
writable: boolean;
|
|
91
|
-
collection: boolean;
|
|
92
|
-
type: string;
|
|
93
|
-
isKey: boolean;
|
|
94
|
-
mandatory: boolean;
|
|
95
|
-
private: boolean;
|
|
96
|
-
depends: string;
|
|
97
|
-
description: string;
|
|
98
|
-
default: any;
|
|
99
|
-
set: Function;
|
|
100
|
-
get: Function;
|
|
101
|
-
env: string[] | string;
|
|
102
|
-
};
|
|
76
|
+
tags: import("pacc").AttributeDefinition;
|
|
103
77
|
};
|
|
104
78
|
};
|
|
105
79
|
specializations: {};
|
|
@@ -230,7 +204,6 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
230
204
|
scope: {
|
|
231
205
|
writable: boolean;
|
|
232
206
|
values: string[];
|
|
233
|
-
default: string;
|
|
234
207
|
type: string;
|
|
235
208
|
isKey: boolean;
|
|
236
209
|
mandatory: boolean;
|
|
@@ -238,6 +211,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
238
211
|
private?: boolean;
|
|
239
212
|
depends?: string;
|
|
240
213
|
description?: string;
|
|
214
|
+
default?: any;
|
|
241
215
|
set?: Function;
|
|
242
216
|
get?: Function;
|
|
243
217
|
env?: string[] | string;
|
|
@@ -301,24 +275,24 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
301
275
|
env?: string[] | string;
|
|
302
276
|
};
|
|
303
277
|
metric: {
|
|
304
|
-
writable: boolean;
|
|
305
|
-
default: number;
|
|
306
278
|
type: string;
|
|
307
279
|
isKey: boolean;
|
|
280
|
+
writable: boolean;
|
|
308
281
|
mandatory: boolean;
|
|
309
282
|
collection: boolean;
|
|
310
283
|
private?: boolean;
|
|
311
284
|
depends?: string;
|
|
312
285
|
description?: string;
|
|
286
|
+
default?: any;
|
|
313
287
|
set?: Function;
|
|
314
288
|
get?: Function;
|
|
315
289
|
env?: string[] | string;
|
|
316
290
|
};
|
|
317
291
|
mtu: {
|
|
318
|
-
writable: boolean;
|
|
319
292
|
default: number;
|
|
320
293
|
type: string;
|
|
321
294
|
isKey: boolean;
|
|
295
|
+
writable: boolean;
|
|
322
296
|
mandatory: boolean;
|
|
323
297
|
collection: boolean;
|
|
324
298
|
private?: boolean;
|
|
@@ -333,20 +307,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
333
307
|
collection: boolean;
|
|
334
308
|
writable: boolean;
|
|
335
309
|
};
|
|
336
|
-
multicastDNS:
|
|
337
|
-
writable: boolean;
|
|
338
|
-
type: string;
|
|
339
|
-
isKey: boolean;
|
|
340
|
-
mandatory: boolean;
|
|
341
|
-
collection: boolean;
|
|
342
|
-
private?: boolean;
|
|
343
|
-
depends?: string;
|
|
344
|
-
description?: string;
|
|
345
|
-
default?: any;
|
|
346
|
-
set?: Function;
|
|
347
|
-
get?: Function;
|
|
348
|
-
env?: string[] | string;
|
|
349
|
-
};
|
|
310
|
+
multicastDNS: import("pacc").AttributeDefinition;
|
|
350
311
|
};
|
|
351
312
|
};
|
|
352
313
|
owners: string[];
|
|
@@ -392,20 +353,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
392
353
|
get?: Function;
|
|
393
354
|
env?: string[] | string;
|
|
394
355
|
};
|
|
395
|
-
priority:
|
|
396
|
-
writable: boolean;
|
|
397
|
-
type: string;
|
|
398
|
-
isKey: boolean;
|
|
399
|
-
mandatory: boolean;
|
|
400
|
-
collection: boolean;
|
|
401
|
-
private?: boolean;
|
|
402
|
-
depends?: string;
|
|
403
|
-
description?: string;
|
|
404
|
-
default?: any;
|
|
405
|
-
set?: Function;
|
|
406
|
-
get?: Function;
|
|
407
|
-
env?: string[] | string;
|
|
408
|
-
};
|
|
356
|
+
priority: import("pacc").AttributeDefinition;
|
|
409
357
|
directory: {
|
|
410
358
|
writable: boolean;
|
|
411
359
|
type: string;
|
|
@@ -435,20 +383,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
435
383
|
env?: string[] | string;
|
|
436
384
|
};
|
|
437
385
|
disabled: import("pacc").AttributeDefinition;
|
|
438
|
-
tags:
|
|
439
|
-
writable: boolean;
|
|
440
|
-
collection: boolean;
|
|
441
|
-
type: string;
|
|
442
|
-
isKey: boolean;
|
|
443
|
-
mandatory: boolean;
|
|
444
|
-
private: boolean;
|
|
445
|
-
depends: string;
|
|
446
|
-
description: string;
|
|
447
|
-
default: any;
|
|
448
|
-
set: Function;
|
|
449
|
-
get: Function;
|
|
450
|
-
env: string[] | string;
|
|
451
|
-
};
|
|
386
|
+
tags: import("pacc").AttributeDefinition;
|
|
452
387
|
};
|
|
453
388
|
};
|
|
454
389
|
specializations: {};
|
|
@@ -579,7 +514,6 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
579
514
|
scope: {
|
|
580
515
|
writable: boolean;
|
|
581
516
|
values: string[];
|
|
582
|
-
default: string;
|
|
583
517
|
type: string;
|
|
584
518
|
isKey: boolean;
|
|
585
519
|
mandatory: boolean;
|
|
@@ -587,6 +521,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
587
521
|
private?: boolean;
|
|
588
522
|
depends?: string;
|
|
589
523
|
description?: string;
|
|
524
|
+
default?: any;
|
|
590
525
|
set?: Function;
|
|
591
526
|
get?: Function;
|
|
592
527
|
env?: string[] | string;
|
|
@@ -650,24 +585,24 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
650
585
|
env?: string[] | string;
|
|
651
586
|
};
|
|
652
587
|
metric: {
|
|
653
|
-
writable: boolean;
|
|
654
|
-
default: number;
|
|
655
588
|
type: string;
|
|
656
589
|
isKey: boolean;
|
|
590
|
+
writable: boolean;
|
|
657
591
|
mandatory: boolean;
|
|
658
592
|
collection: boolean;
|
|
659
593
|
private?: boolean;
|
|
660
594
|
depends?: string;
|
|
661
595
|
description?: string;
|
|
596
|
+
default?: any;
|
|
662
597
|
set?: Function;
|
|
663
598
|
get?: Function;
|
|
664
599
|
env?: string[] | string;
|
|
665
600
|
};
|
|
666
601
|
mtu: {
|
|
667
|
-
writable: boolean;
|
|
668
602
|
default: number;
|
|
669
603
|
type: string;
|
|
670
604
|
isKey: boolean;
|
|
605
|
+
writable: boolean;
|
|
671
606
|
mandatory: boolean;
|
|
672
607
|
collection: boolean;
|
|
673
608
|
private?: boolean;
|
|
@@ -682,20 +617,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
682
617
|
collection: boolean;
|
|
683
618
|
writable: boolean;
|
|
684
619
|
};
|
|
685
|
-
multicastDNS:
|
|
686
|
-
writable: boolean;
|
|
687
|
-
type: string;
|
|
688
|
-
isKey: 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
|
-
env?: string[] | string;
|
|
698
|
-
};
|
|
620
|
+
multicastDNS: import("pacc").AttributeDefinition;
|
|
699
621
|
};
|
|
700
622
|
};
|
|
701
623
|
priority: number;
|