pmcf 3.13.13 → 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.
Files changed (64) hide show
  1. package/package.json +7 -7
  2. package/src/base.mjs +13 -13
  3. package/src/cluster.mjs +2 -2
  4. package/src/extra-source-service.mjs +1 -2
  5. package/src/host.mjs +2 -2
  6. package/src/location.mjs +1 -2
  7. package/src/module.mjs +1 -2
  8. package/src/network-interfaces/ethernet.mjs +1 -2
  9. package/src/network-interfaces/loopback.mjs +1 -1
  10. package/src/network-interfaces/network-interface.mjs +3 -3
  11. package/src/network-interfaces/tun.mjs +1 -1
  12. package/src/network-interfaces/wireguard.mjs +1 -1
  13. package/src/network-interfaces/wlan.mjs +1 -2
  14. package/src/network-support.mjs +6 -4
  15. package/src/network.mjs +1 -2
  16. package/src/owner.mjs +2 -2
  17. package/src/root.mjs +1 -1
  18. package/src/service.mjs +2 -2
  19. package/src/services/bind.mjs +7 -6
  20. package/src/services/chrony.mjs +3 -1
  21. package/src/services/headscale.mjs +3 -1
  22. package/src/services/influxdb.mjs +3 -2
  23. package/src/services/kea.mjs +4 -2
  24. package/src/services/mosquitto.mjs +3 -2
  25. package/src/services/openldap.mjs +3 -2
  26. package/src/services/systemd-journal-remote.mjs +3 -2
  27. package/src/services/systemd-journal-upload.mjs +3 -3
  28. package/src/services/systemd-journal.mjs +1 -1
  29. package/src/services/systemd-resolved.mjs +2 -2
  30. package/src/services/systemd-timesyncd.mjs +1 -1
  31. package/src/services/tailscale.mjs +1 -1
  32. package/src/subnet.mjs +1 -2
  33. package/types/base.d.mts +30 -31
  34. package/types/cluster.d.mts +2 -64
  35. package/types/extra-source-service.d.mts +8 -194
  36. package/types/host.d.mts +2 -32
  37. package/types/location.d.mts +2 -64
  38. package/types/module.d.mts +1 -2
  39. package/types/network-interfaces/ethernet.d.mts +4 -128
  40. package/types/network-interfaces/loopback.d.mts +4 -128
  41. package/types/network-interfaces/network-interface.d.mts +6 -129
  42. package/types/network-interfaces/tun.d.mts +4 -128
  43. package/types/network-interfaces/wireguard.d.mts +4 -128
  44. package/types/network-interfaces/wlan.d.mts +6 -192
  45. package/types/network-support.d.mts +1 -1
  46. package/types/network.d.mts +2 -64
  47. package/types/owner.d.mts +1 -32
  48. package/types/root.d.mts +2 -64
  49. package/types/service.d.mts +4 -128
  50. package/types/services/bind.d.mts +14 -262
  51. package/types/services/chrony.d.mts +9 -257
  52. package/types/services/headscale.d.mts +5 -160
  53. package/types/services/influxdb.d.mts +5 -160
  54. package/types/services/kea.d.mts +5 -160
  55. package/types/services/mosquitto.d.mts +5 -160
  56. package/types/services/openldap.d.mts +5 -160
  57. package/types/services/systemd-journal-remote.d.mts +5 -160
  58. package/types/services/systemd-journal-upload.d.mts +5 -160
  59. package/types/services/systemd-journal.d.mts +5 -160
  60. package/types/services/systemd-resolved.d.mts +9 -257
  61. package/types/services/systemd-timesyncd.d.mts +9 -257
  62. package/types/services/tailscale.d.mts +5 -162
  63. package/src/types.mjs +0 -47
  64. package/types/types.d.mts +0 -5
@@ -6,38 +6,7 @@ export class OpenLDAPService extends Service {
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("pmcf").Base;
41
10
  key: string;
42
11
  attributes: {
43
12
  networkInterfaces: {
@@ -202,38 +171,7 @@ export class OpenLDAPService extends Service {
202
171
  address: import("pacc").AttributeDefinition;
203
172
  };
204
173
  })[];
205
- extends: {
206
- name: string;
207
- key: string;
208
- attributes: {
209
- owner: {
210
- type: string;
211
- isKey: boolean;
212
- writable: boolean;
213
- mandatory: boolean;
214
- collection: boolean;
215
- private?: boolean;
216
- depends?: string;
217
- description?: string;
218
- default?: any;
219
- set?: Function;
220
- get?: Function;
221
- prepareValue?: Function;
222
- values?: Set<any>;
223
- externalName?: string;
224
- env?: string[] | string;
225
- additionalValues?: object;
226
- };
227
- type: import("pacc").AttributeDefinition;
228
- name: import("pacc").AttributeDefinition;
229
- description: import("pacc").AttributeDefinition;
230
- priority: import("pacc").AttributeDefinition;
231
- directory: import("pacc").AttributeDefinition;
232
- packaging: import("pacc").AttributeDefinition;
233
- disabled: import("pacc").AttributeDefinition;
234
- tags: import("pacc").AttributeDefinition;
235
- };
236
- };
174
+ extends: typeof import("pmcf").Base;
237
175
  specializations: {};
238
176
  factoryFor(owner: any, value: any): any;
239
177
  key: string;
@@ -309,38 +247,7 @@ export class OpenLDAPService extends Service {
309
247
  owners: (string | {
310
248
  name: string;
311
249
  owners: string[];
312
- extends: {
313
- name: string;
314
- key: string;
315
- attributes: {
316
- owner: {
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
- prepareValue?: Function;
329
- values?: Set<any>;
330
- externalName?: string;
331
- env?: string[] | string;
332
- additionalValues?: object;
333
- };
334
- type: import("pacc").AttributeDefinition;
335
- name: import("pacc").AttributeDefinition;
336
- description: import("pacc").AttributeDefinition;
337
- priority: import("pacc").AttributeDefinition;
338
- directory: import("pacc").AttributeDefinition;
339
- packaging: import("pacc").AttributeDefinition;
340
- disabled: import("pacc").AttributeDefinition;
341
- tags: import("pacc").AttributeDefinition;
342
- };
343
- };
250
+ extends: typeof import("pmcf").Base;
344
251
  key: string;
345
252
  attributes: {
346
253
  networkInterfaces: {
@@ -505,38 +412,7 @@ export class OpenLDAPService extends Service {
505
412
  address: import("pacc").AttributeDefinition;
506
413
  };
507
414
  })[];
508
- extends: {
509
- name: string;
510
- key: string;
511
- attributes: {
512
- owner: {
513
- type: string;
514
- isKey: boolean;
515
- writable: boolean;
516
- mandatory: boolean;
517
- collection: boolean;
518
- private?: boolean;
519
- depends?: string;
520
- description?: string;
521
- default?: any;
522
- set?: Function;
523
- get?: Function;
524
- prepareValue?: Function;
525
- values?: Set<any>;
526
- externalName?: string;
527
- env?: string[] | string;
528
- additionalValues?: object;
529
- };
530
- type: import("pacc").AttributeDefinition;
531
- name: import("pacc").AttributeDefinition;
532
- description: import("pacc").AttributeDefinition;
533
- priority: import("pacc").AttributeDefinition;
534
- directory: import("pacc").AttributeDefinition;
535
- packaging: import("pacc").AttributeDefinition;
536
- disabled: import("pacc").AttributeDefinition;
537
- tags: import("pacc").AttributeDefinition;
538
- };
539
- };
415
+ extends: typeof import("pmcf").Base;
540
416
  specializations: {};
541
417
  factoryFor(owner: any, value: any): any;
542
418
  key: string;
@@ -610,38 +486,7 @@ export class OpenLDAPService extends Service {
610
486
  owners: (string | {
611
487
  name: string;
612
488
  owners: string[];
613
- extends: {
614
- name: string;
615
- key: string;
616
- attributes: {
617
- owner: {
618
- type: string;
619
- isKey: boolean;
620
- writable: boolean;
621
- mandatory: boolean;
622
- collection: boolean;
623
- private?: boolean;
624
- depends?: string;
625
- description?: string;
626
- default?: any;
627
- set?: Function;
628
- get?: Function;
629
- prepareValue?: Function;
630
- values?: Set<any>;
631
- externalName?: string;
632
- env?: string[] | string;
633
- additionalValues?: object;
634
- };
635
- type: import("pacc").AttributeDefinition;
636
- name: import("pacc").AttributeDefinition;
637
- description: import("pacc").AttributeDefinition;
638
- priority: import("pacc").AttributeDefinition;
639
- directory: import("pacc").AttributeDefinition;
640
- packaging: import("pacc").AttributeDefinition;
641
- disabled: import("pacc").AttributeDefinition;
642
- tags: import("pacc").AttributeDefinition;
643
- };
644
- };
489
+ extends: typeof import("pmcf").Base;
645
490
  key: string;
646
491
  attributes: {
647
492
  networkInterfaces: {
@@ -6,38 +6,7 @@ export class SystemdJournalRemoteService extends Service {
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("pmcf").Base;
41
10
  key: string;
42
11
  attributes: {
43
12
  networkInterfaces: {
@@ -202,38 +171,7 @@ export class SystemdJournalRemoteService extends Service {
202
171
  address: import("pacc").AttributeDefinition;
203
172
  };
204
173
  })[];
205
- extends: {
206
- name: string;
207
- key: string;
208
- attributes: {
209
- owner: {
210
- type: string;
211
- isKey: boolean;
212
- writable: boolean;
213
- mandatory: boolean;
214
- collection: boolean;
215
- private?: boolean;
216
- depends?: string;
217
- description?: string;
218
- default?: any;
219
- set?: Function;
220
- get?: Function;
221
- prepareValue?: Function;
222
- values?: Set<any>;
223
- externalName?: string;
224
- env?: string[] | string;
225
- additionalValues?: object;
226
- };
227
- type: import("pacc").AttributeDefinition;
228
- name: import("pacc").AttributeDefinition;
229
- description: import("pacc").AttributeDefinition;
230
- priority: import("pacc").AttributeDefinition;
231
- directory: import("pacc").AttributeDefinition;
232
- packaging: import("pacc").AttributeDefinition;
233
- disabled: import("pacc").AttributeDefinition;
234
- tags: import("pacc").AttributeDefinition;
235
- };
236
- };
174
+ extends: typeof import("pmcf").Base;
237
175
  specializations: {};
238
176
  factoryFor(owner: any, value: any): any;
239
177
  key: string;
@@ -309,38 +247,7 @@ export class SystemdJournalRemoteService extends Service {
309
247
  owners: (string | {
310
248
  name: string;
311
249
  owners: string[];
312
- extends: {
313
- name: string;
314
- key: string;
315
- attributes: {
316
- owner: {
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
- prepareValue?: Function;
329
- values?: Set<any>;
330
- externalName?: string;
331
- env?: string[] | string;
332
- additionalValues?: object;
333
- };
334
- type: import("pacc").AttributeDefinition;
335
- name: import("pacc").AttributeDefinition;
336
- description: import("pacc").AttributeDefinition;
337
- priority: import("pacc").AttributeDefinition;
338
- directory: import("pacc").AttributeDefinition;
339
- packaging: import("pacc").AttributeDefinition;
340
- disabled: import("pacc").AttributeDefinition;
341
- tags: import("pacc").AttributeDefinition;
342
- };
343
- };
250
+ extends: typeof import("pmcf").Base;
344
251
  key: string;
345
252
  attributes: {
346
253
  networkInterfaces: {
@@ -505,38 +412,7 @@ export class SystemdJournalRemoteService extends Service {
505
412
  address: import("pacc").AttributeDefinition;
506
413
  };
507
414
  })[];
508
- extends: {
509
- name: string;
510
- key: string;
511
- attributes: {
512
- owner: {
513
- type: string;
514
- isKey: boolean;
515
- writable: boolean;
516
- mandatory: boolean;
517
- collection: boolean;
518
- private?: boolean;
519
- depends?: string;
520
- description?: string;
521
- default?: any;
522
- set?: Function;
523
- get?: Function;
524
- prepareValue?: Function;
525
- values?: Set<any>;
526
- externalName?: string;
527
- env?: string[] | string;
528
- additionalValues?: object;
529
- };
530
- type: import("pacc").AttributeDefinition;
531
- name: import("pacc").AttributeDefinition;
532
- description: import("pacc").AttributeDefinition;
533
- priority: import("pacc").AttributeDefinition;
534
- directory: import("pacc").AttributeDefinition;
535
- packaging: import("pacc").AttributeDefinition;
536
- disabled: import("pacc").AttributeDefinition;
537
- tags: import("pacc").AttributeDefinition;
538
- };
539
- };
415
+ extends: typeof import("pmcf").Base;
540
416
  specializations: {};
541
417
  factoryFor(owner: any, value: any): any;
542
418
  key: string;
@@ -610,38 +486,7 @@ export class SystemdJournalRemoteService extends Service {
610
486
  owners: (string | {
611
487
  name: string;
612
488
  owners: string[];
613
- extends: {
614
- name: string;
615
- key: string;
616
- attributes: {
617
- owner: {
618
- type: string;
619
- isKey: boolean;
620
- writable: boolean;
621
- mandatory: boolean;
622
- collection: boolean;
623
- private?: boolean;
624
- depends?: string;
625
- description?: string;
626
- default?: any;
627
- set?: Function;
628
- get?: Function;
629
- prepareValue?: Function;
630
- values?: Set<any>;
631
- externalName?: string;
632
- env?: string[] | string;
633
- additionalValues?: object;
634
- };
635
- type: import("pacc").AttributeDefinition;
636
- name: import("pacc").AttributeDefinition;
637
- description: import("pacc").AttributeDefinition;
638
- priority: import("pacc").AttributeDefinition;
639
- directory: import("pacc").AttributeDefinition;
640
- packaging: import("pacc").AttributeDefinition;
641
- disabled: import("pacc").AttributeDefinition;
642
- tags: import("pacc").AttributeDefinition;
643
- };
644
- };
489
+ extends: typeof import("pmcf").Base;
645
490
  key: string;
646
491
  attributes: {
647
492
  networkInterfaces: {
@@ -6,38 +6,7 @@ export class SystemdJournalUploadService extends Service {
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("pmcf").Base;
41
10
  key: string;
42
11
  attributes: {
43
12
  networkInterfaces: {
@@ -202,38 +171,7 @@ export class SystemdJournalUploadService extends Service {
202
171
  address: import("pacc").AttributeDefinition;
203
172
  };
204
173
  })[];
205
- extends: {
206
- name: string;
207
- key: string;
208
- attributes: {
209
- owner: {
210
- type: string;
211
- isKey: boolean;
212
- writable: boolean;
213
- mandatory: boolean;
214
- collection: boolean;
215
- private?: boolean;
216
- depends?: string;
217
- description?: string;
218
- default?: any;
219
- set?: Function;
220
- get?: Function;
221
- prepareValue?: Function;
222
- values?: Set<any>;
223
- externalName?: string;
224
- env?: string[] | string;
225
- additionalValues?: object;
226
- };
227
- type: import("pacc").AttributeDefinition;
228
- name: import("pacc").AttributeDefinition;
229
- description: import("pacc").AttributeDefinition;
230
- priority: import("pacc").AttributeDefinition;
231
- directory: import("pacc").AttributeDefinition;
232
- packaging: import("pacc").AttributeDefinition;
233
- disabled: import("pacc").AttributeDefinition;
234
- tags: import("pacc").AttributeDefinition;
235
- };
236
- };
174
+ extends: typeof import("pmcf").Base;
237
175
  specializations: {};
238
176
  factoryFor(owner: any, value: any): any;
239
177
  key: string;
@@ -309,38 +247,7 @@ export class SystemdJournalUploadService extends Service {
309
247
  owners: (string | {
310
248
  name: string;
311
249
  owners: string[];
312
- extends: {
313
- name: string;
314
- key: string;
315
- attributes: {
316
- owner: {
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
- prepareValue?: Function;
329
- values?: Set<any>;
330
- externalName?: string;
331
- env?: string[] | string;
332
- additionalValues?: object;
333
- };
334
- type: import("pacc").AttributeDefinition;
335
- name: import("pacc").AttributeDefinition;
336
- description: import("pacc").AttributeDefinition;
337
- priority: import("pacc").AttributeDefinition;
338
- directory: import("pacc").AttributeDefinition;
339
- packaging: import("pacc").AttributeDefinition;
340
- disabled: import("pacc").AttributeDefinition;
341
- tags: import("pacc").AttributeDefinition;
342
- };
343
- };
250
+ extends: typeof import("pmcf").Base;
344
251
  key: string;
345
252
  attributes: {
346
253
  networkInterfaces: {
@@ -505,38 +412,7 @@ export class SystemdJournalUploadService extends Service {
505
412
  address: import("pacc").AttributeDefinition;
506
413
  };
507
414
  })[];
508
- extends: {
509
- name: string;
510
- key: string;
511
- attributes: {
512
- owner: {
513
- type: string;
514
- isKey: boolean;
515
- writable: boolean;
516
- mandatory: boolean;
517
- collection: boolean;
518
- private?: boolean;
519
- depends?: string;
520
- description?: string;
521
- default?: any;
522
- set?: Function;
523
- get?: Function;
524
- prepareValue?: Function;
525
- values?: Set<any>;
526
- externalName?: string;
527
- env?: string[] | string;
528
- additionalValues?: object;
529
- };
530
- type: import("pacc").AttributeDefinition;
531
- name: import("pacc").AttributeDefinition;
532
- description: import("pacc").AttributeDefinition;
533
- priority: import("pacc").AttributeDefinition;
534
- directory: import("pacc").AttributeDefinition;
535
- packaging: import("pacc").AttributeDefinition;
536
- disabled: import("pacc").AttributeDefinition;
537
- tags: import("pacc").AttributeDefinition;
538
- };
539
- };
415
+ extends: typeof import("pmcf").Base;
540
416
  specializations: {};
541
417
  factoryFor(owner: any, value: any): any;
542
418
  key: string;
@@ -610,38 +486,7 @@ export class SystemdJournalUploadService extends Service {
610
486
  owners: (string | {
611
487
  name: string;
612
488
  owners: string[];
613
- extends: {
614
- name: string;
615
- key: string;
616
- attributes: {
617
- owner: {
618
- type: string;
619
- isKey: boolean;
620
- writable: boolean;
621
- mandatory: boolean;
622
- collection: boolean;
623
- private?: boolean;
624
- depends?: string;
625
- description?: string;
626
- default?: any;
627
- set?: Function;
628
- get?: Function;
629
- prepareValue?: Function;
630
- values?: Set<any>;
631
- externalName?: string;
632
- env?: string[] | string;
633
- additionalValues?: object;
634
- };
635
- type: import("pacc").AttributeDefinition;
636
- name: import("pacc").AttributeDefinition;
637
- description: import("pacc").AttributeDefinition;
638
- priority: import("pacc").AttributeDefinition;
639
- directory: import("pacc").AttributeDefinition;
640
- packaging: import("pacc").AttributeDefinition;
641
- disabled: import("pacc").AttributeDefinition;
642
- tags: import("pacc").AttributeDefinition;
643
- };
644
- };
489
+ extends: typeof import("pmcf").Base;
645
490
  key: string;
646
491
  attributes: {
647
492
  networkInterfaces: {