pmcf 3.8.9 → 3.8.11
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 +4 -6
- package/src/cluster.mjs +3 -3
- package/src/host.mjs +17 -20
- package/src/network-interfaces/network-interface.mjs +5 -6
- package/src/network-support.mjs +15 -18
- package/src/owner.mjs +8 -7
- package/src/service.mjs +4 -5
- package/src/services/bind.mjs +6 -6
- package/src/services/systemd-journal-upload.mjs +2 -2
- package/types/base.d.mts +2 -28
- package/types/cluster.d.mts +102 -154
- package/types/extra-source-service.d.mts +25 -51
- package/types/host.d.mts +68 -94
- package/types/location.d.mts +64 -116
- package/types/network-interfaces/ethernet.d.mts +60 -112
- package/types/network-interfaces/loopback.d.mts +60 -112
- package/types/network-interfaces/network-interface.d.mts +60 -112
- package/types/network-interfaces/tun.d.mts +60 -112
- package/types/network-interfaces/wireguard.d.mts +60 -112
- package/types/network-interfaces/wlan.d.mts +90 -168
- package/types/network-support.d.mts +25 -25
- package/types/network.d.mts +37 -63
- package/types/owner.d.mts +32 -58
- package/types/root.d.mts +64 -116
- package/types/service.d.mts +52 -104
- package/types/services/bind.d.mts +55 -107
- package/types/services/chrony.d.mts +50 -102
- package/types/services/headscale.d.mts +50 -102
- package/types/services/influxdb.d.mts +50 -102
- package/types/services/kea.d.mts +50 -102
- package/types/services/mosquitto.d.mts +50 -102
- package/types/services/openldap.d.mts +50 -102
- package/types/services/systemd-journal-remote.d.mts +50 -102
- package/types/services/systemd-journal-upload.d.mts +51 -103
- package/types/services/systemd-journal.d.mts +50 -102
- package/types/services/systemd-resolved.d.mts +50 -102
- package/types/services/systemd-timesyncd.d.mts +50 -102
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export namespace networkProperties {
|
|
2
2
|
export let scope: {
|
|
3
|
-
writable: boolean;
|
|
4
3
|
values: string[];
|
|
5
4
|
type: string;
|
|
6
5
|
isKey: boolean;
|
|
6
|
+
writable: boolean;
|
|
7
7
|
mandatory: boolean;
|
|
8
8
|
collection: boolean;
|
|
9
9
|
private?: boolean;
|
|
@@ -15,10 +15,10 @@ export namespace networkProperties {
|
|
|
15
15
|
env?: string[] | string;
|
|
16
16
|
};
|
|
17
17
|
let _class: {
|
|
18
|
-
writable: boolean;
|
|
19
18
|
values: string[];
|
|
20
19
|
type: string;
|
|
21
20
|
isKey: boolean;
|
|
21
|
+
writable: boolean;
|
|
22
22
|
mandatory: boolean;
|
|
23
23
|
collection: boolean;
|
|
24
24
|
private?: boolean;
|
|
@@ -31,10 +31,10 @@ export namespace networkProperties {
|
|
|
31
31
|
};
|
|
32
32
|
export { _class as class };
|
|
33
33
|
export let kind: {
|
|
34
|
-
writable: boolean;
|
|
35
34
|
values: string[];
|
|
36
35
|
type: string;
|
|
37
36
|
isKey: boolean;
|
|
37
|
+
writable: boolean;
|
|
38
38
|
mandatory: boolean;
|
|
39
39
|
collection: boolean;
|
|
40
40
|
private?: boolean;
|
|
@@ -46,9 +46,9 @@ export namespace networkProperties {
|
|
|
46
46
|
env?: string[] | string;
|
|
47
47
|
};
|
|
48
48
|
export let ssid: {
|
|
49
|
-
writable: boolean;
|
|
50
49
|
type: string;
|
|
51
50
|
isKey: boolean;
|
|
51
|
+
writable: boolean;
|
|
52
52
|
mandatory: boolean;
|
|
53
53
|
collection: boolean;
|
|
54
54
|
private?: boolean;
|
|
@@ -60,9 +60,9 @@ export namespace networkProperties {
|
|
|
60
60
|
env?: string[] | string;
|
|
61
61
|
};
|
|
62
62
|
export let psk: {
|
|
63
|
-
writable: boolean;
|
|
64
63
|
type: string;
|
|
65
64
|
isKey: boolean;
|
|
65
|
+
writable: boolean;
|
|
66
66
|
mandatory: boolean;
|
|
67
67
|
collection: boolean;
|
|
68
68
|
private?: boolean;
|
|
@@ -124,23 +124,23 @@ export namespace networkAddressProperties {
|
|
|
124
124
|
env?: string[] | string;
|
|
125
125
|
};
|
|
126
126
|
let cidrAddresses: {
|
|
127
|
-
writable: boolean;
|
|
128
|
-
collection: boolean;
|
|
129
127
|
type: string;
|
|
130
128
|
isKey: boolean;
|
|
129
|
+
writable: boolean;
|
|
131
130
|
mandatory: boolean;
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
131
|
+
collection: boolean;
|
|
132
|
+
private?: boolean;
|
|
133
|
+
depends?: string;
|
|
134
|
+
description?: string;
|
|
135
|
+
default?: any;
|
|
136
|
+
set?: Function;
|
|
137
|
+
get?: Function;
|
|
138
|
+
env?: string[] | string;
|
|
139
139
|
};
|
|
140
140
|
let cidrAddress: {
|
|
141
|
-
writable: boolean;
|
|
142
141
|
type: string;
|
|
143
142
|
isKey: boolean;
|
|
143
|
+
writable: boolean;
|
|
144
144
|
mandatory: boolean;
|
|
145
145
|
collection: boolean;
|
|
146
146
|
private?: boolean;
|
|
@@ -152,23 +152,23 @@ export namespace networkAddressProperties {
|
|
|
152
152
|
env?: string[] | string;
|
|
153
153
|
};
|
|
154
154
|
let addresses: {
|
|
155
|
-
writable: boolean;
|
|
156
|
-
collection: boolean;
|
|
157
155
|
type: string;
|
|
158
156
|
isKey: boolean;
|
|
157
|
+
writable: boolean;
|
|
159
158
|
mandatory: boolean;
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
159
|
+
collection: boolean;
|
|
160
|
+
private?: boolean;
|
|
161
|
+
depends?: string;
|
|
162
|
+
description?: string;
|
|
163
|
+
default?: any;
|
|
164
|
+
set?: Function;
|
|
165
|
+
get?: Function;
|
|
166
|
+
env?: string[] | string;
|
|
167
167
|
};
|
|
168
168
|
let address: {
|
|
169
|
-
writable: boolean;
|
|
170
169
|
type: string;
|
|
171
170
|
isKey: boolean;
|
|
171
|
+
writable: boolean;
|
|
172
172
|
mandatory: boolean;
|
|
173
173
|
collection: boolean;
|
|
174
174
|
private?: boolean;
|
package/types/network.d.mts
CHANGED
|
@@ -17,20 +17,7 @@ export class Network extends Owner {
|
|
|
17
17
|
writable: boolean;
|
|
18
18
|
};
|
|
19
19
|
type: import("pacc").AttributeDefinition;
|
|
20
|
-
name:
|
|
21
|
-
writable: boolean;
|
|
22
|
-
type: string;
|
|
23
|
-
isKey: boolean;
|
|
24
|
-
mandatory: boolean;
|
|
25
|
-
collection: boolean;
|
|
26
|
-
private?: boolean;
|
|
27
|
-
depends?: string;
|
|
28
|
-
description?: string;
|
|
29
|
-
default?: any;
|
|
30
|
-
set?: Function;
|
|
31
|
-
get?: Function;
|
|
32
|
-
env?: string[] | string;
|
|
33
|
-
};
|
|
20
|
+
name: import("pacc").AttributeDefinition;
|
|
34
21
|
description: {
|
|
35
22
|
writable: boolean;
|
|
36
23
|
type: string;
|
|
@@ -60,20 +47,7 @@ export class Network extends Owner {
|
|
|
60
47
|
get?: Function;
|
|
61
48
|
env?: string[] | string;
|
|
62
49
|
};
|
|
63
|
-
packaging:
|
|
64
|
-
writable: boolean;
|
|
65
|
-
type: string;
|
|
66
|
-
isKey: boolean;
|
|
67
|
-
mandatory: boolean;
|
|
68
|
-
collection: boolean;
|
|
69
|
-
private?: boolean;
|
|
70
|
-
depends?: string;
|
|
71
|
-
description?: string;
|
|
72
|
-
default?: any;
|
|
73
|
-
set?: Function;
|
|
74
|
-
get?: Function;
|
|
75
|
-
env?: string[] | string;
|
|
76
|
-
};
|
|
50
|
+
packaging: import("pacc").AttributeDefinition;
|
|
77
51
|
disabled: import("pacc").AttributeDefinition;
|
|
78
52
|
tags: import("pacc").AttributeDefinition;
|
|
79
53
|
};
|
|
@@ -140,9 +114,9 @@ export class Network extends Owner {
|
|
|
140
114
|
writable: boolean;
|
|
141
115
|
};
|
|
142
116
|
country: {
|
|
143
|
-
writable: boolean;
|
|
144
117
|
type: string;
|
|
145
118
|
isKey: boolean;
|
|
119
|
+
writable: boolean;
|
|
146
120
|
mandatory: boolean;
|
|
147
121
|
collection: boolean;
|
|
148
122
|
private?: boolean;
|
|
@@ -154,9 +128,9 @@ export class Network extends Owner {
|
|
|
154
128
|
env?: string[] | string;
|
|
155
129
|
};
|
|
156
130
|
domain: {
|
|
157
|
-
writable: boolean;
|
|
158
131
|
type: string;
|
|
159
132
|
isKey: boolean;
|
|
133
|
+
writable: boolean;
|
|
160
134
|
mandatory: boolean;
|
|
161
135
|
collection: boolean;
|
|
162
136
|
private?: boolean;
|
|
@@ -168,23 +142,23 @@ export class Network extends Owner {
|
|
|
168
142
|
env?: string[] | string;
|
|
169
143
|
};
|
|
170
144
|
domains: {
|
|
171
|
-
writable: boolean;
|
|
172
|
-
collection: boolean;
|
|
173
145
|
type: string;
|
|
174
146
|
isKey: boolean;
|
|
147
|
+
writable: boolean;
|
|
175
148
|
mandatory: boolean;
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
149
|
+
collection: boolean;
|
|
150
|
+
private?: boolean;
|
|
151
|
+
depends?: string;
|
|
152
|
+
description?: string;
|
|
153
|
+
default?: any;
|
|
154
|
+
set?: Function;
|
|
155
|
+
get?: Function;
|
|
156
|
+
env?: string[] | string;
|
|
183
157
|
};
|
|
184
158
|
timezone: {
|
|
185
|
-
writable: boolean;
|
|
186
159
|
type: string;
|
|
187
160
|
isKey: boolean;
|
|
161
|
+
writable: boolean;
|
|
188
162
|
mandatory: boolean;
|
|
189
163
|
collection: boolean;
|
|
190
164
|
private?: boolean;
|
|
@@ -196,32 +170,32 @@ export class Network extends Owner {
|
|
|
196
170
|
env?: string[] | string;
|
|
197
171
|
};
|
|
198
172
|
architectures: {
|
|
199
|
-
writable: boolean;
|
|
200
|
-
collection: boolean;
|
|
201
173
|
type: string;
|
|
202
174
|
isKey: boolean;
|
|
175
|
+
writable: boolean;
|
|
203
176
|
mandatory: boolean;
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
177
|
+
collection: boolean;
|
|
178
|
+
private?: boolean;
|
|
179
|
+
depends?: string;
|
|
180
|
+
description?: string;
|
|
181
|
+
default?: any;
|
|
182
|
+
set?: Function;
|
|
183
|
+
get?: Function;
|
|
184
|
+
env?: string[] | string;
|
|
211
185
|
};
|
|
212
186
|
locales: {
|
|
213
|
-
writable: boolean;
|
|
214
|
-
collection: boolean;
|
|
215
187
|
type: string;
|
|
216
188
|
isKey: boolean;
|
|
189
|
+
writable: boolean;
|
|
217
190
|
mandatory: boolean;
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
191
|
+
collection: boolean;
|
|
192
|
+
private?: boolean;
|
|
193
|
+
depends?: string;
|
|
194
|
+
description?: string;
|
|
195
|
+
default?: any;
|
|
196
|
+
set?: Function;
|
|
197
|
+
get?: Function;
|
|
198
|
+
env?: string[] | string;
|
|
225
199
|
};
|
|
226
200
|
administratorEmail: {
|
|
227
201
|
writable: boolean;
|
|
@@ -269,10 +243,10 @@ export class Network extends Owner {
|
|
|
269
243
|
env?: string[] | string;
|
|
270
244
|
};
|
|
271
245
|
scope: {
|
|
272
|
-
writable: boolean;
|
|
273
246
|
values: string[];
|
|
274
247
|
type: string;
|
|
275
248
|
isKey: boolean;
|
|
249
|
+
writable: boolean;
|
|
276
250
|
mandatory: boolean;
|
|
277
251
|
collection: boolean;
|
|
278
252
|
private?: boolean;
|
|
@@ -284,10 +258,10 @@ export class Network extends Owner {
|
|
|
284
258
|
env?: string[] | string;
|
|
285
259
|
};
|
|
286
260
|
class: {
|
|
287
|
-
writable: boolean;
|
|
288
261
|
values: string[];
|
|
289
262
|
type: string;
|
|
290
263
|
isKey: boolean;
|
|
264
|
+
writable: boolean;
|
|
291
265
|
mandatory: boolean;
|
|
292
266
|
collection: boolean;
|
|
293
267
|
private?: boolean;
|
|
@@ -299,10 +273,10 @@ export class Network extends Owner {
|
|
|
299
273
|
env?: string[] | string;
|
|
300
274
|
};
|
|
301
275
|
kind: {
|
|
302
|
-
writable: boolean;
|
|
303
276
|
values: string[];
|
|
304
277
|
type: string;
|
|
305
278
|
isKey: boolean;
|
|
279
|
+
writable: boolean;
|
|
306
280
|
mandatory: boolean;
|
|
307
281
|
collection: boolean;
|
|
308
282
|
private?: boolean;
|
|
@@ -314,9 +288,9 @@ export class Network extends Owner {
|
|
|
314
288
|
env?: string[] | string;
|
|
315
289
|
};
|
|
316
290
|
ssid: {
|
|
317
|
-
writable: boolean;
|
|
318
291
|
type: string;
|
|
319
292
|
isKey: boolean;
|
|
293
|
+
writable: boolean;
|
|
320
294
|
mandatory: boolean;
|
|
321
295
|
collection: boolean;
|
|
322
296
|
private?: boolean;
|
|
@@ -328,9 +302,9 @@ export class Network extends Owner {
|
|
|
328
302
|
env?: string[] | string;
|
|
329
303
|
};
|
|
330
304
|
psk: {
|
|
331
|
-
writable: boolean;
|
|
332
305
|
type: string;
|
|
333
306
|
isKey: boolean;
|
|
307
|
+
writable: boolean;
|
|
334
308
|
mandatory: boolean;
|
|
335
309
|
collection: boolean;
|
|
336
310
|
private?: boolean;
|
package/types/owner.d.mts
CHANGED
|
@@ -13,20 +13,7 @@ export class Owner extends Base {
|
|
|
13
13
|
writable: boolean;
|
|
14
14
|
};
|
|
15
15
|
type: import("pacc").AttributeDefinition;
|
|
16
|
-
name:
|
|
17
|
-
writable: boolean;
|
|
18
|
-
type: string;
|
|
19
|
-
isKey: boolean;
|
|
20
|
-
mandatory: boolean;
|
|
21
|
-
collection: boolean;
|
|
22
|
-
private?: boolean;
|
|
23
|
-
depends?: string;
|
|
24
|
-
description?: string;
|
|
25
|
-
default?: any;
|
|
26
|
-
set?: Function;
|
|
27
|
-
get?: Function;
|
|
28
|
-
env?: string[] | string;
|
|
29
|
-
};
|
|
16
|
+
name: import("pacc").AttributeDefinition;
|
|
30
17
|
description: {
|
|
31
18
|
writable: boolean;
|
|
32
19
|
type: string;
|
|
@@ -56,20 +43,7 @@ export class Owner extends Base {
|
|
|
56
43
|
get?: Function;
|
|
57
44
|
env?: string[] | string;
|
|
58
45
|
};
|
|
59
|
-
packaging:
|
|
60
|
-
writable: boolean;
|
|
61
|
-
type: string;
|
|
62
|
-
isKey: boolean;
|
|
63
|
-
mandatory: boolean;
|
|
64
|
-
collection: boolean;
|
|
65
|
-
private?: boolean;
|
|
66
|
-
depends?: string;
|
|
67
|
-
description?: string;
|
|
68
|
-
default?: any;
|
|
69
|
-
set?: Function;
|
|
70
|
-
get?: Function;
|
|
71
|
-
env?: string[] | string;
|
|
72
|
-
};
|
|
46
|
+
packaging: import("pacc").AttributeDefinition;
|
|
73
47
|
disabled: import("pacc").AttributeDefinition;
|
|
74
48
|
tags: import("pacc").AttributeDefinition;
|
|
75
49
|
};
|
|
@@ -136,9 +110,9 @@ export class Owner extends Base {
|
|
|
136
110
|
writable: boolean;
|
|
137
111
|
};
|
|
138
112
|
country: {
|
|
139
|
-
writable: boolean;
|
|
140
113
|
type: string;
|
|
141
114
|
isKey: boolean;
|
|
115
|
+
writable: boolean;
|
|
142
116
|
mandatory: boolean;
|
|
143
117
|
collection: boolean;
|
|
144
118
|
private?: boolean;
|
|
@@ -150,9 +124,9 @@ export class Owner extends Base {
|
|
|
150
124
|
env?: string[] | string;
|
|
151
125
|
};
|
|
152
126
|
domain: {
|
|
153
|
-
writable: boolean;
|
|
154
127
|
type: string;
|
|
155
128
|
isKey: boolean;
|
|
129
|
+
writable: boolean;
|
|
156
130
|
mandatory: boolean;
|
|
157
131
|
collection: boolean;
|
|
158
132
|
private?: boolean;
|
|
@@ -164,23 +138,23 @@ export class Owner extends Base {
|
|
|
164
138
|
env?: string[] | string;
|
|
165
139
|
};
|
|
166
140
|
domains: {
|
|
167
|
-
writable: boolean;
|
|
168
|
-
collection: boolean;
|
|
169
141
|
type: string;
|
|
170
142
|
isKey: boolean;
|
|
143
|
+
writable: boolean;
|
|
171
144
|
mandatory: boolean;
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
145
|
+
collection: boolean;
|
|
146
|
+
private?: boolean;
|
|
147
|
+
depends?: string;
|
|
148
|
+
description?: string;
|
|
149
|
+
default?: any;
|
|
150
|
+
set?: Function;
|
|
151
|
+
get?: Function;
|
|
152
|
+
env?: string[] | string;
|
|
179
153
|
};
|
|
180
154
|
timezone: {
|
|
181
|
-
writable: boolean;
|
|
182
155
|
type: string;
|
|
183
156
|
isKey: boolean;
|
|
157
|
+
writable: boolean;
|
|
184
158
|
mandatory: boolean;
|
|
185
159
|
collection: boolean;
|
|
186
160
|
private?: boolean;
|
|
@@ -192,32 +166,32 @@ export class Owner extends Base {
|
|
|
192
166
|
env?: string[] | string;
|
|
193
167
|
};
|
|
194
168
|
architectures: {
|
|
195
|
-
writable: boolean;
|
|
196
|
-
collection: boolean;
|
|
197
169
|
type: string;
|
|
198
170
|
isKey: boolean;
|
|
171
|
+
writable: boolean;
|
|
199
172
|
mandatory: boolean;
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
173
|
+
collection: boolean;
|
|
174
|
+
private?: boolean;
|
|
175
|
+
depends?: string;
|
|
176
|
+
description?: string;
|
|
177
|
+
default?: any;
|
|
178
|
+
set?: Function;
|
|
179
|
+
get?: Function;
|
|
180
|
+
env?: string[] | string;
|
|
207
181
|
};
|
|
208
182
|
locales: {
|
|
209
|
-
writable: boolean;
|
|
210
|
-
collection: boolean;
|
|
211
183
|
type: string;
|
|
212
184
|
isKey: boolean;
|
|
185
|
+
writable: boolean;
|
|
213
186
|
mandatory: boolean;
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
187
|
+
collection: boolean;
|
|
188
|
+
private?: boolean;
|
|
189
|
+
depends?: string;
|
|
190
|
+
description?: string;
|
|
191
|
+
default?: any;
|
|
192
|
+
set?: Function;
|
|
193
|
+
get?: Function;
|
|
194
|
+
env?: string[] | string;
|
|
221
195
|
};
|
|
222
196
|
administratorEmail: {
|
|
223
197
|
writable: boolean;
|