pmcf 3.8.8 → 3.8.10
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 -6
- package/src/cluster.mjs +3 -3
- package/src/host.mjs +17 -20
- package/src/network-interfaces/network-interface.mjs +5 -6
- package/src/network-support.mjs +15 -18
- package/src/owner.mjs +8 -7
- package/src/service.mjs +4 -5
- package/src/services/bind.mjs +6 -6
- package/src/services/systemd-journal-upload.mjs +2 -2
- package/types/base.d.mts +2 -28
- package/types/cluster.d.mts +102 -154
- package/types/extra-source-service.d.mts +25 -51
- package/types/host.d.mts +68 -94
- package/types/location.d.mts +64 -116
- package/types/network-interfaces/ethernet.d.mts +60 -112
- package/types/network-interfaces/loopback.d.mts +60 -112
- package/types/network-interfaces/network-interface.d.mts +60 -112
- package/types/network-interfaces/tun.d.mts +60 -112
- package/types/network-interfaces/wireguard.d.mts +60 -112
- package/types/network-interfaces/wlan.d.mts +90 -168
- package/types/network-support.d.mts +25 -25
- package/types/network.d.mts +37 -63
- package/types/owner.d.mts +32 -58
- package/types/root.d.mts +64 -116
- package/types/service.d.mts +52 -104
- package/types/services/bind.d.mts +55 -107
- package/types/services/chrony.d.mts +50 -102
- package/types/services/headscale.d.mts +50 -102
- package/types/services/influxdb.d.mts +50 -102
- package/types/services/kea.d.mts +50 -102
- package/types/services/mosquitto.d.mts +50 -102
- package/types/services/openldap.d.mts +50 -102
- package/types/services/systemd-journal-remote.d.mts +50 -102
- package/types/services/systemd-journal-upload.d.mts +51 -103
- package/types/services/systemd-journal.d.mts +50 -102
- package/types/services/systemd-resolved.d.mts +50 -102
- package/types/services/systemd-timesyncd.d.mts +50 -102
|
@@ -15,20 +15,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
15
15
|
writable: boolean;
|
|
16
16
|
};
|
|
17
17
|
type: import("pacc").AttributeDefinition;
|
|
18
|
-
name:
|
|
19
|
-
writable: boolean;
|
|
20
|
-
type: string;
|
|
21
|
-
isKey: boolean;
|
|
22
|
-
mandatory: boolean;
|
|
23
|
-
collection: boolean;
|
|
24
|
-
private?: boolean;
|
|
25
|
-
depends?: string;
|
|
26
|
-
description?: string;
|
|
27
|
-
default?: any;
|
|
28
|
-
set?: Function;
|
|
29
|
-
get?: Function;
|
|
30
|
-
env?: string[] | string;
|
|
31
|
-
};
|
|
18
|
+
name: import("pacc").AttributeDefinition;
|
|
32
19
|
description: {
|
|
33
20
|
writable: boolean;
|
|
34
21
|
type: string;
|
|
@@ -58,20 +45,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
58
45
|
get?: Function;
|
|
59
46
|
env?: string[] | string;
|
|
60
47
|
};
|
|
61
|
-
packaging:
|
|
62
|
-
writable: boolean;
|
|
63
|
-
type: string;
|
|
64
|
-
isKey: boolean;
|
|
65
|
-
mandatory: boolean;
|
|
66
|
-
collection: boolean;
|
|
67
|
-
private?: boolean;
|
|
68
|
-
depends?: string;
|
|
69
|
-
description?: string;
|
|
70
|
-
default?: any;
|
|
71
|
-
set?: Function;
|
|
72
|
-
get?: Function;
|
|
73
|
-
env?: string[] | string;
|
|
74
|
-
};
|
|
48
|
+
packaging: import("pacc").AttributeDefinition;
|
|
75
49
|
disabled: import("pacc").AttributeDefinition;
|
|
76
50
|
tags: import("pacc").AttributeDefinition;
|
|
77
51
|
};
|
|
@@ -99,9 +73,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
99
73
|
env?: string[] | string;
|
|
100
74
|
};
|
|
101
75
|
ipAddresses: {
|
|
102
|
-
writable: boolean;
|
|
103
76
|
type: string;
|
|
104
77
|
isKey: boolean;
|
|
78
|
+
writable: boolean;
|
|
105
79
|
mandatory: boolean;
|
|
106
80
|
collection: boolean;
|
|
107
81
|
private?: boolean;
|
|
@@ -113,9 +87,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
113
87
|
env?: string[] | string;
|
|
114
88
|
};
|
|
115
89
|
hwaddr: {
|
|
116
|
-
writable: boolean;
|
|
117
90
|
type: string;
|
|
118
91
|
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
119
93
|
mandatory: boolean;
|
|
120
94
|
collection: boolean;
|
|
121
95
|
private?: boolean;
|
|
@@ -132,9 +106,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
132
106
|
writable: boolean;
|
|
133
107
|
};
|
|
134
108
|
destination: {
|
|
135
|
-
writable: boolean;
|
|
136
109
|
type: string;
|
|
137
110
|
isKey: boolean;
|
|
111
|
+
writable: boolean;
|
|
138
112
|
mandatory: boolean;
|
|
139
113
|
collection: boolean;
|
|
140
114
|
private?: boolean;
|
|
@@ -146,23 +120,23 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
146
120
|
env?: string[] | string;
|
|
147
121
|
};
|
|
148
122
|
cidrAddresses: {
|
|
149
|
-
writable: boolean;
|
|
150
|
-
collection: boolean;
|
|
151
123
|
type: string;
|
|
152
124
|
isKey: boolean;
|
|
125
|
+
writable: boolean;
|
|
153
126
|
mandatory: boolean;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
127
|
+
collection: boolean;
|
|
128
|
+
private?: boolean;
|
|
129
|
+
depends?: string;
|
|
130
|
+
description?: string;
|
|
131
|
+
default?: any;
|
|
132
|
+
set?: Function;
|
|
133
|
+
get?: Function;
|
|
134
|
+
env?: string[] | string;
|
|
161
135
|
};
|
|
162
136
|
cidrAddress: {
|
|
163
|
-
writable: boolean;
|
|
164
137
|
type: string;
|
|
165
138
|
isKey: boolean;
|
|
139
|
+
writable: boolean;
|
|
166
140
|
mandatory: boolean;
|
|
167
141
|
collection: boolean;
|
|
168
142
|
private?: boolean;
|
|
@@ -174,23 +148,23 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
174
148
|
env?: string[] | string;
|
|
175
149
|
};
|
|
176
150
|
addresses: {
|
|
177
|
-
writable: boolean;
|
|
178
|
-
collection: boolean;
|
|
179
151
|
type: string;
|
|
180
152
|
isKey: boolean;
|
|
153
|
+
writable: boolean;
|
|
181
154
|
mandatory: boolean;
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
155
|
+
collection: boolean;
|
|
156
|
+
private?: boolean;
|
|
157
|
+
depends?: string;
|
|
158
|
+
description?: string;
|
|
159
|
+
default?: any;
|
|
160
|
+
set?: Function;
|
|
161
|
+
get?: Function;
|
|
162
|
+
env?: string[] | string;
|
|
189
163
|
};
|
|
190
164
|
address: {
|
|
191
|
-
writable: boolean;
|
|
192
165
|
type: string;
|
|
193
166
|
isKey: boolean;
|
|
167
|
+
writable: boolean;
|
|
194
168
|
mandatory: boolean;
|
|
195
169
|
collection: boolean;
|
|
196
170
|
private?: boolean;
|
|
@@ -202,10 +176,10 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
202
176
|
env?: string[] | string;
|
|
203
177
|
};
|
|
204
178
|
scope: {
|
|
205
|
-
writable: boolean;
|
|
206
179
|
values: string[];
|
|
207
180
|
type: string;
|
|
208
181
|
isKey: boolean;
|
|
182
|
+
writable: boolean;
|
|
209
183
|
mandatory: boolean;
|
|
210
184
|
collection: boolean;
|
|
211
185
|
private?: boolean;
|
|
@@ -217,10 +191,10 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
217
191
|
env?: string[] | string;
|
|
218
192
|
};
|
|
219
193
|
class: {
|
|
220
|
-
writable: boolean;
|
|
221
194
|
values: string[];
|
|
222
195
|
type: string;
|
|
223
196
|
isKey: boolean;
|
|
197
|
+
writable: boolean;
|
|
224
198
|
mandatory: boolean;
|
|
225
199
|
collection: boolean;
|
|
226
200
|
private?: boolean;
|
|
@@ -232,10 +206,10 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
232
206
|
env?: string[] | string;
|
|
233
207
|
};
|
|
234
208
|
kind: {
|
|
235
|
-
writable: boolean;
|
|
236
209
|
values: string[];
|
|
237
210
|
type: string;
|
|
238
211
|
isKey: boolean;
|
|
212
|
+
writable: boolean;
|
|
239
213
|
mandatory: boolean;
|
|
240
214
|
collection: boolean;
|
|
241
215
|
private?: boolean;
|
|
@@ -247,9 +221,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
247
221
|
env?: string[] | string;
|
|
248
222
|
};
|
|
249
223
|
ssid: {
|
|
250
|
-
writable: boolean;
|
|
251
224
|
type: string;
|
|
252
225
|
isKey: boolean;
|
|
226
|
+
writable: boolean;
|
|
253
227
|
mandatory: boolean;
|
|
254
228
|
collection: boolean;
|
|
255
229
|
private?: boolean;
|
|
@@ -261,9 +235,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
261
235
|
env?: string[] | string;
|
|
262
236
|
};
|
|
263
237
|
psk: {
|
|
264
|
-
writable: boolean;
|
|
265
238
|
type: string;
|
|
266
239
|
isKey: boolean;
|
|
240
|
+
writable: boolean;
|
|
267
241
|
mandatory: boolean;
|
|
268
242
|
collection: boolean;
|
|
269
243
|
private?: boolean;
|
|
@@ -325,20 +299,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
325
299
|
writable: boolean;
|
|
326
300
|
};
|
|
327
301
|
type: import("pacc").AttributeDefinition;
|
|
328
|
-
name:
|
|
329
|
-
writable: boolean;
|
|
330
|
-
type: string;
|
|
331
|
-
isKey: boolean;
|
|
332
|
-
mandatory: boolean;
|
|
333
|
-
collection: boolean;
|
|
334
|
-
private?: boolean;
|
|
335
|
-
depends?: string;
|
|
336
|
-
description?: string;
|
|
337
|
-
default?: any;
|
|
338
|
-
set?: Function;
|
|
339
|
-
get?: Function;
|
|
340
|
-
env?: string[] | string;
|
|
341
|
-
};
|
|
302
|
+
name: import("pacc").AttributeDefinition;
|
|
342
303
|
description: {
|
|
343
304
|
writable: boolean;
|
|
344
305
|
type: string;
|
|
@@ -368,20 +329,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
368
329
|
get?: Function;
|
|
369
330
|
env?: string[] | string;
|
|
370
331
|
};
|
|
371
|
-
packaging:
|
|
372
|
-
writable: boolean;
|
|
373
|
-
type: string;
|
|
374
|
-
isKey: boolean;
|
|
375
|
-
mandatory: boolean;
|
|
376
|
-
collection: boolean;
|
|
377
|
-
private?: boolean;
|
|
378
|
-
depends?: string;
|
|
379
|
-
description?: string;
|
|
380
|
-
default?: any;
|
|
381
|
-
set?: Function;
|
|
382
|
-
get?: Function;
|
|
383
|
-
env?: string[] | string;
|
|
384
|
-
};
|
|
332
|
+
packaging: import("pacc").AttributeDefinition;
|
|
385
333
|
disabled: import("pacc").AttributeDefinition;
|
|
386
334
|
tags: import("pacc").AttributeDefinition;
|
|
387
335
|
};
|
|
@@ -409,9 +357,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
409
357
|
env?: string[] | string;
|
|
410
358
|
};
|
|
411
359
|
ipAddresses: {
|
|
412
|
-
writable: boolean;
|
|
413
360
|
type: string;
|
|
414
361
|
isKey: boolean;
|
|
362
|
+
writable: boolean;
|
|
415
363
|
mandatory: boolean;
|
|
416
364
|
collection: boolean;
|
|
417
365
|
private?: boolean;
|
|
@@ -423,9 +371,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
423
371
|
env?: string[] | string;
|
|
424
372
|
};
|
|
425
373
|
hwaddr: {
|
|
426
|
-
writable: boolean;
|
|
427
374
|
type: string;
|
|
428
375
|
isKey: boolean;
|
|
376
|
+
writable: boolean;
|
|
429
377
|
mandatory: boolean;
|
|
430
378
|
collection: boolean;
|
|
431
379
|
private?: boolean;
|
|
@@ -442,9 +390,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
442
390
|
writable: boolean;
|
|
443
391
|
};
|
|
444
392
|
destination: {
|
|
445
|
-
writable: boolean;
|
|
446
393
|
type: string;
|
|
447
394
|
isKey: boolean;
|
|
395
|
+
writable: boolean;
|
|
448
396
|
mandatory: boolean;
|
|
449
397
|
collection: boolean;
|
|
450
398
|
private?: boolean;
|
|
@@ -456,23 +404,23 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
456
404
|
env?: string[] | string;
|
|
457
405
|
};
|
|
458
406
|
cidrAddresses: {
|
|
459
|
-
writable: boolean;
|
|
460
|
-
collection: boolean;
|
|
461
407
|
type: string;
|
|
462
408
|
isKey: boolean;
|
|
409
|
+
writable: boolean;
|
|
463
410
|
mandatory: boolean;
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
411
|
+
collection: boolean;
|
|
412
|
+
private?: boolean;
|
|
413
|
+
depends?: string;
|
|
414
|
+
description?: string;
|
|
415
|
+
default?: any;
|
|
416
|
+
set?: Function;
|
|
417
|
+
get?: Function;
|
|
418
|
+
env?: string[] | string;
|
|
471
419
|
};
|
|
472
420
|
cidrAddress: {
|
|
473
|
-
writable: boolean;
|
|
474
421
|
type: string;
|
|
475
422
|
isKey: boolean;
|
|
423
|
+
writable: boolean;
|
|
476
424
|
mandatory: boolean;
|
|
477
425
|
collection: boolean;
|
|
478
426
|
private?: boolean;
|
|
@@ -484,23 +432,23 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
484
432
|
env?: string[] | string;
|
|
485
433
|
};
|
|
486
434
|
addresses: {
|
|
487
|
-
writable: boolean;
|
|
488
|
-
collection: boolean;
|
|
489
435
|
type: string;
|
|
490
436
|
isKey: boolean;
|
|
437
|
+
writable: boolean;
|
|
491
438
|
mandatory: boolean;
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
439
|
+
collection: boolean;
|
|
440
|
+
private?: boolean;
|
|
441
|
+
depends?: string;
|
|
442
|
+
description?: string;
|
|
443
|
+
default?: any;
|
|
444
|
+
set?: Function;
|
|
445
|
+
get?: Function;
|
|
446
|
+
env?: string[] | string;
|
|
499
447
|
};
|
|
500
448
|
address: {
|
|
501
|
-
writable: boolean;
|
|
502
449
|
type: string;
|
|
503
450
|
isKey: boolean;
|
|
451
|
+
writable: boolean;
|
|
504
452
|
mandatory: boolean;
|
|
505
453
|
collection: boolean;
|
|
506
454
|
private?: boolean;
|
|
@@ -512,10 +460,10 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
512
460
|
env?: string[] | string;
|
|
513
461
|
};
|
|
514
462
|
scope: {
|
|
515
|
-
writable: boolean;
|
|
516
463
|
values: string[];
|
|
517
464
|
type: string;
|
|
518
465
|
isKey: boolean;
|
|
466
|
+
writable: boolean;
|
|
519
467
|
mandatory: boolean;
|
|
520
468
|
collection: boolean;
|
|
521
469
|
private?: boolean;
|
|
@@ -527,10 +475,10 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
527
475
|
env?: string[] | string;
|
|
528
476
|
};
|
|
529
477
|
class: {
|
|
530
|
-
writable: boolean;
|
|
531
478
|
values: string[];
|
|
532
479
|
type: string;
|
|
533
480
|
isKey: boolean;
|
|
481
|
+
writable: boolean;
|
|
534
482
|
mandatory: boolean;
|
|
535
483
|
collection: boolean;
|
|
536
484
|
private?: boolean;
|
|
@@ -542,10 +490,10 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
542
490
|
env?: string[] | string;
|
|
543
491
|
};
|
|
544
492
|
kind: {
|
|
545
|
-
writable: boolean;
|
|
546
493
|
values: string[];
|
|
547
494
|
type: string;
|
|
548
495
|
isKey: boolean;
|
|
496
|
+
writable: boolean;
|
|
549
497
|
mandatory: boolean;
|
|
550
498
|
collection: boolean;
|
|
551
499
|
private?: boolean;
|
|
@@ -557,9 +505,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
557
505
|
env?: string[] | string;
|
|
558
506
|
};
|
|
559
507
|
ssid: {
|
|
560
|
-
writable: boolean;
|
|
561
508
|
type: string;
|
|
562
509
|
isKey: boolean;
|
|
510
|
+
writable: boolean;
|
|
563
511
|
mandatory: boolean;
|
|
564
512
|
collection: boolean;
|
|
565
513
|
private?: boolean;
|
|
@@ -571,9 +519,9 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
571
519
|
env?: string[] | string;
|
|
572
520
|
};
|
|
573
521
|
psk: {
|
|
574
|
-
writable: boolean;
|
|
575
522
|
type: string;
|
|
576
523
|
isKey: boolean;
|
|
524
|
+
writable: boolean;
|
|
577
525
|
mandatory: boolean;
|
|
578
526
|
collection: boolean;
|
|
579
527
|
private?: boolean;
|