pmcf 3.10.25 → 3.11.0
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/bin/pmcf-info +2 -1
- package/package.json +5 -5
- package/src/base.mjs +32 -29
- package/src/cluster.mjs +3 -2
- package/src/host.mjs +3 -5
- package/src/location.mjs +1 -0
- package/src/network-interfaces/ethernet.mjs +1 -0
- package/src/network-interfaces/loopback.mjs +4 -6
- package/src/network-interfaces/network-interface.mjs +11 -2
- package/src/network-interfaces/tun.mjs +1 -1
- package/src/network-interfaces/wireguard.mjs +1 -1
- package/src/network-interfaces/wlan.mjs +1 -0
- package/src/network-support.mjs +8 -3
- package/src/network.mjs +2 -1
- package/src/owner.mjs +3 -1
- package/src/root.mjs +1 -3
- package/src/service-owner.mjs +11 -3
- package/src/service.mjs +4 -2
- package/src/services/bind.mjs +6 -3
- package/src/services/chrony.mjs +4 -6
- package/src/services/headscale.mjs +1 -1
- package/src/services/influxdb.mjs +1 -0
- package/src/services/kea.mjs +14 -12
- package/src/services/mosquitto.mjs +1 -0
- package/src/services/openldap.mjs +1 -0
- package/src/services/systemd-journal-remote.mjs +1 -1
- package/src/services/systemd-journal-upload.mjs +1 -0
- package/src/services/systemd-journal.mjs +2 -2
- package/src/services/systemd-resolved.mjs +8 -6
- package/src/services/systemd-timesyncd.mjs +7 -7
- package/src/subnet.mjs +3 -1
- package/src/types.mjs +16 -38
- package/types/base.d.mts +5 -3
- package/types/cluster.d.mts +56 -10
- package/types/extra-source-service.d.mts +510 -9
- package/types/host.d.mts +20 -7
- package/types/location.d.mts +71 -6
- package/types/network-interfaces/ethernet.d.mts +630 -26
- package/types/network-interfaces/loopback.d.mts +629 -27
- package/types/network-interfaces/network-interface.d.mts +628 -26
- package/types/network-interfaces/tun.d.mts +629 -27
- package/types/network-interfaces/wireguard.d.mts +629 -27
- package/types/network-interfaces/wlan.d.mts +947 -40
- package/types/network-support.d.mts +54 -11
- package/types/network.d.mts +324 -8
- package/types/owner.d.mts +35 -3
- package/types/root.d.mts +71 -8
- package/types/service-owner.d.mts +1 -0
- package/types/service.d.mts +363 -13
- package/types/services/bind.d.mts +706 -23
- package/types/services/chrony.d.mts +689 -15
- package/types/services/headscale.d.mts +689 -15
- package/types/services/influxdb.d.mts +527 -14
- package/types/services/kea.d.mts +539 -18
- package/types/services/mosquitto.d.mts +530 -15
- package/types/services/openldap.d.mts +524 -13
- package/types/services/systemd-journal-remote.d.mts +524 -14
- package/types/services/systemd-journal-upload.d.mts +524 -13
- package/types/services/systemd-journal.d.mts +524 -14
- package/types/services/systemd-resolved.d.mts +689 -15
- package/types/services/systemd-timesyncd.d.mts +763 -90
- package/types/subnet.d.mts +14 -0
- package/src/filter.mjs +0 -91
- package/types/filter.d.mts +0 -1
package/types/owner.d.mts
CHANGED
|
@@ -5,7 +5,7 @@ export class Owner extends Base {
|
|
|
5
5
|
priority: number;
|
|
6
6
|
extends: {
|
|
7
7
|
name: string;
|
|
8
|
-
|
|
8
|
+
key: string;
|
|
9
9
|
attributes: {
|
|
10
10
|
owner: {
|
|
11
11
|
type: string;
|
|
@@ -16,7 +16,7 @@ export class Owner extends Base {
|
|
|
16
16
|
name: import("pacc").AttributeDefinition;
|
|
17
17
|
description: {
|
|
18
18
|
writable: boolean;
|
|
19
|
-
type:
|
|
19
|
+
type: object;
|
|
20
20
|
isKey: boolean;
|
|
21
21
|
mandatory: boolean;
|
|
22
22
|
collection: boolean;
|
|
@@ -26,9 +26,11 @@ export class Owner extends Base {
|
|
|
26
26
|
default?: any;
|
|
27
27
|
set?: Function;
|
|
28
28
|
get?: Function;
|
|
29
|
+
prepareValue?: Function;
|
|
29
30
|
values?: Set<any>;
|
|
30
31
|
externalName?: string;
|
|
31
32
|
env?: string[] | string;
|
|
33
|
+
additionalValues?: object;
|
|
32
34
|
};
|
|
33
35
|
priority: import("pacc").AttributeDefinition;
|
|
34
36
|
directory: import("pacc").AttributeDefinition;
|
|
@@ -37,11 +39,25 @@ export class Owner extends Base {
|
|
|
37
39
|
tags: import("pacc").AttributeDefinition;
|
|
38
40
|
};
|
|
39
41
|
};
|
|
42
|
+
key: string;
|
|
40
43
|
attributes: {
|
|
41
44
|
networks: {
|
|
42
45
|
type: string;
|
|
43
46
|
collection: boolean;
|
|
47
|
+
isKey: boolean;
|
|
44
48
|
writable: boolean;
|
|
49
|
+
mandatory: boolean;
|
|
50
|
+
private?: boolean;
|
|
51
|
+
depends?: string;
|
|
52
|
+
description?: string;
|
|
53
|
+
default?: any;
|
|
54
|
+
set?: Function;
|
|
55
|
+
get?: Function;
|
|
56
|
+
prepareValue?: Function;
|
|
57
|
+
values?: Set<any>;
|
|
58
|
+
externalName?: string;
|
|
59
|
+
env?: string[] | string;
|
|
60
|
+
additionalValues?: object;
|
|
45
61
|
};
|
|
46
62
|
hosts: {
|
|
47
63
|
type: string;
|
|
@@ -59,12 +75,26 @@ export class Owner extends Base {
|
|
|
59
75
|
owners: string[];
|
|
60
76
|
priority: number;
|
|
61
77
|
constructWithIdentifierOnly: boolean;
|
|
78
|
+
key: string;
|
|
62
79
|
attributes: {
|
|
63
80
|
address: import("pacc").AttributeDefinition;
|
|
64
81
|
networks: {
|
|
65
82
|
type: string;
|
|
66
83
|
collection: boolean;
|
|
84
|
+
isKey: boolean;
|
|
67
85
|
writable: boolean;
|
|
86
|
+
mandatory: boolean;
|
|
87
|
+
private?: boolean;
|
|
88
|
+
depends?: string;
|
|
89
|
+
description?: string;
|
|
90
|
+
default?: any;
|
|
91
|
+
set?: Function;
|
|
92
|
+
get?: Function;
|
|
93
|
+
prepareValue?: Function;
|
|
94
|
+
values?: Set<any>;
|
|
95
|
+
externalName?: string;
|
|
96
|
+
env?: string[] | string;
|
|
97
|
+
additionalValues?: object;
|
|
68
98
|
};
|
|
69
99
|
prefixLength: import("pacc").AttributeDefinition;
|
|
70
100
|
family: import("pacc").AttributeDefinition;
|
|
@@ -81,7 +111,7 @@ export class Owner extends Base {
|
|
|
81
111
|
locales: import("pacc").AttributeDefinition;
|
|
82
112
|
administratorEmail: {
|
|
83
113
|
writable: boolean;
|
|
84
|
-
type:
|
|
114
|
+
type: object;
|
|
85
115
|
isKey: boolean;
|
|
86
116
|
mandatory: boolean;
|
|
87
117
|
collection: boolean;
|
|
@@ -91,9 +121,11 @@ export class Owner extends Base {
|
|
|
91
121
|
default?: any;
|
|
92
122
|
set?: Function;
|
|
93
123
|
get?: Function;
|
|
124
|
+
prepareValue?: Function;
|
|
94
125
|
values?: Set<any>;
|
|
95
126
|
externalName?: string;
|
|
96
127
|
env?: string[] | string;
|
|
128
|
+
additionalValues?: object;
|
|
97
129
|
};
|
|
98
130
|
};
|
|
99
131
|
};
|
package/types/root.d.mts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export class Root extends Location {
|
|
2
2
|
static get typeDefinition(): {
|
|
3
3
|
name: string;
|
|
4
|
-
owners: any[];
|
|
5
4
|
priority: number;
|
|
6
5
|
extends: {
|
|
7
6
|
name: string;
|
|
@@ -11,7 +10,7 @@ export class Root extends Location {
|
|
|
11
10
|
priority: number;
|
|
12
11
|
extends: {
|
|
13
12
|
name: string;
|
|
14
|
-
|
|
13
|
+
key: string;
|
|
15
14
|
attributes: {
|
|
16
15
|
owner: {
|
|
17
16
|
type: string;
|
|
@@ -22,7 +21,7 @@ export class Root extends Location {
|
|
|
22
21
|
name: import("pacc").AttributeDefinition;
|
|
23
22
|
description: {
|
|
24
23
|
writable: boolean;
|
|
25
|
-
type:
|
|
24
|
+
type: object;
|
|
26
25
|
isKey: boolean;
|
|
27
26
|
mandatory: boolean;
|
|
28
27
|
collection: boolean;
|
|
@@ -32,9 +31,11 @@ export class Root extends Location {
|
|
|
32
31
|
default?: any;
|
|
33
32
|
set?: Function;
|
|
34
33
|
get?: Function;
|
|
34
|
+
prepareValue?: Function;
|
|
35
35
|
values?: Set<any>;
|
|
36
36
|
externalName?: string;
|
|
37
37
|
env?: string[] | string;
|
|
38
|
+
additionalValues?: object;
|
|
38
39
|
};
|
|
39
40
|
priority: import("pacc").AttributeDefinition;
|
|
40
41
|
directory: import("pacc").AttributeDefinition;
|
|
@@ -43,11 +44,25 @@ export class Root extends Location {
|
|
|
43
44
|
tags: import("pacc").AttributeDefinition;
|
|
44
45
|
};
|
|
45
46
|
};
|
|
47
|
+
key: string;
|
|
46
48
|
attributes: {
|
|
47
49
|
networks: {
|
|
48
50
|
type: string;
|
|
49
51
|
collection: boolean;
|
|
52
|
+
isKey: boolean;
|
|
50
53
|
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
55
|
+
private?: boolean;
|
|
56
|
+
depends?: string;
|
|
57
|
+
description?: string;
|
|
58
|
+
default?: any;
|
|
59
|
+
set?: Function;
|
|
60
|
+
get?: Function;
|
|
61
|
+
prepareValue?: Function;
|
|
62
|
+
values?: Set<any>;
|
|
63
|
+
externalName?: string;
|
|
64
|
+
env?: string[] | string;
|
|
65
|
+
additionalValues?: object;
|
|
51
66
|
};
|
|
52
67
|
hosts: {
|
|
53
68
|
type: string;
|
|
@@ -65,12 +80,26 @@ export class Root extends Location {
|
|
|
65
80
|
owners: string[];
|
|
66
81
|
priority: number;
|
|
67
82
|
constructWithIdentifierOnly: boolean;
|
|
83
|
+
key: string;
|
|
68
84
|
attributes: {
|
|
69
85
|
address: import("pacc").AttributeDefinition;
|
|
70
86
|
networks: {
|
|
71
87
|
type: string;
|
|
72
88
|
collection: boolean;
|
|
89
|
+
isKey: boolean;
|
|
73
90
|
writable: boolean;
|
|
91
|
+
mandatory: boolean;
|
|
92
|
+
private?: boolean;
|
|
93
|
+
depends?: string;
|
|
94
|
+
description?: string;
|
|
95
|
+
default?: any;
|
|
96
|
+
set?: Function;
|
|
97
|
+
get?: Function;
|
|
98
|
+
prepareValue?: Function;
|
|
99
|
+
values?: Set<any>;
|
|
100
|
+
externalName?: string;
|
|
101
|
+
env?: string[] | string;
|
|
102
|
+
additionalValues?: object;
|
|
74
103
|
};
|
|
75
104
|
prefixLength: import("pacc").AttributeDefinition;
|
|
76
105
|
family: import("pacc").AttributeDefinition;
|
|
@@ -87,7 +116,7 @@ export class Root extends Location {
|
|
|
87
116
|
locales: import("pacc").AttributeDefinition;
|
|
88
117
|
administratorEmail: {
|
|
89
118
|
writable: boolean;
|
|
90
|
-
type:
|
|
119
|
+
type: object;
|
|
91
120
|
isKey: boolean;
|
|
92
121
|
mandatory: boolean;
|
|
93
122
|
collection: boolean;
|
|
@@ -97,9 +126,11 @@ export class Root extends Location {
|
|
|
97
126
|
default?: any;
|
|
98
127
|
set?: Function;
|
|
99
128
|
get?: Function;
|
|
129
|
+
prepareValue?: Function;
|
|
100
130
|
values?: Set<any>;
|
|
101
131
|
externalName?: string;
|
|
102
132
|
env?: string[] | string;
|
|
133
|
+
additionalValues?: object;
|
|
103
134
|
};
|
|
104
135
|
};
|
|
105
136
|
})[];
|
|
@@ -110,7 +141,7 @@ export class Root extends Location {
|
|
|
110
141
|
priority: number;
|
|
111
142
|
extends: {
|
|
112
143
|
name: string;
|
|
113
|
-
|
|
144
|
+
key: string;
|
|
114
145
|
attributes: {
|
|
115
146
|
owner: {
|
|
116
147
|
type: string;
|
|
@@ -121,7 +152,7 @@ export class Root extends Location {
|
|
|
121
152
|
name: import("pacc").AttributeDefinition;
|
|
122
153
|
description: {
|
|
123
154
|
writable: boolean;
|
|
124
|
-
type:
|
|
155
|
+
type: object;
|
|
125
156
|
isKey: boolean;
|
|
126
157
|
mandatory: boolean;
|
|
127
158
|
collection: boolean;
|
|
@@ -131,9 +162,11 @@ export class Root extends Location {
|
|
|
131
162
|
default?: any;
|
|
132
163
|
set?: Function;
|
|
133
164
|
get?: Function;
|
|
165
|
+
prepareValue?: Function;
|
|
134
166
|
values?: Set<any>;
|
|
135
167
|
externalName?: string;
|
|
136
168
|
env?: string[] | string;
|
|
169
|
+
additionalValues?: object;
|
|
137
170
|
};
|
|
138
171
|
priority: import("pacc").AttributeDefinition;
|
|
139
172
|
directory: import("pacc").AttributeDefinition;
|
|
@@ -142,11 +175,25 @@ export class Root extends Location {
|
|
|
142
175
|
tags: import("pacc").AttributeDefinition;
|
|
143
176
|
};
|
|
144
177
|
};
|
|
178
|
+
key: string;
|
|
145
179
|
attributes: {
|
|
146
180
|
networks: {
|
|
147
181
|
type: string;
|
|
148
182
|
collection: boolean;
|
|
183
|
+
isKey: boolean;
|
|
149
184
|
writable: boolean;
|
|
185
|
+
mandatory: boolean;
|
|
186
|
+
private?: boolean;
|
|
187
|
+
depends?: string;
|
|
188
|
+
description?: string;
|
|
189
|
+
default?: any;
|
|
190
|
+
set?: Function;
|
|
191
|
+
get?: Function;
|
|
192
|
+
prepareValue?: Function;
|
|
193
|
+
values?: Set<any>;
|
|
194
|
+
externalName?: string;
|
|
195
|
+
env?: string[] | string;
|
|
196
|
+
additionalValues?: object;
|
|
150
197
|
};
|
|
151
198
|
hosts: {
|
|
152
199
|
type: string;
|
|
@@ -164,12 +211,26 @@ export class Root extends Location {
|
|
|
164
211
|
owners: string[];
|
|
165
212
|
priority: number;
|
|
166
213
|
constructWithIdentifierOnly: boolean;
|
|
214
|
+
key: string;
|
|
167
215
|
attributes: {
|
|
168
216
|
address: import("pacc").AttributeDefinition;
|
|
169
217
|
networks: {
|
|
170
218
|
type: string;
|
|
171
219
|
collection: boolean;
|
|
220
|
+
isKey: boolean;
|
|
172
221
|
writable: boolean;
|
|
222
|
+
mandatory: boolean;
|
|
223
|
+
private?: boolean;
|
|
224
|
+
depends?: string;
|
|
225
|
+
description?: string;
|
|
226
|
+
default?: any;
|
|
227
|
+
set?: Function;
|
|
228
|
+
get?: Function;
|
|
229
|
+
prepareValue?: Function;
|
|
230
|
+
values?: Set<any>;
|
|
231
|
+
externalName?: string;
|
|
232
|
+
env?: string[] | string;
|
|
233
|
+
additionalValues?: object;
|
|
173
234
|
};
|
|
174
235
|
prefixLength: import("pacc").AttributeDefinition;
|
|
175
236
|
family: import("pacc").AttributeDefinition;
|
|
@@ -186,7 +247,7 @@ export class Root extends Location {
|
|
|
186
247
|
locales: import("pacc").AttributeDefinition;
|
|
187
248
|
administratorEmail: {
|
|
188
249
|
writable: boolean;
|
|
189
|
-
type:
|
|
250
|
+
type: object;
|
|
190
251
|
isKey: boolean;
|
|
191
252
|
mandatory: boolean;
|
|
192
253
|
collection: boolean;
|
|
@@ -196,17 +257,19 @@ export class Root extends Location {
|
|
|
196
257
|
default?: any;
|
|
197
258
|
set?: Function;
|
|
198
259
|
get?: Function;
|
|
260
|
+
prepareValue?: Function;
|
|
199
261
|
values?: Set<any>;
|
|
200
262
|
externalName?: string;
|
|
201
263
|
env?: string[] | string;
|
|
264
|
+
additionalValues?: object;
|
|
202
265
|
};
|
|
203
266
|
};
|
|
204
267
|
};
|
|
268
|
+
key: string;
|
|
205
269
|
attributes: {
|
|
206
270
|
locales: import("pacc").AttributeDefinition;
|
|
207
271
|
};
|
|
208
272
|
};
|
|
209
|
-
attributes: {};
|
|
210
273
|
};
|
|
211
274
|
constructor(directory: any);
|
|
212
275
|
get fullName(): string;
|