pmcf 3.0.0 → 3.1.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 +3 -3
- package/src/base.mjs +9 -9
- package/src/cluster.mjs +5 -5
- package/src/extra-source-service.mjs +1 -1
- package/src/host.mjs +19 -19
- package/src/location.mjs +1 -1
- package/src/network-interfaces/ethernet.mjs +1 -1
- package/src/network-interfaces/network-interface.mjs +6 -6
- package/src/network-support.mjs +14 -14
- package/src/network.mjs +2 -2
- package/src/owner.mjs +11 -11
- package/src/service.mjs +7 -7
- package/src/services/bind.mjs +18 -18
- package/src/services/chrony.mjs +0 -1
- package/src/services/kea.mjs +47 -6
- package/src/services/openldap.mjs +3 -3
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/subnet.mjs +2 -2
- package/types/base.d.mts +8 -14
- package/types/cluster.d.mts +58 -95
- package/types/extra-source-service.d.mts +22 -37
- package/types/host.d.mts +32 -56
- package/types/location.d.mts +43 -70
- package/types/network-interfaces/ethernet.d.mts +56 -96
- package/types/network-interfaces/loopback.d.mts +54 -94
- package/types/network-interfaces/network-interface.d.mts +54 -94
- package/types/network-interfaces/wireguard.d.mts +54 -94
- package/types/network-interfaces/wlan.d.mts +82 -142
- package/types/network-support.d.mts +16 -27
- package/types/network.d.mts +31 -50
- package/types/owner.d.mts +21 -34
- package/types/root.d.mts +43 -70
- package/types/service.d.mts +44 -77
- package/types/services/bind.d.mts +59 -101
- package/types/services/chrony.d.mts +41 -71
- package/types/services/influxdb.d.mts +40 -70
- package/types/services/kea.d.mts +122 -71
- package/types/services/mosquitto.d.mts +40 -70
- package/types/services/openldap.d.mts +43 -76
- package/types/services/systemd-journal-remote.d.mts +40 -70
- package/types/services/systemd-journal-upload.d.mts +41 -72
- package/types/services/systemd-journal.d.mts +40 -70
- package/types/services/systemd-resolved.d.mts +40 -70
- package/types/services/systemd-timesyncd.d.mts +40 -70
- package/types/subnet.d.mts +2 -2
package/types/location.d.mts
CHANGED
|
@@ -12,14 +12,13 @@ export class Location extends Owner {
|
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
15
|
-
|
|
15
|
+
writable: boolean;
|
|
16
16
|
};
|
|
17
17
|
type: import("pacc").AttributeDefinition;
|
|
18
18
|
name: {
|
|
19
19
|
isKey: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
type: string;
|
|
22
20
|
writable: boolean;
|
|
21
|
+
type: string;
|
|
23
22
|
mandatory: boolean;
|
|
24
23
|
collection: boolean;
|
|
25
24
|
private?: boolean;
|
|
@@ -32,10 +31,9 @@ export class Location extends Owner {
|
|
|
32
31
|
env?: string[] | string;
|
|
33
32
|
};
|
|
34
33
|
description: {
|
|
35
|
-
|
|
34
|
+
writable: boolean;
|
|
36
35
|
type: string;
|
|
37
36
|
isKey: boolean;
|
|
38
|
-
writable: boolean;
|
|
39
37
|
mandatory: boolean;
|
|
40
38
|
collection: boolean;
|
|
41
39
|
private?: boolean;
|
|
@@ -50,13 +48,12 @@ export class Location extends Owner {
|
|
|
50
48
|
priority: {
|
|
51
49
|
type: string;
|
|
52
50
|
collection: boolean;
|
|
53
|
-
|
|
51
|
+
writable: boolean;
|
|
54
52
|
};
|
|
55
53
|
directory: {
|
|
56
|
-
|
|
54
|
+
writable: boolean;
|
|
57
55
|
type: string;
|
|
58
56
|
isKey: boolean;
|
|
59
|
-
writable: boolean;
|
|
60
57
|
mandatory: boolean;
|
|
61
58
|
collection: boolean;
|
|
62
59
|
private?: boolean;
|
|
@@ -69,10 +66,9 @@ export class Location extends Owner {
|
|
|
69
66
|
env?: string[] | string;
|
|
70
67
|
};
|
|
71
68
|
packaging: {
|
|
72
|
-
|
|
69
|
+
writable: boolean;
|
|
73
70
|
type: string;
|
|
74
71
|
isKey: boolean;
|
|
75
|
-
writable: boolean;
|
|
76
72
|
mandatory: boolean;
|
|
77
73
|
collection: boolean;
|
|
78
74
|
private?: boolean;
|
|
@@ -85,11 +81,10 @@ export class Location extends Owner {
|
|
|
85
81
|
env?: string[] | string;
|
|
86
82
|
};
|
|
87
83
|
disabled: {
|
|
88
|
-
|
|
84
|
+
writable: boolean;
|
|
89
85
|
default: boolean;
|
|
90
86
|
type: string;
|
|
91
87
|
isKey: boolean;
|
|
92
|
-
writable: boolean;
|
|
93
88
|
mandatory: boolean;
|
|
94
89
|
collection: boolean;
|
|
95
90
|
private?: boolean;
|
|
@@ -102,10 +97,9 @@ export class Location extends Owner {
|
|
|
102
97
|
};
|
|
103
98
|
tags: {
|
|
104
99
|
collection: boolean;
|
|
105
|
-
|
|
100
|
+
writable: boolean;
|
|
106
101
|
type: string;
|
|
107
102
|
isKey: boolean;
|
|
108
|
-
writable: boolean;
|
|
109
103
|
mandatory: boolean;
|
|
110
104
|
private?: boolean;
|
|
111
105
|
depends?: string;
|
|
@@ -122,17 +116,17 @@ export class Location extends Owner {
|
|
|
122
116
|
networks: {
|
|
123
117
|
type: string;
|
|
124
118
|
collection: boolean;
|
|
125
|
-
|
|
119
|
+
writable: boolean;
|
|
126
120
|
};
|
|
127
121
|
hosts: {
|
|
128
122
|
type: string;
|
|
129
123
|
collection: boolean;
|
|
130
|
-
|
|
124
|
+
writable: boolean;
|
|
131
125
|
};
|
|
132
126
|
clusters: {
|
|
133
127
|
type: string;
|
|
134
128
|
collection: boolean;
|
|
135
|
-
|
|
129
|
+
writable: boolean;
|
|
136
130
|
};
|
|
137
131
|
subnets: {
|
|
138
132
|
type: {
|
|
@@ -159,23 +153,22 @@ export class Location extends Owner {
|
|
|
159
153
|
networks: {
|
|
160
154
|
type: string;
|
|
161
155
|
collection: boolean;
|
|
162
|
-
|
|
156
|
+
writable: boolean;
|
|
163
157
|
};
|
|
164
158
|
prefixLength: {
|
|
165
159
|
type: string;
|
|
166
160
|
collection: boolean;
|
|
167
|
-
|
|
161
|
+
writable: boolean;
|
|
168
162
|
};
|
|
169
163
|
};
|
|
170
164
|
};
|
|
171
165
|
collection: boolean;
|
|
172
|
-
|
|
166
|
+
writable: boolean;
|
|
173
167
|
};
|
|
174
168
|
country: {
|
|
175
|
-
|
|
169
|
+
writable: boolean;
|
|
176
170
|
type: string;
|
|
177
171
|
isKey: boolean;
|
|
178
|
-
writable: boolean;
|
|
179
172
|
mandatory: boolean;
|
|
180
173
|
collection: boolean;
|
|
181
174
|
private?: boolean;
|
|
@@ -188,10 +181,9 @@ export class Location extends Owner {
|
|
|
188
181
|
env?: string[] | string;
|
|
189
182
|
};
|
|
190
183
|
domain: {
|
|
191
|
-
|
|
184
|
+
writable: boolean;
|
|
192
185
|
type: string;
|
|
193
186
|
isKey: boolean;
|
|
194
|
-
writable: boolean;
|
|
195
187
|
mandatory: boolean;
|
|
196
188
|
collection: boolean;
|
|
197
189
|
private?: boolean;
|
|
@@ -205,10 +197,9 @@ export class Location extends Owner {
|
|
|
205
197
|
};
|
|
206
198
|
domains: {
|
|
207
199
|
collection: boolean;
|
|
208
|
-
|
|
200
|
+
writable: boolean;
|
|
209
201
|
type: string;
|
|
210
202
|
isKey: boolean;
|
|
211
|
-
writable: boolean;
|
|
212
203
|
mandatory: boolean;
|
|
213
204
|
private?: boolean;
|
|
214
205
|
depends?: string;
|
|
@@ -220,10 +211,9 @@ export class Location extends Owner {
|
|
|
220
211
|
env?: string[] | string;
|
|
221
212
|
};
|
|
222
213
|
timezone: {
|
|
223
|
-
|
|
214
|
+
writable: boolean;
|
|
224
215
|
type: string;
|
|
225
216
|
isKey: boolean;
|
|
226
|
-
writable: boolean;
|
|
227
217
|
mandatory: boolean;
|
|
228
218
|
collection: boolean;
|
|
229
219
|
private?: boolean;
|
|
@@ -237,10 +227,9 @@ export class Location extends Owner {
|
|
|
237
227
|
};
|
|
238
228
|
architectures: {
|
|
239
229
|
collection: boolean;
|
|
240
|
-
|
|
230
|
+
writable: boolean;
|
|
241
231
|
type: string;
|
|
242
232
|
isKey: boolean;
|
|
243
|
-
writable: boolean;
|
|
244
233
|
mandatory: boolean;
|
|
245
234
|
private?: boolean;
|
|
246
235
|
depends?: string;
|
|
@@ -253,10 +242,9 @@ export class Location extends Owner {
|
|
|
253
242
|
};
|
|
254
243
|
locales: {
|
|
255
244
|
collection: boolean;
|
|
256
|
-
|
|
245
|
+
writable: boolean;
|
|
257
246
|
type: string;
|
|
258
247
|
isKey: boolean;
|
|
259
|
-
writable: boolean;
|
|
260
248
|
mandatory: boolean;
|
|
261
249
|
private?: boolean;
|
|
262
250
|
depends?: string;
|
|
@@ -268,10 +256,9 @@ export class Location extends Owner {
|
|
|
268
256
|
env?: string[] | string;
|
|
269
257
|
};
|
|
270
258
|
administratorEmail: {
|
|
271
|
-
|
|
259
|
+
writable: boolean;
|
|
272
260
|
type: string;
|
|
273
261
|
isKey: boolean;
|
|
274
|
-
writable: boolean;
|
|
275
262
|
mandatory: boolean;
|
|
276
263
|
collection: boolean;
|
|
277
264
|
private?: boolean;
|
|
@@ -297,14 +284,13 @@ export class Location extends Owner {
|
|
|
297
284
|
owner: {
|
|
298
285
|
type: string;
|
|
299
286
|
collection: boolean;
|
|
300
|
-
|
|
287
|
+
writable: boolean;
|
|
301
288
|
};
|
|
302
289
|
type: import("pacc").AttributeDefinition;
|
|
303
290
|
name: {
|
|
304
291
|
isKey: boolean;
|
|
305
|
-
writeable: boolean;
|
|
306
|
-
type: string;
|
|
307
292
|
writable: boolean;
|
|
293
|
+
type: string;
|
|
308
294
|
mandatory: boolean;
|
|
309
295
|
collection: boolean;
|
|
310
296
|
private?: boolean;
|
|
@@ -317,10 +303,9 @@ export class Location extends Owner {
|
|
|
317
303
|
env?: string[] | string;
|
|
318
304
|
};
|
|
319
305
|
description: {
|
|
320
|
-
|
|
306
|
+
writable: boolean;
|
|
321
307
|
type: string;
|
|
322
308
|
isKey: boolean;
|
|
323
|
-
writable: boolean;
|
|
324
309
|
mandatory: boolean;
|
|
325
310
|
collection: boolean;
|
|
326
311
|
private?: boolean;
|
|
@@ -335,13 +320,12 @@ export class Location extends Owner {
|
|
|
335
320
|
priority: {
|
|
336
321
|
type: string;
|
|
337
322
|
collection: boolean;
|
|
338
|
-
|
|
323
|
+
writable: boolean;
|
|
339
324
|
};
|
|
340
325
|
directory: {
|
|
341
|
-
|
|
326
|
+
writable: boolean;
|
|
342
327
|
type: string;
|
|
343
328
|
isKey: boolean;
|
|
344
|
-
writable: boolean;
|
|
345
329
|
mandatory: boolean;
|
|
346
330
|
collection: boolean;
|
|
347
331
|
private?: boolean;
|
|
@@ -354,10 +338,9 @@ export class Location extends Owner {
|
|
|
354
338
|
env?: string[] | string;
|
|
355
339
|
};
|
|
356
340
|
packaging: {
|
|
357
|
-
|
|
341
|
+
writable: boolean;
|
|
358
342
|
type: string;
|
|
359
343
|
isKey: boolean;
|
|
360
|
-
writable: boolean;
|
|
361
344
|
mandatory: boolean;
|
|
362
345
|
collection: boolean;
|
|
363
346
|
private?: boolean;
|
|
@@ -370,11 +353,10 @@ export class Location extends Owner {
|
|
|
370
353
|
env?: string[] | string;
|
|
371
354
|
};
|
|
372
355
|
disabled: {
|
|
373
|
-
|
|
356
|
+
writable: boolean;
|
|
374
357
|
default: boolean;
|
|
375
358
|
type: string;
|
|
376
359
|
isKey: boolean;
|
|
377
|
-
writable: boolean;
|
|
378
360
|
mandatory: boolean;
|
|
379
361
|
collection: boolean;
|
|
380
362
|
private?: boolean;
|
|
@@ -387,10 +369,9 @@ export class Location extends Owner {
|
|
|
387
369
|
};
|
|
388
370
|
tags: {
|
|
389
371
|
collection: boolean;
|
|
390
|
-
|
|
372
|
+
writable: boolean;
|
|
391
373
|
type: string;
|
|
392
374
|
isKey: boolean;
|
|
393
|
-
writable: boolean;
|
|
394
375
|
mandatory: boolean;
|
|
395
376
|
private?: boolean;
|
|
396
377
|
depends?: string;
|
|
@@ -407,17 +388,17 @@ export class Location extends Owner {
|
|
|
407
388
|
networks: {
|
|
408
389
|
type: string;
|
|
409
390
|
collection: boolean;
|
|
410
|
-
|
|
391
|
+
writable: boolean;
|
|
411
392
|
};
|
|
412
393
|
hosts: {
|
|
413
394
|
type: string;
|
|
414
395
|
collection: boolean;
|
|
415
|
-
|
|
396
|
+
writable: boolean;
|
|
416
397
|
};
|
|
417
398
|
clusters: {
|
|
418
399
|
type: string;
|
|
419
400
|
collection: boolean;
|
|
420
|
-
|
|
401
|
+
writable: boolean;
|
|
421
402
|
};
|
|
422
403
|
subnets: {
|
|
423
404
|
type: {
|
|
@@ -444,23 +425,22 @@ export class Location extends Owner {
|
|
|
444
425
|
networks: {
|
|
445
426
|
type: string;
|
|
446
427
|
collection: boolean;
|
|
447
|
-
|
|
428
|
+
writable: boolean;
|
|
448
429
|
};
|
|
449
430
|
prefixLength: {
|
|
450
431
|
type: string;
|
|
451
432
|
collection: boolean;
|
|
452
|
-
|
|
433
|
+
writable: boolean;
|
|
453
434
|
};
|
|
454
435
|
};
|
|
455
436
|
};
|
|
456
437
|
collection: boolean;
|
|
457
|
-
|
|
438
|
+
writable: boolean;
|
|
458
439
|
};
|
|
459
440
|
country: {
|
|
460
|
-
|
|
441
|
+
writable: boolean;
|
|
461
442
|
type: string;
|
|
462
443
|
isKey: boolean;
|
|
463
|
-
writable: boolean;
|
|
464
444
|
mandatory: boolean;
|
|
465
445
|
collection: boolean;
|
|
466
446
|
private?: boolean;
|
|
@@ -473,10 +453,9 @@ export class Location extends Owner {
|
|
|
473
453
|
env?: string[] | string;
|
|
474
454
|
};
|
|
475
455
|
domain: {
|
|
476
|
-
|
|
456
|
+
writable: boolean;
|
|
477
457
|
type: string;
|
|
478
458
|
isKey: boolean;
|
|
479
|
-
writable: boolean;
|
|
480
459
|
mandatory: boolean;
|
|
481
460
|
collection: boolean;
|
|
482
461
|
private?: boolean;
|
|
@@ -490,10 +469,9 @@ export class Location extends Owner {
|
|
|
490
469
|
};
|
|
491
470
|
domains: {
|
|
492
471
|
collection: boolean;
|
|
493
|
-
|
|
472
|
+
writable: boolean;
|
|
494
473
|
type: string;
|
|
495
474
|
isKey: boolean;
|
|
496
|
-
writable: boolean;
|
|
497
475
|
mandatory: boolean;
|
|
498
476
|
private?: boolean;
|
|
499
477
|
depends?: string;
|
|
@@ -505,10 +483,9 @@ export class Location extends Owner {
|
|
|
505
483
|
env?: string[] | string;
|
|
506
484
|
};
|
|
507
485
|
timezone: {
|
|
508
|
-
|
|
486
|
+
writable: boolean;
|
|
509
487
|
type: string;
|
|
510
488
|
isKey: boolean;
|
|
511
|
-
writable: boolean;
|
|
512
489
|
mandatory: boolean;
|
|
513
490
|
collection: boolean;
|
|
514
491
|
private?: boolean;
|
|
@@ -522,10 +499,9 @@ export class Location extends Owner {
|
|
|
522
499
|
};
|
|
523
500
|
architectures: {
|
|
524
501
|
collection: boolean;
|
|
525
|
-
|
|
502
|
+
writable: boolean;
|
|
526
503
|
type: string;
|
|
527
504
|
isKey: boolean;
|
|
528
|
-
writable: boolean;
|
|
529
505
|
mandatory: boolean;
|
|
530
506
|
private?: boolean;
|
|
531
507
|
depends?: string;
|
|
@@ -538,10 +514,9 @@ export class Location extends Owner {
|
|
|
538
514
|
};
|
|
539
515
|
locales: {
|
|
540
516
|
collection: boolean;
|
|
541
|
-
|
|
517
|
+
writable: boolean;
|
|
542
518
|
type: string;
|
|
543
519
|
isKey: boolean;
|
|
544
|
-
writable: boolean;
|
|
545
520
|
mandatory: boolean;
|
|
546
521
|
private?: boolean;
|
|
547
522
|
depends?: string;
|
|
@@ -553,10 +528,9 @@ export class Location extends Owner {
|
|
|
553
528
|
env?: string[] | string;
|
|
554
529
|
};
|
|
555
530
|
administratorEmail: {
|
|
556
|
-
|
|
531
|
+
writable: boolean;
|
|
557
532
|
type: string;
|
|
558
533
|
isKey: boolean;
|
|
559
|
-
writable: boolean;
|
|
560
534
|
mandatory: boolean;
|
|
561
535
|
collection: boolean;
|
|
562
536
|
private?: boolean;
|
|
@@ -573,10 +547,9 @@ export class Location extends Owner {
|
|
|
573
547
|
properties: {
|
|
574
548
|
locales: {
|
|
575
549
|
collection: boolean;
|
|
576
|
-
|
|
550
|
+
writable: boolean;
|
|
577
551
|
type: string;
|
|
578
552
|
isKey: boolean;
|
|
579
|
-
writable: boolean;
|
|
580
553
|
mandatory: boolean;
|
|
581
554
|
private?: boolean;
|
|
582
555
|
depends?: string;
|