pmcf 3.14.0 → 3.14.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 +6 -6
- package/src/base.mjs +10 -12
- package/src/services/bind.mjs +3 -4
- package/types/base.d.mts +30 -31
- package/types/cluster.d.mts +2 -64
- package/types/extra-source-service.d.mts +6 -192
- package/types/host.d.mts +2 -32
- package/types/location.d.mts +2 -64
- package/types/network-interfaces/ethernet.d.mts +4 -128
- package/types/network-interfaces/loopback.d.mts +4 -128
- package/types/network-interfaces/network-interface.d.mts +5 -128
- package/types/network-interfaces/tun.d.mts +4 -128
- package/types/network-interfaces/wireguard.d.mts +4 -128
- package/types/network-interfaces/wlan.d.mts +6 -192
- package/types/network.d.mts +2 -64
- package/types/owner.d.mts +1 -32
- package/types/root.d.mts +2 -64
- package/types/service.d.mts +4 -128
- package/types/services/bind.d.mts +8 -256
- package/types/services/chrony.d.mts +8 -256
- package/types/services/headscale.d.mts +5 -160
- package/types/services/influxdb.d.mts +5 -160
- package/types/services/kea.d.mts +5 -160
- package/types/services/mosquitto.d.mts +5 -160
- package/types/services/openldap.d.mts +5 -160
- package/types/services/systemd-journal-remote.d.mts +5 -160
- package/types/services/systemd-journal-upload.d.mts +5 -160
- package/types/services/systemd-journal.d.mts +5 -160
- package/types/services/systemd-resolved.d.mts +8 -256
- package/types/services/systemd-timesyncd.d.mts +8 -256
- package/types/services/tailscale.d.mts +5 -162
package/types/service.d.mts
CHANGED
|
@@ -53,38 +53,7 @@ export namespace ServiceTypeDefinition {
|
|
|
53
53
|
let owners_1: (string | {
|
|
54
54
|
name: string;
|
|
55
55
|
owners: string[];
|
|
56
|
-
extends:
|
|
57
|
-
name: string;
|
|
58
|
-
key: string;
|
|
59
|
-
attributes: {
|
|
60
|
-
owner: {
|
|
61
|
-
type: string;
|
|
62
|
-
isKey: boolean;
|
|
63
|
-
writable: boolean;
|
|
64
|
-
mandatory: boolean;
|
|
65
|
-
collection: boolean;
|
|
66
|
-
private?: boolean;
|
|
67
|
-
depends?: string;
|
|
68
|
-
description?: string;
|
|
69
|
-
default?: any;
|
|
70
|
-
set?: Function;
|
|
71
|
-
get?: Function;
|
|
72
|
-
prepareValue?: Function;
|
|
73
|
-
values?: Set<any>;
|
|
74
|
-
externalName?: string;
|
|
75
|
-
env?: string[] | string;
|
|
76
|
-
additionalValues?: object;
|
|
77
|
-
};
|
|
78
|
-
type: import("pacc").AttributeDefinition;
|
|
79
|
-
name: import("pacc").AttributeDefinition;
|
|
80
|
-
description: import("pacc").AttributeDefinition;
|
|
81
|
-
priority: import("pacc").AttributeDefinition;
|
|
82
|
-
directory: import("pacc").AttributeDefinition;
|
|
83
|
-
packaging: import("pacc").AttributeDefinition;
|
|
84
|
-
disabled: import("pacc").AttributeDefinition;
|
|
85
|
-
tags: import("pacc").AttributeDefinition;
|
|
86
|
-
};
|
|
87
|
-
};
|
|
56
|
+
extends: typeof Base;
|
|
88
57
|
key: string;
|
|
89
58
|
attributes: {
|
|
90
59
|
networkInterfaces: {
|
|
@@ -250,38 +219,7 @@ export namespace ServiceTypeDefinition {
|
|
|
250
219
|
};
|
|
251
220
|
})[];
|
|
252
221
|
export { owners_1 as owners };
|
|
253
|
-
let _extends:
|
|
254
|
-
name: string;
|
|
255
|
-
key: string;
|
|
256
|
-
attributes: {
|
|
257
|
-
owner: {
|
|
258
|
-
type: string;
|
|
259
|
-
isKey: boolean;
|
|
260
|
-
writable: boolean;
|
|
261
|
-
mandatory: boolean;
|
|
262
|
-
collection: boolean;
|
|
263
|
-
private?: boolean;
|
|
264
|
-
depends?: string;
|
|
265
|
-
description?: string;
|
|
266
|
-
default?: any;
|
|
267
|
-
set?: Function;
|
|
268
|
-
get?: Function;
|
|
269
|
-
prepareValue?: Function;
|
|
270
|
-
values?: Set<any>;
|
|
271
|
-
externalName?: string;
|
|
272
|
-
env?: string[] | string;
|
|
273
|
-
additionalValues?: object;
|
|
274
|
-
};
|
|
275
|
-
type: import("pacc").AttributeDefinition;
|
|
276
|
-
name: import("pacc").AttributeDefinition;
|
|
277
|
-
description: import("pacc").AttributeDefinition;
|
|
278
|
-
priority: import("pacc").AttributeDefinition;
|
|
279
|
-
directory: import("pacc").AttributeDefinition;
|
|
280
|
-
packaging: import("pacc").AttributeDefinition;
|
|
281
|
-
disabled: import("pacc").AttributeDefinition;
|
|
282
|
-
tags: import("pacc").AttributeDefinition;
|
|
283
|
-
};
|
|
284
|
-
};
|
|
222
|
+
let _extends: typeof Base;
|
|
285
223
|
export { _extends as extends };
|
|
286
224
|
let specializations_1: {};
|
|
287
225
|
export { specializations_1 as specializations };
|
|
@@ -361,38 +299,7 @@ export class Service extends Base {
|
|
|
361
299
|
owners: (string | {
|
|
362
300
|
name: string;
|
|
363
301
|
owners: string[];
|
|
364
|
-
extends:
|
|
365
|
-
name: string;
|
|
366
|
-
key: string;
|
|
367
|
-
attributes: {
|
|
368
|
-
owner: {
|
|
369
|
-
type: string;
|
|
370
|
-
isKey: boolean;
|
|
371
|
-
writable: boolean;
|
|
372
|
-
mandatory: boolean;
|
|
373
|
-
collection: boolean;
|
|
374
|
-
private?: boolean;
|
|
375
|
-
depends?: string;
|
|
376
|
-
description?: string;
|
|
377
|
-
default?: any;
|
|
378
|
-
set?: Function;
|
|
379
|
-
get?: Function;
|
|
380
|
-
prepareValue?: Function;
|
|
381
|
-
values?: Set<any>;
|
|
382
|
-
externalName?: string;
|
|
383
|
-
env?: string[] | string;
|
|
384
|
-
additionalValues?: object;
|
|
385
|
-
};
|
|
386
|
-
type: import("pacc").AttributeDefinition;
|
|
387
|
-
name: import("pacc").AttributeDefinition;
|
|
388
|
-
description: import("pacc").AttributeDefinition;
|
|
389
|
-
priority: import("pacc").AttributeDefinition;
|
|
390
|
-
directory: import("pacc").AttributeDefinition;
|
|
391
|
-
packaging: import("pacc").AttributeDefinition;
|
|
392
|
-
disabled: import("pacc").AttributeDefinition;
|
|
393
|
-
tags: import("pacc").AttributeDefinition;
|
|
394
|
-
};
|
|
395
|
-
};
|
|
302
|
+
extends: typeof Base;
|
|
396
303
|
key: string;
|
|
397
304
|
attributes: {
|
|
398
305
|
networkInterfaces: {
|
|
@@ -557,38 +464,7 @@ export class Service extends Base {
|
|
|
557
464
|
address: import("pacc").AttributeDefinition;
|
|
558
465
|
};
|
|
559
466
|
})[];
|
|
560
|
-
extends:
|
|
561
|
-
name: string;
|
|
562
|
-
key: string;
|
|
563
|
-
attributes: {
|
|
564
|
-
owner: {
|
|
565
|
-
type: string;
|
|
566
|
-
isKey: boolean;
|
|
567
|
-
writable: boolean;
|
|
568
|
-
mandatory: boolean;
|
|
569
|
-
collection: boolean;
|
|
570
|
-
private?: boolean;
|
|
571
|
-
depends?: string;
|
|
572
|
-
description?: string;
|
|
573
|
-
default?: any;
|
|
574
|
-
set?: Function;
|
|
575
|
-
get?: Function;
|
|
576
|
-
prepareValue?: Function;
|
|
577
|
-
values?: Set<any>;
|
|
578
|
-
externalName?: string;
|
|
579
|
-
env?: string[] | string;
|
|
580
|
-
additionalValues?: object;
|
|
581
|
-
};
|
|
582
|
-
type: import("pacc").AttributeDefinition;
|
|
583
|
-
name: import("pacc").AttributeDefinition;
|
|
584
|
-
description: import("pacc").AttributeDefinition;
|
|
585
|
-
priority: import("pacc").AttributeDefinition;
|
|
586
|
-
directory: import("pacc").AttributeDefinition;
|
|
587
|
-
packaging: import("pacc").AttributeDefinition;
|
|
588
|
-
disabled: import("pacc").AttributeDefinition;
|
|
589
|
-
tags: import("pacc").AttributeDefinition;
|
|
590
|
-
};
|
|
591
|
-
};
|
|
467
|
+
extends: typeof Base;
|
|
592
468
|
specializations: {};
|
|
593
469
|
factoryFor(owner: any, value: any): any;
|
|
594
470
|
key: string;
|
|
@@ -8,38 +8,7 @@ export class BindService extends ExtraSourceService {
|
|
|
8
8
|
owners: (string | {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: string[];
|
|
11
|
-
extends:
|
|
12
|
-
name: string;
|
|
13
|
-
key: string;
|
|
14
|
-
attributes: {
|
|
15
|
-
owner: {
|
|
16
|
-
type: string;
|
|
17
|
-
isKey: boolean;
|
|
18
|
-
writable: boolean;
|
|
19
|
-
mandatory: boolean;
|
|
20
|
-
collection: boolean;
|
|
21
|
-
private?: boolean;
|
|
22
|
-
depends?: string;
|
|
23
|
-
description?: string;
|
|
24
|
-
default?: any;
|
|
25
|
-
set?: Function;
|
|
26
|
-
get?: Function;
|
|
27
|
-
prepareValue?: Function;
|
|
28
|
-
values?: Set<any>;
|
|
29
|
-
externalName?: string;
|
|
30
|
-
env?: string[] | string;
|
|
31
|
-
additionalValues?: object;
|
|
32
|
-
};
|
|
33
|
-
type: import("pacc").AttributeDefinition;
|
|
34
|
-
name: import("pacc").AttributeDefinition;
|
|
35
|
-
description: import("pacc").AttributeDefinition;
|
|
36
|
-
priority: import("pacc").AttributeDefinition;
|
|
37
|
-
directory: import("pacc").AttributeDefinition;
|
|
38
|
-
packaging: import("pacc").AttributeDefinition;
|
|
39
|
-
disabled: import("pacc").AttributeDefinition;
|
|
40
|
-
tags: import("pacc").AttributeDefinition;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
11
|
+
extends: typeof import("pmcf").Base;
|
|
43
12
|
key: string;
|
|
44
13
|
attributes: {
|
|
45
14
|
networkInterfaces: {
|
|
@@ -204,38 +173,7 @@ export class BindService extends ExtraSourceService {
|
|
|
204
173
|
address: import("pacc").AttributeDefinition;
|
|
205
174
|
};
|
|
206
175
|
})[];
|
|
207
|
-
extends:
|
|
208
|
-
name: string;
|
|
209
|
-
key: string;
|
|
210
|
-
attributes: {
|
|
211
|
-
owner: {
|
|
212
|
-
type: string;
|
|
213
|
-
isKey: boolean;
|
|
214
|
-
writable: boolean;
|
|
215
|
-
mandatory: boolean;
|
|
216
|
-
collection: boolean;
|
|
217
|
-
private?: boolean;
|
|
218
|
-
depends?: string;
|
|
219
|
-
description?: string;
|
|
220
|
-
default?: any;
|
|
221
|
-
set?: Function;
|
|
222
|
-
get?: Function;
|
|
223
|
-
prepareValue?: Function;
|
|
224
|
-
values?: Set<any>;
|
|
225
|
-
externalName?: string;
|
|
226
|
-
env?: string[] | string;
|
|
227
|
-
additionalValues?: object;
|
|
228
|
-
};
|
|
229
|
-
type: import("pacc").AttributeDefinition;
|
|
230
|
-
name: import("pacc").AttributeDefinition;
|
|
231
|
-
description: import("pacc").AttributeDefinition;
|
|
232
|
-
priority: import("pacc").AttributeDefinition;
|
|
233
|
-
directory: import("pacc").AttributeDefinition;
|
|
234
|
-
packaging: import("pacc").AttributeDefinition;
|
|
235
|
-
disabled: import("pacc").AttributeDefinition;
|
|
236
|
-
tags: import("pacc").AttributeDefinition;
|
|
237
|
-
};
|
|
238
|
-
};
|
|
176
|
+
extends: typeof import("pmcf").Base;
|
|
239
177
|
specializations: {};
|
|
240
178
|
factoryFor(owner: any, value: any): any;
|
|
241
179
|
key: string;
|
|
@@ -311,38 +249,7 @@ export class BindService extends ExtraSourceService {
|
|
|
311
249
|
owners: (string | {
|
|
312
250
|
name: string;
|
|
313
251
|
owners: string[];
|
|
314
|
-
extends:
|
|
315
|
-
name: string;
|
|
316
|
-
key: string;
|
|
317
|
-
attributes: {
|
|
318
|
-
owner: {
|
|
319
|
-
type: string;
|
|
320
|
-
isKey: boolean;
|
|
321
|
-
writable: boolean;
|
|
322
|
-
mandatory: boolean;
|
|
323
|
-
collection: boolean;
|
|
324
|
-
private?: boolean;
|
|
325
|
-
depends?: string;
|
|
326
|
-
description?: string;
|
|
327
|
-
default?: any;
|
|
328
|
-
set?: Function;
|
|
329
|
-
get?: Function;
|
|
330
|
-
prepareValue?: Function;
|
|
331
|
-
values?: Set<any>;
|
|
332
|
-
externalName?: string;
|
|
333
|
-
env?: string[] | string;
|
|
334
|
-
additionalValues?: object;
|
|
335
|
-
};
|
|
336
|
-
type: import("pacc").AttributeDefinition;
|
|
337
|
-
name: import("pacc").AttributeDefinition;
|
|
338
|
-
description: import("pacc").AttributeDefinition;
|
|
339
|
-
priority: import("pacc").AttributeDefinition;
|
|
340
|
-
directory: import("pacc").AttributeDefinition;
|
|
341
|
-
packaging: import("pacc").AttributeDefinition;
|
|
342
|
-
disabled: import("pacc").AttributeDefinition;
|
|
343
|
-
tags: import("pacc").AttributeDefinition;
|
|
344
|
-
};
|
|
345
|
-
};
|
|
252
|
+
extends: typeof import("pmcf").Base;
|
|
346
253
|
key: string;
|
|
347
254
|
attributes: {
|
|
348
255
|
networkInterfaces: {
|
|
@@ -507,38 +414,7 @@ export class BindService extends ExtraSourceService {
|
|
|
507
414
|
address: import("pacc").AttributeDefinition;
|
|
508
415
|
};
|
|
509
416
|
})[];
|
|
510
|
-
extends:
|
|
511
|
-
name: string;
|
|
512
|
-
key: string;
|
|
513
|
-
attributes: {
|
|
514
|
-
owner: {
|
|
515
|
-
type: string;
|
|
516
|
-
isKey: boolean;
|
|
517
|
-
writable: boolean;
|
|
518
|
-
mandatory: boolean;
|
|
519
|
-
collection: boolean;
|
|
520
|
-
private?: boolean;
|
|
521
|
-
depends?: string;
|
|
522
|
-
description?: string;
|
|
523
|
-
default?: any;
|
|
524
|
-
set?: Function;
|
|
525
|
-
get?: Function;
|
|
526
|
-
prepareValue?: Function;
|
|
527
|
-
values?: Set<any>;
|
|
528
|
-
externalName?: string;
|
|
529
|
-
env?: string[] | string;
|
|
530
|
-
additionalValues?: object;
|
|
531
|
-
};
|
|
532
|
-
type: import("pacc").AttributeDefinition;
|
|
533
|
-
name: import("pacc").AttributeDefinition;
|
|
534
|
-
description: import("pacc").AttributeDefinition;
|
|
535
|
-
priority: import("pacc").AttributeDefinition;
|
|
536
|
-
directory: import("pacc").AttributeDefinition;
|
|
537
|
-
packaging: import("pacc").AttributeDefinition;
|
|
538
|
-
disabled: import("pacc").AttributeDefinition;
|
|
539
|
-
tags: import("pacc").AttributeDefinition;
|
|
540
|
-
};
|
|
541
|
-
};
|
|
417
|
+
extends: typeof import("pmcf").Base;
|
|
542
418
|
specializations: {};
|
|
543
419
|
factoryFor(owner: any, value: any): any;
|
|
544
420
|
key: string;
|
|
@@ -612,38 +488,7 @@ export class BindService extends ExtraSourceService {
|
|
|
612
488
|
owners: (string | {
|
|
613
489
|
name: string;
|
|
614
490
|
owners: string[];
|
|
615
|
-
extends:
|
|
616
|
-
name: string;
|
|
617
|
-
key: string;
|
|
618
|
-
attributes: {
|
|
619
|
-
owner: {
|
|
620
|
-
type: string;
|
|
621
|
-
isKey: boolean;
|
|
622
|
-
writable: boolean;
|
|
623
|
-
mandatory: boolean;
|
|
624
|
-
collection: boolean;
|
|
625
|
-
private?: boolean;
|
|
626
|
-
depends?: string;
|
|
627
|
-
description?: string;
|
|
628
|
-
default?: any;
|
|
629
|
-
set?: Function;
|
|
630
|
-
get?: Function;
|
|
631
|
-
prepareValue?: Function;
|
|
632
|
-
values?: Set<any>;
|
|
633
|
-
externalName?: string;
|
|
634
|
-
env?: string[] | string;
|
|
635
|
-
additionalValues?: object;
|
|
636
|
-
};
|
|
637
|
-
type: import("pacc").AttributeDefinition;
|
|
638
|
-
name: import("pacc").AttributeDefinition;
|
|
639
|
-
description: import("pacc").AttributeDefinition;
|
|
640
|
-
priority: import("pacc").AttributeDefinition;
|
|
641
|
-
directory: import("pacc").AttributeDefinition;
|
|
642
|
-
packaging: import("pacc").AttributeDefinition;
|
|
643
|
-
disabled: import("pacc").AttributeDefinition;
|
|
644
|
-
tags: import("pacc").AttributeDefinition;
|
|
645
|
-
};
|
|
646
|
-
};
|
|
491
|
+
extends: typeof import("pmcf").Base;
|
|
647
492
|
key: string;
|
|
648
493
|
attributes: {
|
|
649
494
|
networkInterfaces: {
|
|
@@ -834,38 +679,7 @@ export class BindService extends ExtraSourceService {
|
|
|
834
679
|
owners: (string | {
|
|
835
680
|
name: string;
|
|
836
681
|
owners: string[];
|
|
837
|
-
extends:
|
|
838
|
-
name: string;
|
|
839
|
-
key: string;
|
|
840
|
-
attributes: {
|
|
841
|
-
owner: {
|
|
842
|
-
type: string;
|
|
843
|
-
isKey: boolean;
|
|
844
|
-
writable: boolean;
|
|
845
|
-
mandatory: boolean;
|
|
846
|
-
collection: boolean;
|
|
847
|
-
private?: boolean;
|
|
848
|
-
depends?: string;
|
|
849
|
-
description?: string;
|
|
850
|
-
default?: any;
|
|
851
|
-
set?: Function;
|
|
852
|
-
get?: Function;
|
|
853
|
-
prepareValue?: Function;
|
|
854
|
-
values?: Set<any>;
|
|
855
|
-
externalName?: string;
|
|
856
|
-
env?: string[] | string;
|
|
857
|
-
additionalValues?: object;
|
|
858
|
-
};
|
|
859
|
-
type: import("pacc").AttributeDefinition;
|
|
860
|
-
name: import("pacc").AttributeDefinition;
|
|
861
|
-
description: import("pacc").AttributeDefinition;
|
|
862
|
-
priority: import("pacc").AttributeDefinition;
|
|
863
|
-
directory: import("pacc").AttributeDefinition;
|
|
864
|
-
packaging: import("pacc").AttributeDefinition;
|
|
865
|
-
disabled: import("pacc").AttributeDefinition;
|
|
866
|
-
tags: import("pacc").AttributeDefinition;
|
|
867
|
-
};
|
|
868
|
-
};
|
|
682
|
+
extends: typeof import("pmcf").Base;
|
|
869
683
|
key: string;
|
|
870
684
|
attributes: {
|
|
871
685
|
networkInterfaces: {
|
|
@@ -1030,38 +844,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1030
844
|
address: import("pacc").AttributeDefinition;
|
|
1031
845
|
};
|
|
1032
846
|
})[];
|
|
1033
|
-
extends:
|
|
1034
|
-
name: string;
|
|
1035
|
-
key: string;
|
|
1036
|
-
attributes: {
|
|
1037
|
-
owner: {
|
|
1038
|
-
type: string;
|
|
1039
|
-
isKey: boolean;
|
|
1040
|
-
writable: boolean;
|
|
1041
|
-
mandatory: boolean;
|
|
1042
|
-
collection: boolean;
|
|
1043
|
-
private?: boolean;
|
|
1044
|
-
depends?: string;
|
|
1045
|
-
description?: string;
|
|
1046
|
-
default?: any;
|
|
1047
|
-
set?: Function;
|
|
1048
|
-
get?: Function;
|
|
1049
|
-
prepareValue?: Function;
|
|
1050
|
-
values?: Set<any>;
|
|
1051
|
-
externalName?: string;
|
|
1052
|
-
env?: string[] | string;
|
|
1053
|
-
additionalValues?: object;
|
|
1054
|
-
};
|
|
1055
|
-
type: import("pacc").AttributeDefinition;
|
|
1056
|
-
name: import("pacc").AttributeDefinition;
|
|
1057
|
-
description: import("pacc").AttributeDefinition;
|
|
1058
|
-
priority: import("pacc").AttributeDefinition;
|
|
1059
|
-
directory: import("pacc").AttributeDefinition;
|
|
1060
|
-
packaging: import("pacc").AttributeDefinition;
|
|
1061
|
-
disabled: import("pacc").AttributeDefinition;
|
|
1062
|
-
tags: import("pacc").AttributeDefinition;
|
|
1063
|
-
};
|
|
1064
|
-
};
|
|
847
|
+
extends: typeof import("pmcf").Base;
|
|
1065
848
|
specializations: {};
|
|
1066
849
|
factoryFor(owner: any, value: any): any;
|
|
1067
850
|
key: string;
|
|
@@ -1135,38 +918,7 @@ export class BindService extends ExtraSourceService {
|
|
|
1135
918
|
owners: (string | {
|
|
1136
919
|
name: string;
|
|
1137
920
|
owners: string[];
|
|
1138
|
-
extends:
|
|
1139
|
-
name: string;
|
|
1140
|
-
key: string;
|
|
1141
|
-
attributes: {
|
|
1142
|
-
owner: {
|
|
1143
|
-
type: string;
|
|
1144
|
-
isKey: boolean;
|
|
1145
|
-
writable: boolean;
|
|
1146
|
-
mandatory: boolean;
|
|
1147
|
-
collection: boolean;
|
|
1148
|
-
private?: boolean;
|
|
1149
|
-
depends?: string;
|
|
1150
|
-
description?: string;
|
|
1151
|
-
default?: any;
|
|
1152
|
-
set?: Function;
|
|
1153
|
-
get?: Function;
|
|
1154
|
-
prepareValue?: Function;
|
|
1155
|
-
values?: Set<any>;
|
|
1156
|
-
externalName?: string;
|
|
1157
|
-
env?: string[] | string;
|
|
1158
|
-
additionalValues?: object;
|
|
1159
|
-
};
|
|
1160
|
-
type: import("pacc").AttributeDefinition;
|
|
1161
|
-
name: import("pacc").AttributeDefinition;
|
|
1162
|
-
description: import("pacc").AttributeDefinition;
|
|
1163
|
-
priority: import("pacc").AttributeDefinition;
|
|
1164
|
-
directory: import("pacc").AttributeDefinition;
|
|
1165
|
-
packaging: import("pacc").AttributeDefinition;
|
|
1166
|
-
disabled: import("pacc").AttributeDefinition;
|
|
1167
|
-
tags: import("pacc").AttributeDefinition;
|
|
1168
|
-
};
|
|
1169
|
-
};
|
|
921
|
+
extends: typeof import("pmcf").Base;
|
|
1170
922
|
key: string;
|
|
1171
923
|
attributes: {
|
|
1172
924
|
networkInterfaces: {
|