pmcf 3.10.15 → 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.
Files changed (41) hide show
  1. package/package.json +1 -1
  2. package/src/base.mjs +1 -1
  3. package/src/cluster.mjs +2 -3
  4. package/src/host.mjs +10 -10
  5. package/src/location.mjs +2 -2
  6. package/src/network-support.mjs +6 -6
  7. package/src/owner.mjs +6 -6
  8. package/src/service.mjs +3 -3
  9. package/src/services/bind.mjs +5 -7
  10. package/src/services/openldap.mjs +4 -13
  11. package/src/services/systemd-journal-upload.mjs +1 -1
  12. package/src/subnet.mjs +4 -7
  13. package/types/base.d.mts +1 -14
  14. package/types/cluster.d.mts +27 -378
  15. package/types/extra-source-service.d.mts +8 -112
  16. package/types/host.d.mts +15 -210
  17. package/types/location.d.mts +21 -294
  18. package/types/network-interfaces/ethernet.d.mts +14 -196
  19. package/types/network-interfaces/loopback.d.mts +14 -196
  20. package/types/network-interfaces/network-interface.d.mts +14 -196
  21. package/types/network-interfaces/tun.d.mts +14 -196
  22. package/types/network-interfaces/wireguard.d.mts +14 -196
  23. package/types/network-interfaces/wlan.d.mts +21 -294
  24. package/types/network-support.d.mts +8 -85
  25. package/types/network.d.mts +12 -168
  26. package/types/owner.d.mts +10 -140
  27. package/types/root.d.mts +21 -294
  28. package/types/service.d.mts +20 -252
  29. package/types/services/bind.d.mts +20 -280
  30. package/types/services/chrony.d.mts +16 -224
  31. package/types/services/headscale.d.mts +16 -224
  32. package/types/services/influxdb.d.mts +16 -224
  33. package/types/services/kea.d.mts +16 -224
  34. package/types/services/mosquitto.d.mts +16 -224
  35. package/types/services/openldap.d.mts +19 -266
  36. package/types/services/systemd-journal-remote.d.mts +16 -224
  37. package/types/services/systemd-journal-upload.d.mts +17 -238
  38. package/types/services/systemd-journal.d.mts +16 -224
  39. package/types/services/systemd-resolved.d.mts +16 -224
  40. package/types/services/systemd-timesyncd.d.mts +16 -224
  41. package/types/subnet.d.mts +3 -42
@@ -28,20 +28,7 @@ export namespace NetworkInterfaceTypeDefinition {
28
28
  env?: string[] | string;
29
29
  };
30
30
  priority: import("pacc").AttributeDefinition;
31
- directory: {
32
- writable: boolean;
33
- type: string;
34
- isKey: boolean;
35
- mandatory: boolean;
36
- collection: boolean;
37
- private?: boolean;
38
- depends?: string;
39
- description?: string;
40
- default?: any;
41
- set?: Function;
42
- get?: Function;
43
- env?: string[] | string;
44
- };
31
+ directory: import("pacc").AttributeDefinition;
45
32
  packaging: import("pacc").AttributeDefinition;
46
33
  disabled: import("pacc").AttributeDefinition;
47
34
  tags: import("pacc").AttributeDefinition;
@@ -117,62 +104,10 @@ export namespace NetworkInterfaceTypeDefinition {
117
104
  get?: Function;
118
105
  env?: string[] | string;
119
106
  };
120
- cidrAddresses: {
121
- type: string;
122
- isKey: boolean;
123
- writable: boolean;
124
- mandatory: boolean;
125
- collection: boolean;
126
- private?: boolean;
127
- depends?: string;
128
- description?: string;
129
- default?: any;
130
- set?: Function;
131
- get?: Function;
132
- env?: string[] | string;
133
- };
134
- cidrAddress: {
135
- type: string;
136
- isKey: boolean;
137
- writable: boolean;
138
- mandatory: boolean;
139
- collection: boolean;
140
- private?: boolean;
141
- depends?: string;
142
- description?: string;
143
- default?: any;
144
- set?: Function;
145
- get?: Function;
146
- env?: string[] | string;
147
- };
148
- addresses: {
149
- type: string;
150
- isKey: boolean;
151
- writable: boolean;
152
- mandatory: boolean;
153
- collection: boolean;
154
- private?: boolean;
155
- depends?: string;
156
- description?: string;
157
- default?: any;
158
- set?: Function;
159
- get?: Function;
160
- env?: string[] | string;
161
- };
162
- address: {
163
- type: string;
164
- isKey: boolean;
165
- writable: boolean;
166
- mandatory: boolean;
167
- collection: boolean;
168
- private?: boolean;
169
- depends?: string;
170
- description?: string;
171
- default?: any;
172
- set?: Function;
173
- get?: Function;
174
- env?: string[] | string;
175
- };
107
+ cidrAddresses: import("pacc").AttributeDefinition;
108
+ cidrAddress: import("pacc").AttributeDefinition;
109
+ addresses: import("pacc").AttributeDefinition;
110
+ address: import("pacc").AttributeDefinition;
176
111
  scope: {
177
112
  values: string[];
178
113
  type: string;
@@ -218,34 +153,8 @@ export namespace NetworkInterfaceTypeDefinition {
218
153
  get?: Function;
219
154
  env?: string[] | string;
220
155
  };
221
- ssid: {
222
- type: string;
223
- isKey: boolean;
224
- writable: 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
- psk: {
236
- type: string;
237
- isKey: boolean;
238
- writable: boolean;
239
- mandatory: boolean;
240
- collection: boolean;
241
- private?: boolean;
242
- depends?: string;
243
- description?: string;
244
- default?: any;
245
- set?: Function;
246
- get?: Function;
247
- env?: string[] | string;
248
- };
156
+ ssid: import("pacc").AttributeDefinition;
157
+ psk: import("pacc").AttributeDefinition;
249
158
  secretName: import("pacc").AttributeDefinition;
250
159
  metric: {
251
160
  type: string;
@@ -314,20 +223,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
314
223
  env?: string[] | string;
315
224
  };
316
225
  priority: import("pacc").AttributeDefinition;
317
- directory: {
318
- writable: boolean;
319
- type: string;
320
- isKey: boolean;
321
- mandatory: boolean;
322
- collection: boolean;
323
- private?: boolean;
324
- depends?: string;
325
- description?: string;
326
- default?: any;
327
- set?: Function;
328
- get?: Function;
329
- env?: string[] | string;
330
- };
226
+ directory: import("pacc").AttributeDefinition;
331
227
  packaging: import("pacc").AttributeDefinition;
332
228
  disabled: import("pacc").AttributeDefinition;
333
229
  tags: import("pacc").AttributeDefinition;
@@ -402,62 +298,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
402
298
  get?: Function;
403
299
  env?: string[] | string;
404
300
  };
405
- cidrAddresses: {
406
- type: string;
407
- isKey: boolean;
408
- writable: boolean;
409
- mandatory: boolean;
410
- collection: boolean;
411
- private?: boolean;
412
- depends?: string;
413
- description?: string;
414
- default?: any;
415
- set?: Function;
416
- get?: Function;
417
- env?: string[] | string;
418
- };
419
- cidrAddress: {
420
- type: string;
421
- isKey: boolean;
422
- writable: boolean;
423
- mandatory: boolean;
424
- collection: boolean;
425
- private?: boolean;
426
- depends?: string;
427
- description?: string;
428
- default?: any;
429
- set?: Function;
430
- get?: Function;
431
- env?: string[] | string;
432
- };
433
- addresses: {
434
- type: string;
435
- isKey: boolean;
436
- writable: boolean;
437
- mandatory: boolean;
438
- collection: boolean;
439
- private?: boolean;
440
- depends?: string;
441
- description?: string;
442
- default?: any;
443
- set?: Function;
444
- get?: Function;
445
- env?: string[] | string;
446
- };
447
- address: {
448
- type: string;
449
- isKey: boolean;
450
- writable: boolean;
451
- mandatory: boolean;
452
- collection: boolean;
453
- private?: boolean;
454
- depends?: string;
455
- description?: string;
456
- default?: any;
457
- set?: Function;
458
- get?: Function;
459
- env?: string[] | string;
460
- };
301
+ cidrAddresses: import("pacc").AttributeDefinition;
302
+ cidrAddress: import("pacc").AttributeDefinition;
303
+ addresses: import("pacc").AttributeDefinition;
304
+ address: import("pacc").AttributeDefinition;
461
305
  scope: {
462
306
  values: string[];
463
307
  type: string;
@@ -503,34 +347,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
503
347
  get?: Function;
504
348
  env?: string[] | string;
505
349
  };
506
- ssid: {
507
- type: string;
508
- isKey: boolean;
509
- writable: boolean;
510
- mandatory: boolean;
511
- collection: boolean;
512
- private?: boolean;
513
- depends?: string;
514
- description?: string;
515
- default?: any;
516
- set?: Function;
517
- get?: Function;
518
- env?: string[] | string;
519
- };
520
- psk: {
521
- type: string;
522
- isKey: boolean;
523
- writable: boolean;
524
- mandatory: boolean;
525
- collection: boolean;
526
- private?: boolean;
527
- depends?: string;
528
- description?: string;
529
- default?: any;
530
- set?: Function;
531
- get?: Function;
532
- env?: string[] | string;
533
- };
350
+ ssid: import("pacc").AttributeDefinition;
351
+ psk: import("pacc").AttributeDefinition;
534
352
  secretName: import("pacc").AttributeDefinition;
535
353
  metric: {
536
354
  type: string;
@@ -31,20 +31,7 @@ export class TUNNetworkInterface extends NetworkInterface {
31
31
  env?: string[] | string;
32
32
  };
33
33
  priority: import("pacc").AttributeDefinition;
34
- directory: {
35
- writable: boolean;
36
- type: string;
37
- isKey: boolean;
38
- mandatory: boolean;
39
- collection: boolean;
40
- private?: boolean;
41
- depends?: string;
42
- description?: string;
43
- default?: any;
44
- set?: Function;
45
- get?: Function;
46
- env?: string[] | string;
47
- };
34
+ directory: import("pacc").AttributeDefinition;
48
35
  packaging: import("pacc").AttributeDefinition;
49
36
  disabled: import("pacc").AttributeDefinition;
50
37
  tags: import("pacc").AttributeDefinition;
@@ -119,62 +106,10 @@ export class TUNNetworkInterface extends NetworkInterface {
119
106
  get?: Function;
120
107
  env?: string[] | string;
121
108
  };
122
- cidrAddresses: {
123
- type: string;
124
- isKey: boolean;
125
- writable: boolean;
126
- mandatory: boolean;
127
- collection: boolean;
128
- private?: boolean;
129
- depends?: string;
130
- description?: string;
131
- default?: any;
132
- set?: Function;
133
- get?: Function;
134
- env?: string[] | string;
135
- };
136
- cidrAddress: {
137
- type: string;
138
- isKey: boolean;
139
- writable: boolean;
140
- mandatory: boolean;
141
- collection: boolean;
142
- private?: boolean;
143
- depends?: string;
144
- description?: string;
145
- default?: any;
146
- set?: Function;
147
- get?: Function;
148
- env?: string[] | string;
149
- };
150
- addresses: {
151
- type: string;
152
- isKey: boolean;
153
- writable: boolean;
154
- mandatory: boolean;
155
- collection: boolean;
156
- private?: boolean;
157
- depends?: string;
158
- description?: string;
159
- default?: any;
160
- set?: Function;
161
- get?: Function;
162
- env?: string[] | string;
163
- };
164
- address: {
165
- type: string;
166
- isKey: boolean;
167
- writable: boolean;
168
- mandatory: boolean;
169
- collection: boolean;
170
- private?: boolean;
171
- depends?: string;
172
- description?: string;
173
- default?: any;
174
- set?: Function;
175
- get?: Function;
176
- env?: string[] | string;
177
- };
109
+ cidrAddresses: import("pacc").AttributeDefinition;
110
+ cidrAddress: import("pacc").AttributeDefinition;
111
+ addresses: import("pacc").AttributeDefinition;
112
+ address: import("pacc").AttributeDefinition;
178
113
  scope: {
179
114
  values: string[];
180
115
  type: string;
@@ -220,34 +155,8 @@ export class TUNNetworkInterface extends NetworkInterface {
220
155
  get?: Function;
221
156
  env?: string[] | string;
222
157
  };
223
- ssid: {
224
- type: string;
225
- isKey: boolean;
226
- writable: boolean;
227
- mandatory: boolean;
228
- collection: boolean;
229
- private?: boolean;
230
- depends?: string;
231
- description?: string;
232
- default?: any;
233
- set?: Function;
234
- get?: Function;
235
- env?: string[] | string;
236
- };
237
- psk: {
238
- type: string;
239
- isKey: boolean;
240
- writable: boolean;
241
- mandatory: boolean;
242
- collection: boolean;
243
- private?: boolean;
244
- depends?: string;
245
- description?: string;
246
- default?: any;
247
- set?: Function;
248
- get?: Function;
249
- env?: string[] | string;
250
- };
158
+ ssid: import("pacc").AttributeDefinition;
159
+ psk: import("pacc").AttributeDefinition;
251
160
  secretName: import("pacc").AttributeDefinition;
252
161
  metric: {
253
162
  type: string;
@@ -316,20 +225,7 @@ export class TUNNetworkInterface extends NetworkInterface {
316
225
  env?: string[] | string;
317
226
  };
318
227
  priority: import("pacc").AttributeDefinition;
319
- directory: {
320
- writable: boolean;
321
- type: string;
322
- isKey: boolean;
323
- mandatory: boolean;
324
- collection: boolean;
325
- private?: boolean;
326
- depends?: string;
327
- description?: string;
328
- default?: any;
329
- set?: Function;
330
- get?: Function;
331
- env?: string[] | string;
332
- };
228
+ directory: import("pacc").AttributeDefinition;
333
229
  packaging: import("pacc").AttributeDefinition;
334
230
  disabled: import("pacc").AttributeDefinition;
335
231
  tags: import("pacc").AttributeDefinition;
@@ -404,62 +300,10 @@ export class TUNNetworkInterface extends NetworkInterface {
404
300
  get?: Function;
405
301
  env?: string[] | string;
406
302
  };
407
- cidrAddresses: {
408
- type: string;
409
- isKey: boolean;
410
- writable: boolean;
411
- mandatory: boolean;
412
- collection: boolean;
413
- private?: boolean;
414
- depends?: string;
415
- description?: string;
416
- default?: any;
417
- set?: Function;
418
- get?: Function;
419
- env?: string[] | string;
420
- };
421
- cidrAddress: {
422
- type: string;
423
- isKey: boolean;
424
- writable: boolean;
425
- mandatory: boolean;
426
- collection: boolean;
427
- private?: boolean;
428
- depends?: string;
429
- description?: string;
430
- default?: any;
431
- set?: Function;
432
- get?: Function;
433
- env?: string[] | string;
434
- };
435
- addresses: {
436
- type: string;
437
- isKey: boolean;
438
- writable: boolean;
439
- mandatory: boolean;
440
- collection: boolean;
441
- private?: boolean;
442
- depends?: string;
443
- description?: string;
444
- default?: any;
445
- set?: Function;
446
- get?: Function;
447
- env?: string[] | string;
448
- };
449
- address: {
450
- type: string;
451
- isKey: boolean;
452
- writable: boolean;
453
- mandatory: boolean;
454
- collection: boolean;
455
- private?: boolean;
456
- depends?: string;
457
- description?: string;
458
- default?: any;
459
- set?: Function;
460
- get?: Function;
461
- env?: string[] | string;
462
- };
303
+ cidrAddresses: import("pacc").AttributeDefinition;
304
+ cidrAddress: import("pacc").AttributeDefinition;
305
+ addresses: import("pacc").AttributeDefinition;
306
+ address: import("pacc").AttributeDefinition;
463
307
  scope: {
464
308
  values: string[];
465
309
  type: string;
@@ -505,34 +349,8 @@ export class TUNNetworkInterface extends NetworkInterface {
505
349
  get?: Function;
506
350
  env?: string[] | string;
507
351
  };
508
- ssid: {
509
- type: string;
510
- isKey: boolean;
511
- writable: boolean;
512
- mandatory: boolean;
513
- collection: boolean;
514
- private?: boolean;
515
- depends?: string;
516
- description?: string;
517
- default?: any;
518
- set?: Function;
519
- get?: Function;
520
- env?: string[] | string;
521
- };
522
- psk: {
523
- type: string;
524
- isKey: boolean;
525
- writable: boolean;
526
- mandatory: boolean;
527
- collection: boolean;
528
- private?: boolean;
529
- depends?: string;
530
- description?: string;
531
- default?: any;
532
- set?: Function;
533
- get?: Function;
534
- env?: string[] | string;
535
- };
352
+ ssid: import("pacc").AttributeDefinition;
353
+ psk: import("pacc").AttributeDefinition;
536
354
  secretName: import("pacc").AttributeDefinition;
537
355
  metric: {
538
356
  type: string;