pmcf 3.8.13 → 3.8.15
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 +2 -2
- package/src/base.mjs +6 -5
- package/src/cluster.mjs +0 -4
- package/src/extra-source-service.mjs +0 -5
- package/src/host.mjs +5 -5
- package/src/location.mjs +0 -5
- package/src/network-interfaces/ethernet.mjs +0 -5
- package/src/network-interfaces/loopback.mjs +0 -5
- package/src/network-interfaces/network-interface.mjs +0 -5
- package/src/network-interfaces/tun.mjs +5 -9
- package/src/network.mjs +0 -5
- package/src/owner.mjs +0 -5
- package/src/service.mjs +0 -5
- package/src/services/bind.mjs +7 -4
- package/src/services/chrony.mjs +0 -4
- package/src/services/influxdb.mjs +0 -5
- package/src/services/kea.mjs +11 -13
- package/src/services/mosquitto.mjs +0 -5
- package/src/services/openldap.mjs +0 -2
- package/src/services/systemd-journal-remote.mjs +0 -5
- package/src/services/systemd-journal-upload.mjs +0 -5
- package/src/services/systemd-journal.mjs +0 -5
- package/src/services/systemd-resolved.mjs +2 -6
- package/src/services/systemd-timesyncd.mjs +2 -6
- package/src/subnet.mjs +6 -2
- package/src/types.mjs +3 -1
- package/types/base.d.mts +1 -1
- package/types/cluster.d.mts +14 -0
- package/types/location.d.mts +28 -0
- package/types/network-interfaces/tun.d.mts +2 -2
- package/types/network.d.mts +14 -0
- package/types/owner.d.mts +14 -0
- package/types/root.d.mts +28 -0
- package/types/services/systemd-resolved.d.mts +165 -153
- package/types/services/systemd-timesyncd.d.mts +165 -153
- package/types/subnet.d.mts +14 -0
|
@@ -203,22 +203,106 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
203
203
|
extends: {
|
|
204
204
|
name: string;
|
|
205
205
|
owners: string[];
|
|
206
|
-
priority: number;
|
|
207
206
|
extends: {
|
|
208
207
|
name: string;
|
|
209
|
-
owners:
|
|
208
|
+
owners: string[];
|
|
209
|
+
priority: number;
|
|
210
|
+
extends: {
|
|
211
|
+
name: string;
|
|
212
|
+
owners: any[];
|
|
213
|
+
properties: {
|
|
214
|
+
owner: {
|
|
215
|
+
type: string;
|
|
216
|
+
collection: boolean;
|
|
217
|
+
writable: boolean;
|
|
218
|
+
};
|
|
219
|
+
type: import("pacc").AttributeDefinition;
|
|
220
|
+
name: import("pacc").AttributeDefinition;
|
|
221
|
+
description: {
|
|
222
|
+
writable: boolean;
|
|
223
|
+
type: string;
|
|
224
|
+
isKey: boolean;
|
|
225
|
+
mandatory: boolean;
|
|
226
|
+
collection: boolean;
|
|
227
|
+
private?: boolean;
|
|
228
|
+
depends?: string;
|
|
229
|
+
description?: string;
|
|
230
|
+
default?: any;
|
|
231
|
+
set?: Function;
|
|
232
|
+
get?: Function;
|
|
233
|
+
env?: string[] | string;
|
|
234
|
+
};
|
|
235
|
+
priority: import("pacc").AttributeDefinition;
|
|
236
|
+
directory: {
|
|
237
|
+
writable: boolean;
|
|
238
|
+
type: string;
|
|
239
|
+
isKey: boolean;
|
|
240
|
+
mandatory: boolean;
|
|
241
|
+
collection: boolean;
|
|
242
|
+
private?: boolean;
|
|
243
|
+
depends?: string;
|
|
244
|
+
description?: string;
|
|
245
|
+
default?: any;
|
|
246
|
+
set?: Function;
|
|
247
|
+
get?: Function;
|
|
248
|
+
env?: string[] | string;
|
|
249
|
+
};
|
|
250
|
+
packaging: import("pacc").AttributeDefinition;
|
|
251
|
+
disabled: import("pacc").AttributeDefinition;
|
|
252
|
+
tags: import("pacc").AttributeDefinition;
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
specializations: {};
|
|
256
|
+
factoryFor(owner: any, value: any): any;
|
|
210
257
|
properties: {
|
|
211
|
-
|
|
258
|
+
alias: {
|
|
212
259
|
type: string;
|
|
260
|
+
isKey: boolean;
|
|
261
|
+
writable: boolean;
|
|
262
|
+
mandatory: boolean;
|
|
213
263
|
collection: boolean;
|
|
264
|
+
private?: boolean;
|
|
265
|
+
depends?: string;
|
|
266
|
+
description?: string;
|
|
267
|
+
default?: any;
|
|
268
|
+
set?: Function;
|
|
269
|
+
get?: Function;
|
|
270
|
+
env?: string[] | string;
|
|
271
|
+
};
|
|
272
|
+
weight: {
|
|
273
|
+
type: string;
|
|
274
|
+
isKey: boolean;
|
|
214
275
|
writable: boolean;
|
|
276
|
+
mandatory: boolean;
|
|
277
|
+
collection: boolean;
|
|
278
|
+
private?: boolean;
|
|
279
|
+
depends?: string;
|
|
280
|
+
description?: string;
|
|
281
|
+
default?: any;
|
|
282
|
+
set?: Function;
|
|
283
|
+
get?: Function;
|
|
284
|
+
env?: string[] | string;
|
|
215
285
|
};
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
286
|
+
systemd: import("pacc").AttributeDefinition;
|
|
287
|
+
port: {
|
|
288
|
+
type: string;
|
|
289
|
+
isKey: boolean;
|
|
219
290
|
writable: boolean;
|
|
291
|
+
mandatory: boolean;
|
|
292
|
+
collection: boolean;
|
|
293
|
+
private?: boolean;
|
|
294
|
+
depends?: string;
|
|
295
|
+
description?: string;
|
|
296
|
+
default?: any;
|
|
297
|
+
set?: Function;
|
|
298
|
+
get?: Function;
|
|
299
|
+
env?: string[] | string;
|
|
300
|
+
};
|
|
301
|
+
protocol: {
|
|
302
|
+
values: string[];
|
|
220
303
|
type: string;
|
|
221
304
|
isKey: boolean;
|
|
305
|
+
writable: boolean;
|
|
222
306
|
mandatory: boolean;
|
|
223
307
|
collection: boolean;
|
|
224
308
|
private?: boolean;
|
|
@@ -229,8 +313,23 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
229
313
|
get?: Function;
|
|
230
314
|
env?: string[] | string;
|
|
231
315
|
};
|
|
232
|
-
|
|
233
|
-
|
|
316
|
+
type: {
|
|
317
|
+
type: string;
|
|
318
|
+
isKey: boolean;
|
|
319
|
+
writable: boolean;
|
|
320
|
+
mandatory: boolean;
|
|
321
|
+
collection: boolean;
|
|
322
|
+
private?: boolean;
|
|
323
|
+
depends?: string;
|
|
324
|
+
description?: string;
|
|
325
|
+
default?: any;
|
|
326
|
+
set?: Function;
|
|
327
|
+
get?: Function;
|
|
328
|
+
env?: string[] | string;
|
|
329
|
+
};
|
|
330
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
331
|
+
tls: import("pacc").AttributeDefinition;
|
|
332
|
+
hostName: {
|
|
234
333
|
writable: boolean;
|
|
235
334
|
type: string;
|
|
236
335
|
isKey: boolean;
|
|
@@ -244,157 +343,70 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
244
343
|
get?: Function;
|
|
245
344
|
env?: string[] | string;
|
|
246
345
|
};
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
346
|
+
cidrAddresses: {
|
|
347
|
+
type: string;
|
|
348
|
+
isKey: boolean;
|
|
349
|
+
writable: boolean;
|
|
350
|
+
mandatory: boolean;
|
|
351
|
+
collection: boolean;
|
|
352
|
+
private?: boolean;
|
|
353
|
+
depends?: string;
|
|
354
|
+
description?: string;
|
|
355
|
+
default?: any;
|
|
356
|
+
set?: Function;
|
|
357
|
+
get?: Function;
|
|
358
|
+
env?: string[] | string;
|
|
359
|
+
};
|
|
360
|
+
cidrAddress: {
|
|
361
|
+
type: string;
|
|
362
|
+
isKey: boolean;
|
|
363
|
+
writable: boolean;
|
|
364
|
+
mandatory: boolean;
|
|
365
|
+
collection: boolean;
|
|
366
|
+
private?: boolean;
|
|
367
|
+
depends?: string;
|
|
368
|
+
description?: string;
|
|
369
|
+
default?: any;
|
|
370
|
+
set?: Function;
|
|
371
|
+
get?: Function;
|
|
372
|
+
env?: string[] | string;
|
|
373
|
+
};
|
|
374
|
+
addresses: {
|
|
375
|
+
type: string;
|
|
376
|
+
isKey: boolean;
|
|
377
|
+
writable: boolean;
|
|
378
|
+
mandatory: boolean;
|
|
379
|
+
collection: boolean;
|
|
380
|
+
private?: boolean;
|
|
381
|
+
depends?: string;
|
|
382
|
+
description?: string;
|
|
383
|
+
default?: any;
|
|
384
|
+
set?: Function;
|
|
385
|
+
get?: Function;
|
|
386
|
+
env?: string[] | string;
|
|
387
|
+
};
|
|
388
|
+
address: {
|
|
389
|
+
type: string;
|
|
390
|
+
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
392
|
+
mandatory: boolean;
|
|
393
|
+
collection: boolean;
|
|
394
|
+
private?: boolean;
|
|
395
|
+
depends?: string;
|
|
396
|
+
description?: string;
|
|
397
|
+
default?: any;
|
|
398
|
+
set?: Function;
|
|
399
|
+
get?: Function;
|
|
400
|
+
env?: string[] | string;
|
|
401
|
+
};
|
|
250
402
|
};
|
|
251
403
|
};
|
|
252
|
-
|
|
253
|
-
factoryFor(owner: any, value: any): any;
|
|
404
|
+
priority: number;
|
|
254
405
|
properties: {
|
|
255
|
-
|
|
256
|
-
type: string;
|
|
257
|
-
isKey: boolean;
|
|
258
|
-
writable: boolean;
|
|
259
|
-
mandatory: boolean;
|
|
260
|
-
collection: boolean;
|
|
261
|
-
private?: boolean;
|
|
262
|
-
depends?: string;
|
|
263
|
-
description?: string;
|
|
264
|
-
default?: any;
|
|
265
|
-
set?: Function;
|
|
266
|
-
get?: Function;
|
|
267
|
-
env?: string[] | string;
|
|
268
|
-
};
|
|
269
|
-
weight: {
|
|
270
|
-
type: string;
|
|
271
|
-
isKey: boolean;
|
|
272
|
-
writable: boolean;
|
|
273
|
-
mandatory: boolean;
|
|
274
|
-
collection: boolean;
|
|
275
|
-
private?: boolean;
|
|
276
|
-
depends?: string;
|
|
277
|
-
description?: string;
|
|
278
|
-
default?: any;
|
|
279
|
-
set?: Function;
|
|
280
|
-
get?: Function;
|
|
281
|
-
env?: string[] | string;
|
|
282
|
-
};
|
|
283
|
-
systemd: import("pacc").AttributeDefinition;
|
|
284
|
-
port: {
|
|
285
|
-
type: string;
|
|
286
|
-
isKey: boolean;
|
|
287
|
-
writable: boolean;
|
|
288
|
-
mandatory: boolean;
|
|
289
|
-
collection: boolean;
|
|
290
|
-
private?: boolean;
|
|
291
|
-
depends?: string;
|
|
292
|
-
description?: string;
|
|
293
|
-
default?: any;
|
|
294
|
-
set?: Function;
|
|
295
|
-
get?: Function;
|
|
296
|
-
env?: string[] | string;
|
|
297
|
-
};
|
|
298
|
-
protocol: {
|
|
299
|
-
values: string[];
|
|
300
|
-
type: string;
|
|
301
|
-
isKey: boolean;
|
|
302
|
-
writable: boolean;
|
|
303
|
-
mandatory: boolean;
|
|
304
|
-
collection: boolean;
|
|
305
|
-
private?: boolean;
|
|
306
|
-
depends?: string;
|
|
307
|
-
description?: string;
|
|
308
|
-
default?: any;
|
|
309
|
-
set?: Function;
|
|
310
|
-
get?: Function;
|
|
311
|
-
env?: string[] | string;
|
|
312
|
-
};
|
|
313
|
-
type: {
|
|
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
|
-
env?: string[] | string;
|
|
326
|
-
};
|
|
327
|
-
types: typeof import("pacc").string_collection_attribute;
|
|
328
|
-
tls: import("pacc").AttributeDefinition;
|
|
329
|
-
hostName: {
|
|
330
|
-
writable: boolean;
|
|
406
|
+
source: {
|
|
331
407
|
type: string;
|
|
332
|
-
isKey: boolean;
|
|
333
|
-
mandatory: boolean;
|
|
334
|
-
collection: boolean;
|
|
335
|
-
private?: boolean;
|
|
336
|
-
depends?: string;
|
|
337
|
-
description?: string;
|
|
338
|
-
default?: any;
|
|
339
|
-
set?: Function;
|
|
340
|
-
get?: Function;
|
|
341
|
-
env?: string[] | string;
|
|
342
|
-
};
|
|
343
|
-
cidrAddresses: {
|
|
344
|
-
type: string;
|
|
345
|
-
isKey: boolean;
|
|
346
|
-
writable: boolean;
|
|
347
|
-
mandatory: boolean;
|
|
348
|
-
collection: boolean;
|
|
349
|
-
private?: boolean;
|
|
350
|
-
depends?: string;
|
|
351
|
-
description?: string;
|
|
352
|
-
default?: any;
|
|
353
|
-
set?: Function;
|
|
354
|
-
get?: Function;
|
|
355
|
-
env?: string[] | string;
|
|
356
|
-
};
|
|
357
|
-
cidrAddress: {
|
|
358
|
-
type: string;
|
|
359
|
-
isKey: boolean;
|
|
360
|
-
writable: boolean;
|
|
361
|
-
mandatory: boolean;
|
|
362
|
-
collection: boolean;
|
|
363
|
-
private?: boolean;
|
|
364
|
-
depends?: string;
|
|
365
|
-
description?: string;
|
|
366
|
-
default?: any;
|
|
367
|
-
set?: Function;
|
|
368
|
-
get?: Function;
|
|
369
|
-
env?: string[] | string;
|
|
370
|
-
};
|
|
371
|
-
addresses: {
|
|
372
|
-
type: string;
|
|
373
|
-
isKey: boolean;
|
|
374
|
-
writable: boolean;
|
|
375
|
-
mandatory: boolean;
|
|
376
408
|
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
|
-
address: {
|
|
386
|
-
type: string;
|
|
387
|
-
isKey: boolean;
|
|
388
409
|
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
410
|
};
|
|
399
411
|
};
|
|
400
412
|
};
|
package/types/subnet.d.mts
CHANGED
|
@@ -39,6 +39,20 @@ export class Subnet extends Base {
|
|
|
39
39
|
get?: Function;
|
|
40
40
|
env?: string[] | string;
|
|
41
41
|
};
|
|
42
|
+
family: {
|
|
43
|
+
type: string;
|
|
44
|
+
isKey: boolean;
|
|
45
|
+
writable: boolean;
|
|
46
|
+
mandatory: boolean;
|
|
47
|
+
collection: boolean;
|
|
48
|
+
private?: boolean;
|
|
49
|
+
depends?: string;
|
|
50
|
+
description?: string;
|
|
51
|
+
default?: any;
|
|
52
|
+
set?: Function;
|
|
53
|
+
get?: Function;
|
|
54
|
+
env?: string[] | string;
|
|
55
|
+
};
|
|
42
56
|
};
|
|
43
57
|
};
|
|
44
58
|
networks: Set<any>;
|