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
@@ -45,20 +45,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
45
45
  env?: string[] | string;
46
46
  };
47
47
  priority: import("pacc").AttributeDefinition;
48
- directory: {
49
- writable: boolean;
50
- type: string;
51
- isKey: boolean;
52
- mandatory: boolean;
53
- collection: boolean;
54
- private?: boolean;
55
- depends?: string;
56
- description?: string;
57
- default?: any;
58
- set?: Function;
59
- get?: Function;
60
- env?: string[] | string;
61
- };
48
+ directory: import("pacc").AttributeDefinition;
62
49
  packaging: import("pacc").AttributeDefinition;
63
50
  disabled: import("pacc").AttributeDefinition;
64
51
  tags: import("pacc").AttributeDefinition;
@@ -133,62 +120,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
133
120
  get?: Function;
134
121
  env?: string[] | string;
135
122
  };
136
- cidrAddresses: {
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
- cidrAddress: {
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
- addresses: {
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
- };
178
- address: {
179
- type: string;
180
- isKey: boolean;
181
- writable: boolean;
182
- mandatory: boolean;
183
- collection: boolean;
184
- private?: boolean;
185
- depends?: string;
186
- description?: string;
187
- default?: any;
188
- set?: Function;
189
- get?: Function;
190
- env?: string[] | string;
191
- };
123
+ cidrAddresses: import("pacc").AttributeDefinition;
124
+ cidrAddress: import("pacc").AttributeDefinition;
125
+ addresses: import("pacc").AttributeDefinition;
126
+ address: import("pacc").AttributeDefinition;
192
127
  scope: {
193
128
  values: string[];
194
129
  type: string;
@@ -234,34 +169,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
234
169
  get?: Function;
235
170
  env?: string[] | string;
236
171
  };
237
- ssid: {
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
- };
251
- psk: {
252
- type: string;
253
- isKey: boolean;
254
- writable: boolean;
255
- mandatory: boolean;
256
- collection: boolean;
257
- private?: boolean;
258
- depends?: string;
259
- description?: string;
260
- default?: any;
261
- set?: Function;
262
- get?: Function;
263
- env?: string[] | string;
264
- };
172
+ ssid: import("pacc").AttributeDefinition;
173
+ psk: import("pacc").AttributeDefinition;
265
174
  secretName: import("pacc").AttributeDefinition;
266
175
  metric: {
267
176
  type: string;
@@ -330,20 +239,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
330
239
  env?: string[] | string;
331
240
  };
332
241
  priority: import("pacc").AttributeDefinition;
333
- directory: {
334
- writable: boolean;
335
- type: string;
336
- isKey: boolean;
337
- mandatory: boolean;
338
- collection: boolean;
339
- private?: boolean;
340
- depends?: string;
341
- description?: string;
342
- default?: any;
343
- set?: Function;
344
- get?: Function;
345
- env?: string[] | string;
346
- };
242
+ directory: import("pacc").AttributeDefinition;
347
243
  packaging: import("pacc").AttributeDefinition;
348
244
  disabled: import("pacc").AttributeDefinition;
349
245
  tags: import("pacc").AttributeDefinition;
@@ -418,62 +314,10 @@ export class EthernetNetworkInterface extends NetworkInterface {
418
314
  get?: Function;
419
315
  env?: string[] | string;
420
316
  };
421
- cidrAddresses: {
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
- cidrAddress: {
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
- addresses: {
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
- };
463
- address: {
464
- type: string;
465
- isKey: boolean;
466
- writable: boolean;
467
- mandatory: boolean;
468
- collection: boolean;
469
- private?: boolean;
470
- depends?: string;
471
- description?: string;
472
- default?: any;
473
- set?: Function;
474
- get?: Function;
475
- env?: string[] | string;
476
- };
317
+ cidrAddresses: import("pacc").AttributeDefinition;
318
+ cidrAddress: import("pacc").AttributeDefinition;
319
+ addresses: import("pacc").AttributeDefinition;
320
+ address: import("pacc").AttributeDefinition;
477
321
  scope: {
478
322
  values: string[];
479
323
  type: string;
@@ -519,34 +363,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
519
363
  get?: Function;
520
364
  env?: string[] | string;
521
365
  };
522
- ssid: {
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
- };
536
- psk: {
537
- type: string;
538
- isKey: boolean;
539
- writable: boolean;
540
- mandatory: boolean;
541
- collection: boolean;
542
- private?: boolean;
543
- depends?: string;
544
- description?: string;
545
- default?: any;
546
- set?: Function;
547
- get?: Function;
548
- env?: string[] | string;
549
- };
366
+ ssid: import("pacc").AttributeDefinition;
367
+ psk: import("pacc").AttributeDefinition;
550
368
  secretName: import("pacc").AttributeDefinition;
551
369
  metric: {
552
370
  type: string;
@@ -31,20 +31,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
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;