pmcf 3.10.14 → 3.10.16
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/base.mjs +1 -1
- package/src/cluster.mjs +2 -3
- package/src/filter.mjs +8 -11
- package/src/host.mjs +10 -10
- package/src/location.mjs +2 -2
- package/src/network-support.mjs +6 -6
- package/src/owner.mjs +6 -6
- package/src/service.mjs +3 -3
- package/src/services/bind.mjs +5 -7
- package/src/services/openldap.mjs +4 -13
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/subnet.mjs +4 -7
- package/src/types.mjs +0 -1
- package/types/base.d.mts +1 -14
- package/types/cluster.d.mts +27 -378
- package/types/extra-source-service.d.mts +8 -112
- package/types/host.d.mts +15 -210
- package/types/location.d.mts +21 -294
- package/types/network-interfaces/ethernet.d.mts +14 -196
- package/types/network-interfaces/loopback.d.mts +14 -196
- package/types/network-interfaces/network-interface.d.mts +14 -196
- package/types/network-interfaces/tun.d.mts +14 -196
- package/types/network-interfaces/wireguard.d.mts +14 -196
- package/types/network-interfaces/wlan.d.mts +21 -294
- package/types/network-support.d.mts +8 -85
- package/types/network.d.mts +12 -168
- package/types/owner.d.mts +10 -140
- package/types/root.d.mts +21 -294
- package/types/service.d.mts +20 -252
- package/types/services/bind.d.mts +20 -280
- package/types/services/chrony.d.mts +16 -224
- package/types/services/headscale.d.mts +16 -224
- package/types/services/influxdb.d.mts +16 -224
- package/types/services/kea.d.mts +16 -224
- package/types/services/mosquitto.d.mts +16 -224
- package/types/services/openldap.d.mts +19 -266
- package/types/services/systemd-journal-remote.d.mts +16 -224
- package/types/services/systemd-journal-upload.d.mts +17 -238
- package/types/services/systemd-journal.d.mts +16 -224
- package/types/services/systemd-resolved.d.mts +16 -224
- package/types/services/systemd-timesyncd.d.mts +16 -224
- package/types/subnet.d.mts +3 -42
package/types/root.d.mts
CHANGED
|
@@ -35,20 +35,7 @@ export class Root extends Location {
|
|
|
35
35
|
env?: string[] | string;
|
|
36
36
|
};
|
|
37
37
|
priority: import("pacc").AttributeDefinition;
|
|
38
|
-
directory:
|
|
39
|
-
writable: boolean;
|
|
40
|
-
type: string;
|
|
41
|
-
isKey: boolean;
|
|
42
|
-
mandatory: boolean;
|
|
43
|
-
collection: boolean;
|
|
44
|
-
private?: boolean;
|
|
45
|
-
depends?: string;
|
|
46
|
-
description?: string;
|
|
47
|
-
default?: any;
|
|
48
|
-
set?: Function;
|
|
49
|
-
get?: Function;
|
|
50
|
-
env?: string[] | string;
|
|
51
|
-
};
|
|
38
|
+
directory: import("pacc").AttributeDefinition;
|
|
52
39
|
packaging: import("pacc").AttributeDefinition;
|
|
53
40
|
disabled: import("pacc").AttributeDefinition;
|
|
54
41
|
tags: import("pacc").AttributeDefinition;
|
|
@@ -77,142 +64,25 @@ export class Root extends Location {
|
|
|
77
64
|
priority: number;
|
|
78
65
|
constructWithIdentifierOnly: boolean;
|
|
79
66
|
attributes: {
|
|
80
|
-
address:
|
|
81
|
-
isKey: boolean;
|
|
82
|
-
type: string;
|
|
83
|
-
writable: boolean;
|
|
84
|
-
mandatory: boolean;
|
|
85
|
-
collection: boolean;
|
|
86
|
-
private?: boolean;
|
|
87
|
-
depends?: string;
|
|
88
|
-
description?: string;
|
|
89
|
-
default?: any;
|
|
90
|
-
set?: Function;
|
|
91
|
-
get?: Function;
|
|
92
|
-
env?: string[] | string;
|
|
93
|
-
};
|
|
67
|
+
address: import("pacc").AttributeDefinition;
|
|
94
68
|
networks: {
|
|
95
69
|
type: string;
|
|
96
70
|
collection: boolean;
|
|
97
71
|
writable: boolean;
|
|
98
72
|
};
|
|
99
|
-
prefixLength:
|
|
100
|
-
|
|
101
|
-
isKey: boolean;
|
|
102
|
-
writable: boolean;
|
|
103
|
-
mandatory: boolean;
|
|
104
|
-
collection: boolean;
|
|
105
|
-
private?: boolean;
|
|
106
|
-
depends?: string;
|
|
107
|
-
description?: string;
|
|
108
|
-
default?: any;
|
|
109
|
-
set?: Function;
|
|
110
|
-
get?: Function;
|
|
111
|
-
env?: string[] | string;
|
|
112
|
-
};
|
|
113
|
-
family: {
|
|
114
|
-
type: string;
|
|
115
|
-
isKey: boolean;
|
|
116
|
-
writable: boolean;
|
|
117
|
-
mandatory: boolean;
|
|
118
|
-
collection: boolean;
|
|
119
|
-
private?: boolean;
|
|
120
|
-
depends?: string;
|
|
121
|
-
description?: string;
|
|
122
|
-
default?: any;
|
|
123
|
-
set?: Function;
|
|
124
|
-
get?: Function;
|
|
125
|
-
env?: string[] | string;
|
|
126
|
-
};
|
|
73
|
+
prefixLength: import("pacc").AttributeDefinition;
|
|
74
|
+
family: import("pacc").AttributeDefinition;
|
|
127
75
|
};
|
|
128
76
|
};
|
|
129
77
|
collection: boolean;
|
|
130
78
|
writable: boolean;
|
|
131
79
|
};
|
|
132
|
-
country:
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
private?: boolean;
|
|
139
|
-
depends?: string;
|
|
140
|
-
description?: string;
|
|
141
|
-
default?: any;
|
|
142
|
-
set?: Function;
|
|
143
|
-
get?: Function;
|
|
144
|
-
env?: string[] | string;
|
|
145
|
-
};
|
|
146
|
-
domain: {
|
|
147
|
-
type: string;
|
|
148
|
-
isKey: boolean;
|
|
149
|
-
writable: boolean;
|
|
150
|
-
mandatory: boolean;
|
|
151
|
-
collection: boolean;
|
|
152
|
-
private?: boolean;
|
|
153
|
-
depends?: string;
|
|
154
|
-
description?: string;
|
|
155
|
-
default?: any;
|
|
156
|
-
set?: Function;
|
|
157
|
-
get?: Function;
|
|
158
|
-
env?: string[] | string;
|
|
159
|
-
};
|
|
160
|
-
domains: {
|
|
161
|
-
type: string;
|
|
162
|
-
isKey: boolean;
|
|
163
|
-
writable: boolean;
|
|
164
|
-
mandatory: boolean;
|
|
165
|
-
collection: boolean;
|
|
166
|
-
private?: boolean;
|
|
167
|
-
depends?: string;
|
|
168
|
-
description?: string;
|
|
169
|
-
default?: any;
|
|
170
|
-
set?: Function;
|
|
171
|
-
get?: Function;
|
|
172
|
-
env?: string[] | string;
|
|
173
|
-
};
|
|
174
|
-
timezone: {
|
|
175
|
-
type: string;
|
|
176
|
-
isKey: boolean;
|
|
177
|
-
writable: boolean;
|
|
178
|
-
mandatory: boolean;
|
|
179
|
-
collection: boolean;
|
|
180
|
-
private?: boolean;
|
|
181
|
-
depends?: string;
|
|
182
|
-
description?: string;
|
|
183
|
-
default?: any;
|
|
184
|
-
set?: Function;
|
|
185
|
-
get?: Function;
|
|
186
|
-
env?: string[] | string;
|
|
187
|
-
};
|
|
188
|
-
architectures: {
|
|
189
|
-
type: string;
|
|
190
|
-
isKey: boolean;
|
|
191
|
-
writable: boolean;
|
|
192
|
-
mandatory: boolean;
|
|
193
|
-
collection: boolean;
|
|
194
|
-
private?: boolean;
|
|
195
|
-
depends?: string;
|
|
196
|
-
description?: string;
|
|
197
|
-
default?: any;
|
|
198
|
-
set?: Function;
|
|
199
|
-
get?: Function;
|
|
200
|
-
env?: string[] | string;
|
|
201
|
-
};
|
|
202
|
-
locales: {
|
|
203
|
-
type: string;
|
|
204
|
-
isKey: boolean;
|
|
205
|
-
writable: boolean;
|
|
206
|
-
mandatory: boolean;
|
|
207
|
-
collection: boolean;
|
|
208
|
-
private?: boolean;
|
|
209
|
-
depends?: string;
|
|
210
|
-
description?: string;
|
|
211
|
-
default?: any;
|
|
212
|
-
set?: Function;
|
|
213
|
-
get?: Function;
|
|
214
|
-
env?: string[] | string;
|
|
215
|
-
};
|
|
80
|
+
country: import("pacc").AttributeDefinition;
|
|
81
|
+
domain: import("pacc").AttributeDefinition;
|
|
82
|
+
domains: import("pacc").AttributeDefinition;
|
|
83
|
+
timezone: import("pacc").AttributeDefinition;
|
|
84
|
+
architectures: import("pacc").AttributeDefinition;
|
|
85
|
+
locales: import("pacc").AttributeDefinition;
|
|
216
86
|
administratorEmail: {
|
|
217
87
|
writable: boolean;
|
|
218
88
|
type: string;
|
|
@@ -260,20 +130,7 @@ export class Root extends Location {
|
|
|
260
130
|
env?: string[] | string;
|
|
261
131
|
};
|
|
262
132
|
priority: import("pacc").AttributeDefinition;
|
|
263
|
-
directory:
|
|
264
|
-
writable: boolean;
|
|
265
|
-
type: string;
|
|
266
|
-
isKey: boolean;
|
|
267
|
-
mandatory: boolean;
|
|
268
|
-
collection: boolean;
|
|
269
|
-
private?: boolean;
|
|
270
|
-
depends?: string;
|
|
271
|
-
description?: string;
|
|
272
|
-
default?: any;
|
|
273
|
-
set?: Function;
|
|
274
|
-
get?: Function;
|
|
275
|
-
env?: string[] | string;
|
|
276
|
-
};
|
|
133
|
+
directory: import("pacc").AttributeDefinition;
|
|
277
134
|
packaging: import("pacc").AttributeDefinition;
|
|
278
135
|
disabled: import("pacc").AttributeDefinition;
|
|
279
136
|
tags: import("pacc").AttributeDefinition;
|
|
@@ -302,142 +159,25 @@ export class Root extends Location {
|
|
|
302
159
|
priority: number;
|
|
303
160
|
constructWithIdentifierOnly: boolean;
|
|
304
161
|
attributes: {
|
|
305
|
-
address:
|
|
306
|
-
isKey: boolean;
|
|
307
|
-
type: string;
|
|
308
|
-
writable: boolean;
|
|
309
|
-
mandatory: boolean;
|
|
310
|
-
collection: boolean;
|
|
311
|
-
private?: boolean;
|
|
312
|
-
depends?: string;
|
|
313
|
-
description?: string;
|
|
314
|
-
default?: any;
|
|
315
|
-
set?: Function;
|
|
316
|
-
get?: Function;
|
|
317
|
-
env?: string[] | string;
|
|
318
|
-
};
|
|
162
|
+
address: import("pacc").AttributeDefinition;
|
|
319
163
|
networks: {
|
|
320
164
|
type: string;
|
|
321
165
|
collection: boolean;
|
|
322
166
|
writable: boolean;
|
|
323
167
|
};
|
|
324
|
-
prefixLength:
|
|
325
|
-
|
|
326
|
-
isKey: boolean;
|
|
327
|
-
writable: boolean;
|
|
328
|
-
mandatory: boolean;
|
|
329
|
-
collection: boolean;
|
|
330
|
-
private?: boolean;
|
|
331
|
-
depends?: string;
|
|
332
|
-
description?: string;
|
|
333
|
-
default?: any;
|
|
334
|
-
set?: Function;
|
|
335
|
-
get?: Function;
|
|
336
|
-
env?: string[] | string;
|
|
337
|
-
};
|
|
338
|
-
family: {
|
|
339
|
-
type: string;
|
|
340
|
-
isKey: boolean;
|
|
341
|
-
writable: boolean;
|
|
342
|
-
mandatory: boolean;
|
|
343
|
-
collection: boolean;
|
|
344
|
-
private?: boolean;
|
|
345
|
-
depends?: string;
|
|
346
|
-
description?: string;
|
|
347
|
-
default?: any;
|
|
348
|
-
set?: Function;
|
|
349
|
-
get?: Function;
|
|
350
|
-
env?: string[] | string;
|
|
351
|
-
};
|
|
168
|
+
prefixLength: import("pacc").AttributeDefinition;
|
|
169
|
+
family: import("pacc").AttributeDefinition;
|
|
352
170
|
};
|
|
353
171
|
};
|
|
354
172
|
collection: boolean;
|
|
355
173
|
writable: boolean;
|
|
356
174
|
};
|
|
357
|
-
country:
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
private?: boolean;
|
|
364
|
-
depends?: string;
|
|
365
|
-
description?: string;
|
|
366
|
-
default?: any;
|
|
367
|
-
set?: Function;
|
|
368
|
-
get?: Function;
|
|
369
|
-
env?: string[] | string;
|
|
370
|
-
};
|
|
371
|
-
domain: {
|
|
372
|
-
type: string;
|
|
373
|
-
isKey: boolean;
|
|
374
|
-
writable: boolean;
|
|
375
|
-
mandatory: boolean;
|
|
376
|
-
collection: boolean;
|
|
377
|
-
private?: boolean;
|
|
378
|
-
depends?: string;
|
|
379
|
-
description?: string;
|
|
380
|
-
default?: any;
|
|
381
|
-
set?: Function;
|
|
382
|
-
get?: Function;
|
|
383
|
-
env?: string[] | string;
|
|
384
|
-
};
|
|
385
|
-
domains: {
|
|
386
|
-
type: string;
|
|
387
|
-
isKey: boolean;
|
|
388
|
-
writable: boolean;
|
|
389
|
-
mandatory: boolean;
|
|
390
|
-
collection: boolean;
|
|
391
|
-
private?: boolean;
|
|
392
|
-
depends?: string;
|
|
393
|
-
description?: string;
|
|
394
|
-
default?: any;
|
|
395
|
-
set?: Function;
|
|
396
|
-
get?: Function;
|
|
397
|
-
env?: string[] | string;
|
|
398
|
-
};
|
|
399
|
-
timezone: {
|
|
400
|
-
type: string;
|
|
401
|
-
isKey: boolean;
|
|
402
|
-
writable: boolean;
|
|
403
|
-
mandatory: boolean;
|
|
404
|
-
collection: boolean;
|
|
405
|
-
private?: boolean;
|
|
406
|
-
depends?: string;
|
|
407
|
-
description?: string;
|
|
408
|
-
default?: any;
|
|
409
|
-
set?: Function;
|
|
410
|
-
get?: Function;
|
|
411
|
-
env?: string[] | string;
|
|
412
|
-
};
|
|
413
|
-
architectures: {
|
|
414
|
-
type: string;
|
|
415
|
-
isKey: boolean;
|
|
416
|
-
writable: boolean;
|
|
417
|
-
mandatory: boolean;
|
|
418
|
-
collection: boolean;
|
|
419
|
-
private?: boolean;
|
|
420
|
-
depends?: string;
|
|
421
|
-
description?: string;
|
|
422
|
-
default?: any;
|
|
423
|
-
set?: Function;
|
|
424
|
-
get?: Function;
|
|
425
|
-
env?: string[] | string;
|
|
426
|
-
};
|
|
427
|
-
locales: {
|
|
428
|
-
type: string;
|
|
429
|
-
isKey: boolean;
|
|
430
|
-
writable: boolean;
|
|
431
|
-
mandatory: boolean;
|
|
432
|
-
collection: boolean;
|
|
433
|
-
private?: boolean;
|
|
434
|
-
depends?: string;
|
|
435
|
-
description?: string;
|
|
436
|
-
default?: any;
|
|
437
|
-
set?: Function;
|
|
438
|
-
get?: Function;
|
|
439
|
-
env?: string[] | string;
|
|
440
|
-
};
|
|
175
|
+
country: import("pacc").AttributeDefinition;
|
|
176
|
+
domain: import("pacc").AttributeDefinition;
|
|
177
|
+
domains: import("pacc").AttributeDefinition;
|
|
178
|
+
timezone: import("pacc").AttributeDefinition;
|
|
179
|
+
architectures: import("pacc").AttributeDefinition;
|
|
180
|
+
locales: import("pacc").AttributeDefinition;
|
|
441
181
|
administratorEmail: {
|
|
442
182
|
writable: boolean;
|
|
443
183
|
type: string;
|
|
@@ -455,20 +195,7 @@ export class Root extends Location {
|
|
|
455
195
|
};
|
|
456
196
|
};
|
|
457
197
|
attributes: {
|
|
458
|
-
locales:
|
|
459
|
-
writable: boolean;
|
|
460
|
-
collection: boolean;
|
|
461
|
-
type: string;
|
|
462
|
-
isKey: boolean;
|
|
463
|
-
mandatory: boolean;
|
|
464
|
-
private: boolean;
|
|
465
|
-
depends: string;
|
|
466
|
-
description: string;
|
|
467
|
-
default: any;
|
|
468
|
-
set: Function;
|
|
469
|
-
get: Function;
|
|
470
|
-
env: string[] | string;
|
|
471
|
-
};
|
|
198
|
+
locales: import("pacc").AttributeDefinition;
|
|
472
199
|
};
|
|
473
200
|
};
|
|
474
201
|
attributes: {};
|