pmcf 3.14.0 → 3.14.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 +5 -5
- 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
|
@@ -4,38 +4,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
4
4
|
extends: {
|
|
5
5
|
name: string;
|
|
6
6
|
owners: string[];
|
|
7
|
-
extends:
|
|
8
|
-
name: string;
|
|
9
|
-
key: string;
|
|
10
|
-
attributes: {
|
|
11
|
-
owner: {
|
|
12
|
-
type: string;
|
|
13
|
-
isKey: boolean;
|
|
14
|
-
writable: boolean;
|
|
15
|
-
mandatory: boolean;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
private?: boolean;
|
|
18
|
-
depends?: string;
|
|
19
|
-
description?: string;
|
|
20
|
-
default?: any;
|
|
21
|
-
set?: Function;
|
|
22
|
-
get?: Function;
|
|
23
|
-
prepareValue?: Function;
|
|
24
|
-
values?: Set<any>;
|
|
25
|
-
externalName?: string;
|
|
26
|
-
env?: string[] | string;
|
|
27
|
-
additionalValues?: object;
|
|
28
|
-
};
|
|
29
|
-
type: import("pacc").AttributeDefinition;
|
|
30
|
-
name: import("pacc").AttributeDefinition;
|
|
31
|
-
description: import("pacc").AttributeDefinition;
|
|
32
|
-
priority: import("pacc").AttributeDefinition;
|
|
33
|
-
directory: import("pacc").AttributeDefinition;
|
|
34
|
-
packaging: import("pacc").AttributeDefinition;
|
|
35
|
-
disabled: import("pacc").AttributeDefinition;
|
|
36
|
-
tags: import("pacc").AttributeDefinition;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
7
|
+
extends: typeof import("../base.mjs").Base;
|
|
39
8
|
specializations: {};
|
|
40
9
|
factoryFor(owner: any, value: any): any;
|
|
41
10
|
key: string;
|
|
@@ -85,38 +54,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
85
54
|
extends: {
|
|
86
55
|
name: string;
|
|
87
56
|
owners: string[];
|
|
88
|
-
extends:
|
|
89
|
-
name: string;
|
|
90
|
-
key: string;
|
|
91
|
-
attributes: {
|
|
92
|
-
owner: {
|
|
93
|
-
type: string;
|
|
94
|
-
isKey: boolean;
|
|
95
|
-
writable: boolean;
|
|
96
|
-
mandatory: boolean;
|
|
97
|
-
collection: boolean;
|
|
98
|
-
private?: boolean;
|
|
99
|
-
depends?: string;
|
|
100
|
-
description?: string;
|
|
101
|
-
default?: any;
|
|
102
|
-
set?: Function;
|
|
103
|
-
get?: Function;
|
|
104
|
-
prepareValue?: Function;
|
|
105
|
-
values?: Set<any>;
|
|
106
|
-
externalName?: string;
|
|
107
|
-
env?: string[] | string;
|
|
108
|
-
additionalValues?: object;
|
|
109
|
-
};
|
|
110
|
-
type: import("pacc").AttributeDefinition;
|
|
111
|
-
name: import("pacc").AttributeDefinition;
|
|
112
|
-
description: import("pacc").AttributeDefinition;
|
|
113
|
-
priority: import("pacc").AttributeDefinition;
|
|
114
|
-
directory: import("pacc").AttributeDefinition;
|
|
115
|
-
packaging: import("pacc").AttributeDefinition;
|
|
116
|
-
disabled: import("pacc").AttributeDefinition;
|
|
117
|
-
tags: import("pacc").AttributeDefinition;
|
|
118
|
-
};
|
|
119
|
-
};
|
|
57
|
+
extends: typeof import("../base.mjs").Base;
|
|
120
58
|
key: string;
|
|
121
59
|
attributes: {
|
|
122
60
|
networks: {
|
|
@@ -517,38 +455,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
517
455
|
specializationOf: {
|
|
518
456
|
name: string;
|
|
519
457
|
owners: string[];
|
|
520
|
-
extends:
|
|
521
|
-
name: string;
|
|
522
|
-
key: string;
|
|
523
|
-
attributes: {
|
|
524
|
-
owner: {
|
|
525
|
-
type: string;
|
|
526
|
-
isKey: boolean;
|
|
527
|
-
writable: boolean;
|
|
528
|
-
mandatory: boolean;
|
|
529
|
-
collection: boolean;
|
|
530
|
-
private?: boolean;
|
|
531
|
-
depends?: string;
|
|
532
|
-
description?: string;
|
|
533
|
-
default?: any;
|
|
534
|
-
set?: Function;
|
|
535
|
-
get?: Function;
|
|
536
|
-
prepareValue?: Function;
|
|
537
|
-
values?: Set<any>;
|
|
538
|
-
externalName?: string;
|
|
539
|
-
env?: string[] | string;
|
|
540
|
-
additionalValues?: object;
|
|
541
|
-
};
|
|
542
|
-
type: import("pacc").AttributeDefinition;
|
|
543
|
-
name: import("pacc").AttributeDefinition;
|
|
544
|
-
description: import("pacc").AttributeDefinition;
|
|
545
|
-
priority: import("pacc").AttributeDefinition;
|
|
546
|
-
directory: import("pacc").AttributeDefinition;
|
|
547
|
-
packaging: import("pacc").AttributeDefinition;
|
|
548
|
-
disabled: import("pacc").AttributeDefinition;
|
|
549
|
-
tags: import("pacc").AttributeDefinition;
|
|
550
|
-
};
|
|
551
|
-
};
|
|
458
|
+
extends: typeof import("../base.mjs").Base;
|
|
552
459
|
specializations: {};
|
|
553
460
|
factoryFor(owner: any, value: any): any;
|
|
554
461
|
key: string;
|
|
@@ -598,38 +505,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
598
505
|
extends: {
|
|
599
506
|
name: string;
|
|
600
507
|
owners: string[];
|
|
601
|
-
extends:
|
|
602
|
-
name: string;
|
|
603
|
-
key: string;
|
|
604
|
-
attributes: {
|
|
605
|
-
owner: {
|
|
606
|
-
type: string;
|
|
607
|
-
isKey: boolean;
|
|
608
|
-
writable: boolean;
|
|
609
|
-
mandatory: boolean;
|
|
610
|
-
collection: boolean;
|
|
611
|
-
private?: boolean;
|
|
612
|
-
depends?: string;
|
|
613
|
-
description?: string;
|
|
614
|
-
default?: any;
|
|
615
|
-
set?: Function;
|
|
616
|
-
get?: Function;
|
|
617
|
-
prepareValue?: Function;
|
|
618
|
-
values?: Set<any>;
|
|
619
|
-
externalName?: string;
|
|
620
|
-
env?: string[] | string;
|
|
621
|
-
additionalValues?: object;
|
|
622
|
-
};
|
|
623
|
-
type: import("pacc").AttributeDefinition;
|
|
624
|
-
name: import("pacc").AttributeDefinition;
|
|
625
|
-
description: import("pacc").AttributeDefinition;
|
|
626
|
-
priority: import("pacc").AttributeDefinition;
|
|
627
|
-
directory: import("pacc").AttributeDefinition;
|
|
628
|
-
packaging: import("pacc").AttributeDefinition;
|
|
629
|
-
disabled: import("pacc").AttributeDefinition;
|
|
630
|
-
tags: import("pacc").AttributeDefinition;
|
|
631
|
-
};
|
|
632
|
-
};
|
|
508
|
+
extends: typeof import("../base.mjs").Base;
|
|
633
509
|
key: string;
|
|
634
510
|
attributes: {
|
|
635
511
|
networks: {
|
|
@@ -6,38 +6,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
6
6
|
extends: {
|
|
7
7
|
name: string;
|
|
8
8
|
owners: string[];
|
|
9
|
-
extends:
|
|
10
|
-
name: string;
|
|
11
|
-
key: string;
|
|
12
|
-
attributes: {
|
|
13
|
-
owner: {
|
|
14
|
-
type: string;
|
|
15
|
-
isKey: boolean;
|
|
16
|
-
writable: boolean;
|
|
17
|
-
mandatory: boolean;
|
|
18
|
-
collection: boolean;
|
|
19
|
-
private?: boolean;
|
|
20
|
-
depends?: string;
|
|
21
|
-
description?: string;
|
|
22
|
-
default?: any;
|
|
23
|
-
set?: Function;
|
|
24
|
-
get?: Function;
|
|
25
|
-
prepareValue?: Function;
|
|
26
|
-
values?: Set<any>;
|
|
27
|
-
externalName?: string;
|
|
28
|
-
env?: string[] | string;
|
|
29
|
-
additionalValues?: object;
|
|
30
|
-
};
|
|
31
|
-
type: import("pacc").AttributeDefinition;
|
|
32
|
-
name: import("pacc").AttributeDefinition;
|
|
33
|
-
description: import("pacc").AttributeDefinition;
|
|
34
|
-
priority: import("pacc").AttributeDefinition;
|
|
35
|
-
directory: import("pacc").AttributeDefinition;
|
|
36
|
-
packaging: import("pacc").AttributeDefinition;
|
|
37
|
-
disabled: import("pacc").AttributeDefinition;
|
|
38
|
-
tags: import("pacc").AttributeDefinition;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
9
|
+
extends: typeof import("../base.mjs").Base;
|
|
41
10
|
specializations: {};
|
|
42
11
|
factoryFor(owner: any, value: any): any;
|
|
43
12
|
key: string;
|
|
@@ -87,38 +56,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
87
56
|
extends: {
|
|
88
57
|
name: string;
|
|
89
58
|
owners: string[];
|
|
90
|
-
extends:
|
|
91
|
-
name: string;
|
|
92
|
-
key: string;
|
|
93
|
-
attributes: {
|
|
94
|
-
owner: {
|
|
95
|
-
type: string;
|
|
96
|
-
isKey: boolean;
|
|
97
|
-
writable: boolean;
|
|
98
|
-
mandatory: boolean;
|
|
99
|
-
collection: boolean;
|
|
100
|
-
private?: boolean;
|
|
101
|
-
depends?: string;
|
|
102
|
-
description?: string;
|
|
103
|
-
default?: any;
|
|
104
|
-
set?: Function;
|
|
105
|
-
get?: Function;
|
|
106
|
-
prepareValue?: Function;
|
|
107
|
-
values?: Set<any>;
|
|
108
|
-
externalName?: string;
|
|
109
|
-
env?: string[] | string;
|
|
110
|
-
additionalValues?: object;
|
|
111
|
-
};
|
|
112
|
-
type: import("pacc").AttributeDefinition;
|
|
113
|
-
name: import("pacc").AttributeDefinition;
|
|
114
|
-
description: import("pacc").AttributeDefinition;
|
|
115
|
-
priority: import("pacc").AttributeDefinition;
|
|
116
|
-
directory: import("pacc").AttributeDefinition;
|
|
117
|
-
packaging: import("pacc").AttributeDefinition;
|
|
118
|
-
disabled: import("pacc").AttributeDefinition;
|
|
119
|
-
tags: import("pacc").AttributeDefinition;
|
|
120
|
-
};
|
|
121
|
-
};
|
|
59
|
+
extends: typeof import("../base.mjs").Base;
|
|
122
60
|
key: string;
|
|
123
61
|
attributes: {
|
|
124
62
|
networks: {
|
|
@@ -519,38 +457,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
519
457
|
specializationOf: {
|
|
520
458
|
name: string;
|
|
521
459
|
owners: string[];
|
|
522
|
-
extends:
|
|
523
|
-
name: string;
|
|
524
|
-
key: string;
|
|
525
|
-
attributes: {
|
|
526
|
-
owner: {
|
|
527
|
-
type: string;
|
|
528
|
-
isKey: boolean;
|
|
529
|
-
writable: boolean;
|
|
530
|
-
mandatory: boolean;
|
|
531
|
-
collection: boolean;
|
|
532
|
-
private?: boolean;
|
|
533
|
-
depends?: string;
|
|
534
|
-
description?: string;
|
|
535
|
-
default?: any;
|
|
536
|
-
set?: Function;
|
|
537
|
-
get?: Function;
|
|
538
|
-
prepareValue?: Function;
|
|
539
|
-
values?: Set<any>;
|
|
540
|
-
externalName?: string;
|
|
541
|
-
env?: string[] | string;
|
|
542
|
-
additionalValues?: object;
|
|
543
|
-
};
|
|
544
|
-
type: import("pacc").AttributeDefinition;
|
|
545
|
-
name: import("pacc").AttributeDefinition;
|
|
546
|
-
description: import("pacc").AttributeDefinition;
|
|
547
|
-
priority: import("pacc").AttributeDefinition;
|
|
548
|
-
directory: import("pacc").AttributeDefinition;
|
|
549
|
-
packaging: import("pacc").AttributeDefinition;
|
|
550
|
-
disabled: import("pacc").AttributeDefinition;
|
|
551
|
-
tags: import("pacc").AttributeDefinition;
|
|
552
|
-
};
|
|
553
|
-
};
|
|
460
|
+
extends: typeof import("../base.mjs").Base;
|
|
554
461
|
specializations: {};
|
|
555
462
|
factoryFor(owner: any, value: any): any;
|
|
556
463
|
key: string;
|
|
@@ -600,38 +507,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
600
507
|
extends: {
|
|
601
508
|
name: string;
|
|
602
509
|
owners: string[];
|
|
603
|
-
extends:
|
|
604
|
-
name: string;
|
|
605
|
-
key: string;
|
|
606
|
-
attributes: {
|
|
607
|
-
owner: {
|
|
608
|
-
type: string;
|
|
609
|
-
isKey: boolean;
|
|
610
|
-
writable: boolean;
|
|
611
|
-
mandatory: boolean;
|
|
612
|
-
collection: boolean;
|
|
613
|
-
private?: boolean;
|
|
614
|
-
depends?: string;
|
|
615
|
-
description?: string;
|
|
616
|
-
default?: any;
|
|
617
|
-
set?: Function;
|
|
618
|
-
get?: Function;
|
|
619
|
-
prepareValue?: Function;
|
|
620
|
-
values?: Set<any>;
|
|
621
|
-
externalName?: string;
|
|
622
|
-
env?: string[] | string;
|
|
623
|
-
additionalValues?: object;
|
|
624
|
-
};
|
|
625
|
-
type: import("pacc").AttributeDefinition;
|
|
626
|
-
name: import("pacc").AttributeDefinition;
|
|
627
|
-
description: import("pacc").AttributeDefinition;
|
|
628
|
-
priority: import("pacc").AttributeDefinition;
|
|
629
|
-
directory: import("pacc").AttributeDefinition;
|
|
630
|
-
packaging: import("pacc").AttributeDefinition;
|
|
631
|
-
disabled: import("pacc").AttributeDefinition;
|
|
632
|
-
tags: import("pacc").AttributeDefinition;
|
|
633
|
-
};
|
|
634
|
-
};
|
|
510
|
+
extends: typeof import("../base.mjs").Base;
|
|
635
511
|
key: string;
|
|
636
512
|
attributes: {
|
|
637
513
|
networks: {
|
|
@@ -1055,38 +931,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1055
931
|
specializationOf: {
|
|
1056
932
|
name: string;
|
|
1057
933
|
owners: string[];
|
|
1058
|
-
extends:
|
|
1059
|
-
name: string;
|
|
1060
|
-
key: string;
|
|
1061
|
-
attributes: {
|
|
1062
|
-
owner: {
|
|
1063
|
-
type: string;
|
|
1064
|
-
isKey: boolean;
|
|
1065
|
-
writable: boolean;
|
|
1066
|
-
mandatory: boolean;
|
|
1067
|
-
collection: boolean;
|
|
1068
|
-
private?: boolean;
|
|
1069
|
-
depends?: string;
|
|
1070
|
-
description?: string;
|
|
1071
|
-
default?: any;
|
|
1072
|
-
set?: Function;
|
|
1073
|
-
get?: Function;
|
|
1074
|
-
prepareValue?: Function;
|
|
1075
|
-
values?: Set<any>;
|
|
1076
|
-
externalName?: string;
|
|
1077
|
-
env?: string[] | string;
|
|
1078
|
-
additionalValues?: object;
|
|
1079
|
-
};
|
|
1080
|
-
type: import("pacc").AttributeDefinition;
|
|
1081
|
-
name: import("pacc").AttributeDefinition;
|
|
1082
|
-
description: import("pacc").AttributeDefinition;
|
|
1083
|
-
priority: import("pacc").AttributeDefinition;
|
|
1084
|
-
directory: import("pacc").AttributeDefinition;
|
|
1085
|
-
packaging: import("pacc").AttributeDefinition;
|
|
1086
|
-
disabled: import("pacc").AttributeDefinition;
|
|
1087
|
-
tags: import("pacc").AttributeDefinition;
|
|
1088
|
-
};
|
|
1089
|
-
};
|
|
934
|
+
extends: typeof import("../base.mjs").Base;
|
|
1090
935
|
specializations: {};
|
|
1091
936
|
factoryFor(owner: any, value: any): any;
|
|
1092
937
|
key: string;
|
|
@@ -1136,38 +981,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1136
981
|
extends: {
|
|
1137
982
|
name: string;
|
|
1138
983
|
owners: string[];
|
|
1139
|
-
extends:
|
|
1140
|
-
name: string;
|
|
1141
|
-
key: string;
|
|
1142
|
-
attributes: {
|
|
1143
|
-
owner: {
|
|
1144
|
-
type: string;
|
|
1145
|
-
isKey: boolean;
|
|
1146
|
-
writable: boolean;
|
|
1147
|
-
mandatory: boolean;
|
|
1148
|
-
collection: boolean;
|
|
1149
|
-
private?: boolean;
|
|
1150
|
-
depends?: string;
|
|
1151
|
-
description?: string;
|
|
1152
|
-
default?: any;
|
|
1153
|
-
set?: Function;
|
|
1154
|
-
get?: Function;
|
|
1155
|
-
prepareValue?: Function;
|
|
1156
|
-
values?: Set<any>;
|
|
1157
|
-
externalName?: string;
|
|
1158
|
-
env?: string[] | string;
|
|
1159
|
-
additionalValues?: object;
|
|
1160
|
-
};
|
|
1161
|
-
type: import("pacc").AttributeDefinition;
|
|
1162
|
-
name: import("pacc").AttributeDefinition;
|
|
1163
|
-
description: import("pacc").AttributeDefinition;
|
|
1164
|
-
priority: import("pacc").AttributeDefinition;
|
|
1165
|
-
directory: import("pacc").AttributeDefinition;
|
|
1166
|
-
packaging: import("pacc").AttributeDefinition;
|
|
1167
|
-
disabled: import("pacc").AttributeDefinition;
|
|
1168
|
-
tags: import("pacc").AttributeDefinition;
|
|
1169
|
-
};
|
|
1170
|
-
};
|
|
984
|
+
extends: typeof import("../base.mjs").Base;
|
|
1171
985
|
key: string;
|
|
1172
986
|
attributes: {
|
|
1173
987
|
networks: {
|
package/types/network.d.mts
CHANGED
|
@@ -4,38 +4,7 @@ export namespace NetworkTypeDefinition {
|
|
|
4
4
|
let _extends: {
|
|
5
5
|
name: string;
|
|
6
6
|
owners: string[];
|
|
7
|
-
extends:
|
|
8
|
-
name: string;
|
|
9
|
-
key: string;
|
|
10
|
-
attributes: {
|
|
11
|
-
owner: {
|
|
12
|
-
type: string;
|
|
13
|
-
isKey: boolean;
|
|
14
|
-
writable: boolean;
|
|
15
|
-
mandatory: boolean;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
private?: boolean;
|
|
18
|
-
depends?: string;
|
|
19
|
-
description?: string;
|
|
20
|
-
default?: any;
|
|
21
|
-
set?: Function;
|
|
22
|
-
get?: Function;
|
|
23
|
-
prepareValue?: Function;
|
|
24
|
-
values?: Set<any>;
|
|
25
|
-
externalName?: string;
|
|
26
|
-
env?: string[] | string;
|
|
27
|
-
additionalValues?: object;
|
|
28
|
-
};
|
|
29
|
-
type: import("pacc").AttributeDefinition;
|
|
30
|
-
name: import("pacc").AttributeDefinition;
|
|
31
|
-
description: import("pacc").AttributeDefinition;
|
|
32
|
-
priority: import("pacc").AttributeDefinition;
|
|
33
|
-
directory: import("pacc").AttributeDefinition;
|
|
34
|
-
packaging: import("pacc").AttributeDefinition;
|
|
35
|
-
disabled: import("pacc").AttributeDefinition;
|
|
36
|
-
tags: import("pacc").AttributeDefinition;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
7
|
+
extends: typeof import("./base.mjs").Base;
|
|
39
8
|
key: string;
|
|
40
9
|
attributes: {
|
|
41
10
|
networks: {
|
|
@@ -306,38 +275,7 @@ export class Network extends Owner {
|
|
|
306
275
|
extends: {
|
|
307
276
|
name: string;
|
|
308
277
|
owners: string[];
|
|
309
|
-
extends:
|
|
310
|
-
name: string;
|
|
311
|
-
key: string;
|
|
312
|
-
attributes: {
|
|
313
|
-
owner: {
|
|
314
|
-
type: string;
|
|
315
|
-
isKey: boolean;
|
|
316
|
-
writable: boolean;
|
|
317
|
-
mandatory: boolean;
|
|
318
|
-
collection: boolean;
|
|
319
|
-
private?: boolean;
|
|
320
|
-
depends?: string;
|
|
321
|
-
description?: string;
|
|
322
|
-
default?: any;
|
|
323
|
-
set?: Function;
|
|
324
|
-
get?: Function;
|
|
325
|
-
prepareValue?: Function;
|
|
326
|
-
values?: Set<any>;
|
|
327
|
-
externalName?: string;
|
|
328
|
-
env?: string[] | string;
|
|
329
|
-
additionalValues?: object;
|
|
330
|
-
};
|
|
331
|
-
type: import("pacc").AttributeDefinition;
|
|
332
|
-
name: import("pacc").AttributeDefinition;
|
|
333
|
-
description: import("pacc").AttributeDefinition;
|
|
334
|
-
priority: import("pacc").AttributeDefinition;
|
|
335
|
-
directory: import("pacc").AttributeDefinition;
|
|
336
|
-
packaging: import("pacc").AttributeDefinition;
|
|
337
|
-
disabled: import("pacc").AttributeDefinition;
|
|
338
|
-
tags: import("pacc").AttributeDefinition;
|
|
339
|
-
};
|
|
340
|
-
};
|
|
278
|
+
extends: typeof import("./base.mjs").Base;
|
|
341
279
|
key: string;
|
|
342
280
|
attributes: {
|
|
343
281
|
networks: {
|
package/types/owner.d.mts
CHANGED
|
@@ -2,38 +2,7 @@ export class Owner extends Base {
|
|
|
2
2
|
static get typeDefinition(): {
|
|
3
3
|
name: string;
|
|
4
4
|
owners: string[];
|
|
5
|
-
extends:
|
|
6
|
-
name: string;
|
|
7
|
-
key: string;
|
|
8
|
-
attributes: {
|
|
9
|
-
owner: {
|
|
10
|
-
type: string;
|
|
11
|
-
isKey: boolean;
|
|
12
|
-
writable: boolean;
|
|
13
|
-
mandatory: boolean;
|
|
14
|
-
collection: boolean;
|
|
15
|
-
private?: boolean;
|
|
16
|
-
depends?: string;
|
|
17
|
-
description?: string;
|
|
18
|
-
default?: any;
|
|
19
|
-
set?: Function;
|
|
20
|
-
get?: Function;
|
|
21
|
-
prepareValue?: Function;
|
|
22
|
-
values?: Set<any>;
|
|
23
|
-
externalName?: string;
|
|
24
|
-
env?: string[] | string;
|
|
25
|
-
additionalValues?: object;
|
|
26
|
-
};
|
|
27
|
-
type: import("pacc").AttributeDefinition;
|
|
28
|
-
name: import("pacc").AttributeDefinition;
|
|
29
|
-
description: import("pacc").AttributeDefinition;
|
|
30
|
-
priority: import("pacc").AttributeDefinition;
|
|
31
|
-
directory: import("pacc").AttributeDefinition;
|
|
32
|
-
packaging: import("pacc").AttributeDefinition;
|
|
33
|
-
disabled: import("pacc").AttributeDefinition;
|
|
34
|
-
tags: import("pacc").AttributeDefinition;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
5
|
+
extends: typeof Base;
|
|
37
6
|
key: string;
|
|
38
7
|
attributes: {
|
|
39
8
|
networks: {
|
package/types/root.d.mts
CHANGED
|
@@ -6,38 +6,7 @@ export class Root extends Location {
|
|
|
6
6
|
owners: (string | {
|
|
7
7
|
name: string;
|
|
8
8
|
owners: string[];
|
|
9
|
-
extends:
|
|
10
|
-
name: string;
|
|
11
|
-
key: string;
|
|
12
|
-
attributes: {
|
|
13
|
-
owner: {
|
|
14
|
-
type: string;
|
|
15
|
-
isKey: boolean;
|
|
16
|
-
writable: boolean;
|
|
17
|
-
mandatory: boolean;
|
|
18
|
-
collection: boolean;
|
|
19
|
-
private?: boolean;
|
|
20
|
-
depends?: string;
|
|
21
|
-
description?: string;
|
|
22
|
-
default?: any;
|
|
23
|
-
set?: Function;
|
|
24
|
-
get?: Function;
|
|
25
|
-
prepareValue?: Function;
|
|
26
|
-
values?: Set<any>;
|
|
27
|
-
externalName?: string;
|
|
28
|
-
env?: string[] | string;
|
|
29
|
-
additionalValues?: object;
|
|
30
|
-
};
|
|
31
|
-
type: import("pacc").AttributeDefinition;
|
|
32
|
-
name: import("pacc").AttributeDefinition;
|
|
33
|
-
description: import("pacc").AttributeDefinition;
|
|
34
|
-
priority: import("pacc").AttributeDefinition;
|
|
35
|
-
directory: import("pacc").AttributeDefinition;
|
|
36
|
-
packaging: import("pacc").AttributeDefinition;
|
|
37
|
-
disabled: import("pacc").AttributeDefinition;
|
|
38
|
-
tags: import("pacc").AttributeDefinition;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
9
|
+
extends: typeof import("./base.mjs").Base;
|
|
41
10
|
key: string;
|
|
42
11
|
attributes: {
|
|
43
12
|
networks: {
|
|
@@ -169,38 +138,7 @@ export class Root extends Location {
|
|
|
169
138
|
extends: {
|
|
170
139
|
name: string;
|
|
171
140
|
owners: string[];
|
|
172
|
-
extends:
|
|
173
|
-
name: string;
|
|
174
|
-
key: string;
|
|
175
|
-
attributes: {
|
|
176
|
-
owner: {
|
|
177
|
-
type: string;
|
|
178
|
-
isKey: boolean;
|
|
179
|
-
writable: boolean;
|
|
180
|
-
mandatory: boolean;
|
|
181
|
-
collection: boolean;
|
|
182
|
-
private?: boolean;
|
|
183
|
-
depends?: string;
|
|
184
|
-
description?: string;
|
|
185
|
-
default?: any;
|
|
186
|
-
set?: Function;
|
|
187
|
-
get?: Function;
|
|
188
|
-
prepareValue?: Function;
|
|
189
|
-
values?: Set<any>;
|
|
190
|
-
externalName?: string;
|
|
191
|
-
env?: string[] | string;
|
|
192
|
-
additionalValues?: object;
|
|
193
|
-
};
|
|
194
|
-
type: import("pacc").AttributeDefinition;
|
|
195
|
-
name: import("pacc").AttributeDefinition;
|
|
196
|
-
description: import("pacc").AttributeDefinition;
|
|
197
|
-
priority: import("pacc").AttributeDefinition;
|
|
198
|
-
directory: import("pacc").AttributeDefinition;
|
|
199
|
-
packaging: import("pacc").AttributeDefinition;
|
|
200
|
-
disabled: import("pacc").AttributeDefinition;
|
|
201
|
-
tags: import("pacc").AttributeDefinition;
|
|
202
|
-
};
|
|
203
|
-
};
|
|
141
|
+
extends: typeof import("./base.mjs").Base;
|
|
204
142
|
key: string;
|
|
205
143
|
attributes: {
|
|
206
144
|
networks: {
|