pmcf 2.74.1 → 2.74.2
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 +1 -1
- package/src/host.mjs +4 -4
- package/src/location.mjs +2 -1
- package/src/network-interfaces/network-interface.mjs +5 -4
- package/src/network-support.mjs +14 -17
- package/src/owner.mjs +4 -4
- package/src/service.mjs +7 -9
- package/types/cluster.d.mts +156 -13
- package/types/extra-source-service.d.mts +121 -13
- package/types/host.d.mts +108 -9
- package/types/location.d.mts +108 -9
- package/types/network-interfaces/ethernet.d.mts +340 -36
- package/types/network-interfaces/loopback.d.mts +340 -36
- package/types/network-interfaces/network-interface.d.mts +340 -36
- package/types/network-interfaces/wireguard.d.mts +340 -36
- package/types/network-interfaces/wlan.d.mts +510 -54
- package/types/network-support.d.mts +186 -104
- package/types/network.d.mts +122 -14
- package/types/owner.d.mts +48 -4
- package/types/root.d.mts +108 -9
- package/types/service.d.mts +307 -62
- package/types/services/bind.d.mts +242 -26
- package/types/services/chrony.d.mts +242 -26
- package/types/services/influxdb.d.mts +242 -26
- package/types/services/kea.d.mts +242 -26
- package/types/services/mosquitto.d.mts +242 -26
- package/types/services/openldap.d.mts +242 -26
- package/types/services/systemd-journal-remote.d.mts +242 -26
- package/types/services/systemd-journal-upload.d.mts +242 -26
- package/types/services/systemd-journal.d.mts +242 -26
- package/types/services/systemd-resolved.d.mts +242 -26
- package/types/services/systemd-timesyncd.d.mts +242 -26
package/types/host.d.mts
CHANGED
|
@@ -270,19 +270,52 @@ export class Host extends ServiceOwner {
|
|
|
270
270
|
env?: string[] | string;
|
|
271
271
|
};
|
|
272
272
|
replaces: {
|
|
273
|
-
type: string;
|
|
274
273
|
collection: boolean;
|
|
275
274
|
writeable: boolean;
|
|
275
|
+
type: string;
|
|
276
|
+
isKey: boolean;
|
|
277
|
+
writable: boolean;
|
|
278
|
+
mandatory: boolean;
|
|
279
|
+
private?: boolean;
|
|
280
|
+
depends?: string;
|
|
281
|
+
additionalAttributes: string[];
|
|
282
|
+
description?: string;
|
|
283
|
+
default?: any;
|
|
284
|
+
set?: Function;
|
|
285
|
+
get?: Function;
|
|
286
|
+
env?: string[] | string;
|
|
276
287
|
};
|
|
277
288
|
depends: {
|
|
278
|
-
type: string;
|
|
279
289
|
collection: boolean;
|
|
280
290
|
writeable: boolean;
|
|
291
|
+
type: string;
|
|
292
|
+
isKey: boolean;
|
|
293
|
+
writable: boolean;
|
|
294
|
+
mandatory: boolean;
|
|
295
|
+
private?: boolean;
|
|
296
|
+
depends?: string;
|
|
297
|
+
additionalAttributes: string[];
|
|
298
|
+
description?: string;
|
|
299
|
+
default?: any;
|
|
300
|
+
set?: Function;
|
|
301
|
+
get?: Function;
|
|
302
|
+
env?: string[] | string;
|
|
281
303
|
};
|
|
282
304
|
provides: {
|
|
283
|
-
type: string;
|
|
284
305
|
collection: boolean;
|
|
285
306
|
writeable: boolean;
|
|
307
|
+
type: string;
|
|
308
|
+
isKey: boolean;
|
|
309
|
+
writable: boolean;
|
|
310
|
+
mandatory: boolean;
|
|
311
|
+
private?: boolean;
|
|
312
|
+
depends?: string;
|
|
313
|
+
additionalAttributes: string[];
|
|
314
|
+
description?: string;
|
|
315
|
+
default?: any;
|
|
316
|
+
set?: Function;
|
|
317
|
+
get?: Function;
|
|
318
|
+
env?: string[] | string;
|
|
286
319
|
};
|
|
287
320
|
extends: {
|
|
288
321
|
type: string;
|
|
@@ -290,9 +323,20 @@ export class Host extends ServiceOwner {
|
|
|
290
323
|
writeable: boolean;
|
|
291
324
|
};
|
|
292
325
|
model: {
|
|
293
|
-
type: string;
|
|
294
326
|
collection: boolean;
|
|
295
327
|
writeable: boolean;
|
|
328
|
+
type: string;
|
|
329
|
+
isKey: boolean;
|
|
330
|
+
writable: boolean;
|
|
331
|
+
mandatory: boolean;
|
|
332
|
+
private?: boolean;
|
|
333
|
+
depends?: string;
|
|
334
|
+
additionalAttributes: string[];
|
|
335
|
+
description?: string;
|
|
336
|
+
default?: any;
|
|
337
|
+
set?: Function;
|
|
338
|
+
get?: Function;
|
|
339
|
+
env?: string[] | string;
|
|
296
340
|
};
|
|
297
341
|
isModel: {
|
|
298
342
|
type: string;
|
|
@@ -300,29 +344,84 @@ export class Host extends ServiceOwner {
|
|
|
300
344
|
writeable: boolean;
|
|
301
345
|
};
|
|
302
346
|
hostName: {
|
|
347
|
+
writeable: boolean;
|
|
303
348
|
type: string;
|
|
349
|
+
isKey: boolean;
|
|
350
|
+
writable: boolean;
|
|
351
|
+
mandatory: boolean;
|
|
304
352
|
collection: boolean;
|
|
305
|
-
|
|
353
|
+
private?: boolean;
|
|
354
|
+
depends?: string;
|
|
355
|
+
additionalAttributes: string[];
|
|
356
|
+
description?: string;
|
|
357
|
+
default?: any;
|
|
358
|
+
set?: Function;
|
|
359
|
+
get?: Function;
|
|
360
|
+
env?: string[] | string;
|
|
306
361
|
};
|
|
307
362
|
cidrAddresses: {
|
|
308
|
-
type: string;
|
|
309
363
|
collection: boolean;
|
|
310
364
|
writeable: boolean;
|
|
365
|
+
type: string;
|
|
366
|
+
isKey: boolean;
|
|
367
|
+
writable: boolean;
|
|
368
|
+
mandatory: boolean;
|
|
369
|
+
private?: boolean;
|
|
370
|
+
depends?: string;
|
|
371
|
+
additionalAttributes: string[];
|
|
372
|
+
description?: string;
|
|
373
|
+
default?: any;
|
|
374
|
+
set?: Function;
|
|
375
|
+
get?: Function;
|
|
376
|
+
env?: string[] | string;
|
|
311
377
|
};
|
|
312
378
|
cidrAddress: {
|
|
379
|
+
writeable: boolean;
|
|
313
380
|
type: string;
|
|
381
|
+
isKey: boolean;
|
|
382
|
+
writable: boolean;
|
|
383
|
+
mandatory: boolean;
|
|
314
384
|
collection: boolean;
|
|
315
|
-
|
|
385
|
+
private?: boolean;
|
|
386
|
+
depends?: string;
|
|
387
|
+
additionalAttributes: string[];
|
|
388
|
+
description?: string;
|
|
389
|
+
default?: any;
|
|
390
|
+
set?: Function;
|
|
391
|
+
get?: Function;
|
|
392
|
+
env?: string[] | string;
|
|
316
393
|
};
|
|
317
394
|
addresses: {
|
|
318
|
-
type: string;
|
|
319
395
|
collection: boolean;
|
|
320
396
|
writeable: boolean;
|
|
397
|
+
type: string;
|
|
398
|
+
isKey: boolean;
|
|
399
|
+
writable: boolean;
|
|
400
|
+
mandatory: boolean;
|
|
401
|
+
private?: boolean;
|
|
402
|
+
depends?: string;
|
|
403
|
+
additionalAttributes: string[];
|
|
404
|
+
description?: string;
|
|
405
|
+
default?: any;
|
|
406
|
+
set?: Function;
|
|
407
|
+
get?: Function;
|
|
408
|
+
env?: string[] | string;
|
|
321
409
|
};
|
|
322
410
|
address: {
|
|
411
|
+
writeable: boolean;
|
|
323
412
|
type: string;
|
|
413
|
+
isKey: boolean;
|
|
414
|
+
writable: boolean;
|
|
415
|
+
mandatory: boolean;
|
|
324
416
|
collection: boolean;
|
|
325
|
-
|
|
417
|
+
private?: boolean;
|
|
418
|
+
depends?: string;
|
|
419
|
+
additionalAttributes: string[];
|
|
420
|
+
description?: string;
|
|
421
|
+
default?: any;
|
|
422
|
+
set?: Function;
|
|
423
|
+
get?: Function;
|
|
424
|
+
env?: string[] | string;
|
|
326
425
|
};
|
|
327
426
|
};
|
|
328
427
|
};
|
package/types/location.d.mts
CHANGED
|
@@ -189,24 +189,68 @@ export class Location extends Owner {
|
|
|
189
189
|
env?: string[] | string;
|
|
190
190
|
};
|
|
191
191
|
domains: {
|
|
192
|
-
type: string;
|
|
193
192
|
collection: boolean;
|
|
194
193
|
writeable: boolean;
|
|
194
|
+
type: string;
|
|
195
|
+
isKey: boolean;
|
|
196
|
+
writable: boolean;
|
|
197
|
+
mandatory: boolean;
|
|
198
|
+
private?: boolean;
|
|
199
|
+
depends?: string;
|
|
200
|
+
additionalAttributes: string[];
|
|
201
|
+
description?: string;
|
|
202
|
+
default?: any;
|
|
203
|
+
set?: Function;
|
|
204
|
+
get?: Function;
|
|
205
|
+
env?: string[] | string;
|
|
195
206
|
};
|
|
196
207
|
timezone: {
|
|
208
|
+
writeable: boolean;
|
|
197
209
|
type: string;
|
|
210
|
+
isKey: boolean;
|
|
211
|
+
writable: boolean;
|
|
212
|
+
mandatory: boolean;
|
|
198
213
|
collection: boolean;
|
|
199
|
-
|
|
214
|
+
private?: boolean;
|
|
215
|
+
depends?: string;
|
|
216
|
+
additionalAttributes: string[];
|
|
217
|
+
description?: string;
|
|
218
|
+
default?: any;
|
|
219
|
+
set?: Function;
|
|
220
|
+
get?: Function;
|
|
221
|
+
env?: string[] | string;
|
|
200
222
|
};
|
|
201
223
|
architectures: {
|
|
202
|
-
type: string;
|
|
203
224
|
collection: boolean;
|
|
204
225
|
writeable: boolean;
|
|
226
|
+
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
230
|
+
private?: boolean;
|
|
231
|
+
depends?: string;
|
|
232
|
+
additionalAttributes: string[];
|
|
233
|
+
description?: string;
|
|
234
|
+
default?: any;
|
|
235
|
+
set?: Function;
|
|
236
|
+
get?: Function;
|
|
237
|
+
env?: string[] | string;
|
|
205
238
|
};
|
|
206
239
|
locales: {
|
|
207
|
-
type: string;
|
|
208
240
|
collection: boolean;
|
|
209
241
|
writeable: boolean;
|
|
242
|
+
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
246
|
+
private?: boolean;
|
|
247
|
+
depends?: string;
|
|
248
|
+
additionalAttributes: string[];
|
|
249
|
+
description?: string;
|
|
250
|
+
default?: any;
|
|
251
|
+
set?: Function;
|
|
252
|
+
get?: Function;
|
|
253
|
+
env?: string[] | string;
|
|
210
254
|
};
|
|
211
255
|
administratorEmail: {
|
|
212
256
|
writeable: boolean;
|
|
@@ -415,24 +459,68 @@ export class Location extends Owner {
|
|
|
415
459
|
env?: string[] | string;
|
|
416
460
|
};
|
|
417
461
|
domains: {
|
|
418
|
-
type: string;
|
|
419
462
|
collection: boolean;
|
|
420
463
|
writeable: boolean;
|
|
464
|
+
type: string;
|
|
465
|
+
isKey: boolean;
|
|
466
|
+
writable: boolean;
|
|
467
|
+
mandatory: boolean;
|
|
468
|
+
private?: boolean;
|
|
469
|
+
depends?: string;
|
|
470
|
+
additionalAttributes: string[];
|
|
471
|
+
description?: string;
|
|
472
|
+
default?: any;
|
|
473
|
+
set?: Function;
|
|
474
|
+
get?: Function;
|
|
475
|
+
env?: string[] | string;
|
|
421
476
|
};
|
|
422
477
|
timezone: {
|
|
478
|
+
writeable: boolean;
|
|
423
479
|
type: string;
|
|
480
|
+
isKey: boolean;
|
|
481
|
+
writable: boolean;
|
|
482
|
+
mandatory: boolean;
|
|
424
483
|
collection: boolean;
|
|
425
|
-
|
|
484
|
+
private?: boolean;
|
|
485
|
+
depends?: string;
|
|
486
|
+
additionalAttributes: string[];
|
|
487
|
+
description?: string;
|
|
488
|
+
default?: any;
|
|
489
|
+
set?: Function;
|
|
490
|
+
get?: Function;
|
|
491
|
+
env?: string[] | string;
|
|
426
492
|
};
|
|
427
493
|
architectures: {
|
|
428
|
-
type: string;
|
|
429
494
|
collection: boolean;
|
|
430
495
|
writeable: boolean;
|
|
496
|
+
type: string;
|
|
497
|
+
isKey: boolean;
|
|
498
|
+
writable: boolean;
|
|
499
|
+
mandatory: boolean;
|
|
500
|
+
private?: boolean;
|
|
501
|
+
depends?: string;
|
|
502
|
+
additionalAttributes: string[];
|
|
503
|
+
description?: string;
|
|
504
|
+
default?: any;
|
|
505
|
+
set?: Function;
|
|
506
|
+
get?: Function;
|
|
507
|
+
env?: string[] | string;
|
|
431
508
|
};
|
|
432
509
|
locales: {
|
|
433
|
-
type: string;
|
|
434
510
|
collection: boolean;
|
|
435
511
|
writeable: boolean;
|
|
512
|
+
type: string;
|
|
513
|
+
isKey: boolean;
|
|
514
|
+
writable: boolean;
|
|
515
|
+
mandatory: boolean;
|
|
516
|
+
private?: boolean;
|
|
517
|
+
depends?: string;
|
|
518
|
+
additionalAttributes: string[];
|
|
519
|
+
description?: string;
|
|
520
|
+
default?: any;
|
|
521
|
+
set?: Function;
|
|
522
|
+
get?: Function;
|
|
523
|
+
env?: string[] | string;
|
|
436
524
|
};
|
|
437
525
|
administratorEmail: {
|
|
438
526
|
writeable: boolean;
|
|
@@ -454,9 +542,20 @@ export class Location extends Owner {
|
|
|
454
542
|
};
|
|
455
543
|
properties: {
|
|
456
544
|
locales: {
|
|
457
|
-
type: string;
|
|
458
545
|
collection: boolean;
|
|
459
546
|
writeable: boolean;
|
|
547
|
+
type: string;
|
|
548
|
+
isKey: boolean;
|
|
549
|
+
writable: boolean;
|
|
550
|
+
mandatory: boolean;
|
|
551
|
+
private?: boolean;
|
|
552
|
+
depends?: string;
|
|
553
|
+
additionalAttributes: string[];
|
|
554
|
+
description?: string;
|
|
555
|
+
default?: any;
|
|
556
|
+
set?: Function;
|
|
557
|
+
get?: Function;
|
|
558
|
+
env?: string[] | string;
|
|
460
559
|
};
|
|
461
560
|
};
|
|
462
561
|
};
|