pmcf 3.8.9 → 3.8.10

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 (38) hide show
  1. package/package.json +3 -3
  2. package/src/base.mjs +4 -6
  3. package/src/cluster.mjs +3 -3
  4. package/src/host.mjs +17 -20
  5. package/src/network-interfaces/network-interface.mjs +5 -6
  6. package/src/network-support.mjs +15 -18
  7. package/src/owner.mjs +8 -7
  8. package/src/service.mjs +4 -5
  9. package/src/services/bind.mjs +6 -6
  10. package/src/services/systemd-journal-upload.mjs +2 -2
  11. package/types/base.d.mts +2 -28
  12. package/types/cluster.d.mts +102 -154
  13. package/types/extra-source-service.d.mts +25 -51
  14. package/types/host.d.mts +68 -94
  15. package/types/location.d.mts +64 -116
  16. package/types/network-interfaces/ethernet.d.mts +60 -112
  17. package/types/network-interfaces/loopback.d.mts +60 -112
  18. package/types/network-interfaces/network-interface.d.mts +60 -112
  19. package/types/network-interfaces/tun.d.mts +60 -112
  20. package/types/network-interfaces/wireguard.d.mts +60 -112
  21. package/types/network-interfaces/wlan.d.mts +90 -168
  22. package/types/network-support.d.mts +25 -25
  23. package/types/network.d.mts +37 -63
  24. package/types/owner.d.mts +32 -58
  25. package/types/root.d.mts +64 -116
  26. package/types/service.d.mts +52 -104
  27. package/types/services/bind.d.mts +55 -107
  28. package/types/services/chrony.d.mts +50 -102
  29. package/types/services/headscale.d.mts +50 -102
  30. package/types/services/influxdb.d.mts +50 -102
  31. package/types/services/kea.d.mts +50 -102
  32. package/types/services/mosquitto.d.mts +50 -102
  33. package/types/services/openldap.d.mts +50 -102
  34. package/types/services/systemd-journal-remote.d.mts +50 -102
  35. package/types/services/systemd-journal-upload.d.mts +51 -103
  36. package/types/services/systemd-journal.d.mts +50 -102
  37. package/types/services/systemd-resolved.d.mts +50 -102
  38. package/types/services/systemd-timesyncd.d.mts +50 -102
@@ -16,20 +16,7 @@ export class KeaService extends Service {
16
16
  writable: boolean;
17
17
  };
18
18
  type: import("pacc").AttributeDefinition;
19
- name: {
20
- writable: boolean;
21
- type: string;
22
- isKey: boolean;
23
- mandatory: boolean;
24
- collection: boolean;
25
- private?: boolean;
26
- depends?: string;
27
- description?: string;
28
- default?: any;
29
- set?: Function;
30
- get?: Function;
31
- env?: string[] | string;
32
- };
19
+ name: import("pacc").AttributeDefinition;
33
20
  description: {
34
21
  writable: boolean;
35
22
  type: string;
@@ -59,20 +46,7 @@ export class KeaService extends Service {
59
46
  get?: Function;
60
47
  env?: string[] | string;
61
48
  };
62
- packaging: {
63
- writable: boolean;
64
- type: string;
65
- isKey: boolean;
66
- mandatory: boolean;
67
- collection: boolean;
68
- private?: boolean;
69
- depends?: string;
70
- description?: string;
71
- default?: any;
72
- set?: Function;
73
- get?: Function;
74
- env?: string[] | string;
75
- };
49
+ packaging: import("pacc").AttributeDefinition;
76
50
  disabled: import("pacc").AttributeDefinition;
77
51
  tags: import("pacc").AttributeDefinition;
78
52
  };
@@ -81,9 +55,9 @@ export class KeaService extends Service {
81
55
  factoryFor(owner: any, value: any): any;
82
56
  properties: {
83
57
  alias: {
84
- writable: boolean;
85
58
  type: string;
86
59
  isKey: boolean;
60
+ writable: boolean;
87
61
  mandatory: boolean;
88
62
  collection: boolean;
89
63
  private?: boolean;
@@ -124,10 +98,10 @@ export class KeaService extends Service {
124
98
  env?: string[] | string;
125
99
  };
126
100
  protocol: {
127
- writable: boolean;
128
101
  values: string[];
129
102
  type: string;
130
103
  isKey: boolean;
104
+ writable: boolean;
131
105
  mandatory: boolean;
132
106
  collection: boolean;
133
107
  private?: boolean;
@@ -139,9 +113,9 @@ export class KeaService extends Service {
139
113
  env?: string[] | string;
140
114
  };
141
115
  type: {
142
- writable: boolean;
143
116
  type: string;
144
117
  isKey: boolean;
118
+ writable: boolean;
145
119
  mandatory: boolean;
146
120
  collection: boolean;
147
121
  private?: boolean;
@@ -169,23 +143,23 @@ export class KeaService extends Service {
169
143
  env?: string[] | string;
170
144
  };
171
145
  cidrAddresses: {
172
- writable: boolean;
173
- collection: boolean;
174
146
  type: string;
175
147
  isKey: boolean;
148
+ writable: boolean;
176
149
  mandatory: boolean;
177
- private: boolean;
178
- depends: string;
179
- description: string;
180
- default: any;
181
- set: Function;
182
- get: Function;
183
- env: string[] | string;
150
+ collection: boolean;
151
+ private?: boolean;
152
+ depends?: string;
153
+ description?: string;
154
+ default?: any;
155
+ set?: Function;
156
+ get?: Function;
157
+ env?: string[] | string;
184
158
  };
185
159
  cidrAddress: {
186
- writable: boolean;
187
160
  type: string;
188
161
  isKey: boolean;
162
+ writable: boolean;
189
163
  mandatory: boolean;
190
164
  collection: boolean;
191
165
  private?: boolean;
@@ -197,23 +171,23 @@ export class KeaService extends Service {
197
171
  env?: string[] | string;
198
172
  };
199
173
  addresses: {
200
- writable: boolean;
201
- collection: boolean;
202
174
  type: string;
203
175
  isKey: boolean;
176
+ writable: boolean;
204
177
  mandatory: boolean;
205
- private: boolean;
206
- depends: string;
207
- description: string;
208
- default: any;
209
- set: Function;
210
- get: Function;
211
- env: string[] | string;
178
+ collection: boolean;
179
+ private?: boolean;
180
+ depends?: string;
181
+ description?: string;
182
+ default?: any;
183
+ set?: Function;
184
+ get?: Function;
185
+ env?: string[] | string;
212
186
  };
213
187
  address: {
214
- writable: boolean;
215
188
  type: string;
216
189
  isKey: boolean;
190
+ writable: boolean;
217
191
  mandatory: boolean;
218
192
  collection: boolean;
219
193
  private?: boolean;
@@ -241,20 +215,7 @@ export class KeaService extends Service {
241
215
  writable: boolean;
242
216
  };
243
217
  type: import("pacc").AttributeDefinition;
244
- name: {
245
- writable: boolean;
246
- type: string;
247
- isKey: boolean;
248
- mandatory: boolean;
249
- collection: boolean;
250
- private?: boolean;
251
- depends?: string;
252
- description?: string;
253
- default?: any;
254
- set?: Function;
255
- get?: Function;
256
- env?: string[] | string;
257
- };
218
+ name: import("pacc").AttributeDefinition;
258
219
  description: {
259
220
  writable: boolean;
260
221
  type: string;
@@ -284,20 +245,7 @@ export class KeaService extends Service {
284
245
  get?: Function;
285
246
  env?: string[] | string;
286
247
  };
287
- packaging: {
288
- writable: boolean;
289
- type: string;
290
- isKey: 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
- };
248
+ packaging: import("pacc").AttributeDefinition;
301
249
  disabled: import("pacc").AttributeDefinition;
302
250
  tags: import("pacc").AttributeDefinition;
303
251
  };
@@ -306,9 +254,9 @@ export class KeaService extends Service {
306
254
  factoryFor(owner: any, value: any): any;
307
255
  properties: {
308
256
  alias: {
309
- writable: boolean;
310
257
  type: string;
311
258
  isKey: boolean;
259
+ writable: boolean;
312
260
  mandatory: boolean;
313
261
  collection: boolean;
314
262
  private?: boolean;
@@ -349,10 +297,10 @@ export class KeaService extends Service {
349
297
  env?: string[] | string;
350
298
  };
351
299
  protocol: {
352
- writable: boolean;
353
300
  values: string[];
354
301
  type: string;
355
302
  isKey: boolean;
303
+ writable: boolean;
356
304
  mandatory: boolean;
357
305
  collection: boolean;
358
306
  private?: boolean;
@@ -364,9 +312,9 @@ export class KeaService extends Service {
364
312
  env?: string[] | string;
365
313
  };
366
314
  type: {
367
- writable: boolean;
368
315
  type: string;
369
316
  isKey: boolean;
317
+ writable: boolean;
370
318
  mandatory: boolean;
371
319
  collection: boolean;
372
320
  private?: boolean;
@@ -394,23 +342,23 @@ export class KeaService extends Service {
394
342
  env?: string[] | string;
395
343
  };
396
344
  cidrAddresses: {
397
- writable: boolean;
398
- collection: boolean;
399
345
  type: string;
400
346
  isKey: boolean;
347
+ writable: boolean;
401
348
  mandatory: boolean;
402
- private: boolean;
403
- depends: string;
404
- description: string;
405
- default: any;
406
- set: Function;
407
- get: Function;
408
- env: string[] | string;
349
+ collection: boolean;
350
+ private?: boolean;
351
+ depends?: string;
352
+ description?: string;
353
+ default?: any;
354
+ set?: Function;
355
+ get?: Function;
356
+ env?: string[] | string;
409
357
  };
410
358
  cidrAddress: {
411
- writable: boolean;
412
359
  type: string;
413
360
  isKey: boolean;
361
+ writable: boolean;
414
362
  mandatory: boolean;
415
363
  collection: boolean;
416
364
  private?: boolean;
@@ -422,23 +370,23 @@ export class KeaService extends Service {
422
370
  env?: string[] | string;
423
371
  };
424
372
  addresses: {
425
- writable: boolean;
426
- collection: boolean;
427
373
  type: string;
428
374
  isKey: boolean;
375
+ writable: boolean;
429
376
  mandatory: boolean;
430
- private: boolean;
431
- depends: string;
432
- description: string;
433
- default: any;
434
- set: Function;
435
- get: Function;
436
- env: string[] | string;
377
+ collection: boolean;
378
+ private?: boolean;
379
+ depends?: string;
380
+ description?: string;
381
+ default?: any;
382
+ set?: Function;
383
+ get?: Function;
384
+ env?: string[] | string;
437
385
  };
438
386
  address: {
439
- writable: boolean;
440
387
  type: string;
441
388
  isKey: boolean;
389
+ writable: boolean;
442
390
  mandatory: boolean;
443
391
  collection: boolean;
444
392
  private?: boolean;
@@ -15,20 +15,7 @@ export class MosquittoService extends Service {
15
15
  writable: boolean;
16
16
  };
17
17
  type: import("pacc").AttributeDefinition;
18
- name: {
19
- writable: boolean;
20
- type: string;
21
- isKey: boolean;
22
- mandatory: boolean;
23
- collection: boolean;
24
- private?: boolean;
25
- depends?: string;
26
- description?: string;
27
- default?: any;
28
- set?: Function;
29
- get?: Function;
30
- env?: string[] | string;
31
- };
18
+ name: import("pacc").AttributeDefinition;
32
19
  description: {
33
20
  writable: boolean;
34
21
  type: string;
@@ -58,20 +45,7 @@ export class MosquittoService extends Service {
58
45
  get?: Function;
59
46
  env?: string[] | string;
60
47
  };
61
- packaging: {
62
- writable: boolean;
63
- type: string;
64
- isKey: boolean;
65
- mandatory: boolean;
66
- collection: boolean;
67
- private?: boolean;
68
- depends?: string;
69
- description?: string;
70
- default?: any;
71
- set?: Function;
72
- get?: Function;
73
- env?: string[] | string;
74
- };
48
+ packaging: import("pacc").AttributeDefinition;
75
49
  disabled: import("pacc").AttributeDefinition;
76
50
  tags: import("pacc").AttributeDefinition;
77
51
  };
@@ -80,9 +54,9 @@ export class MosquittoService extends Service {
80
54
  factoryFor(owner: any, value: any): any;
81
55
  properties: {
82
56
  alias: {
83
- writable: boolean;
84
57
  type: string;
85
58
  isKey: boolean;
59
+ writable: boolean;
86
60
  mandatory: boolean;
87
61
  collection: boolean;
88
62
  private?: boolean;
@@ -123,10 +97,10 @@ export class MosquittoService extends Service {
123
97
  env?: string[] | string;
124
98
  };
125
99
  protocol: {
126
- writable: boolean;
127
100
  values: string[];
128
101
  type: string;
129
102
  isKey: boolean;
103
+ writable: boolean;
130
104
  mandatory: boolean;
131
105
  collection: boolean;
132
106
  private?: boolean;
@@ -138,9 +112,9 @@ export class MosquittoService extends Service {
138
112
  env?: string[] | string;
139
113
  };
140
114
  type: {
141
- writable: boolean;
142
115
  type: string;
143
116
  isKey: boolean;
117
+ writable: boolean;
144
118
  mandatory: boolean;
145
119
  collection: boolean;
146
120
  private?: boolean;
@@ -168,23 +142,23 @@ export class MosquittoService extends Service {
168
142
  env?: string[] | string;
169
143
  };
170
144
  cidrAddresses: {
171
- writable: boolean;
172
- collection: boolean;
173
145
  type: string;
174
146
  isKey: boolean;
147
+ writable: boolean;
175
148
  mandatory: boolean;
176
- private: boolean;
177
- depends: string;
178
- description: string;
179
- default: any;
180
- set: Function;
181
- get: Function;
182
- env: string[] | string;
149
+ collection: boolean;
150
+ private?: boolean;
151
+ depends?: string;
152
+ description?: string;
153
+ default?: any;
154
+ set?: Function;
155
+ get?: Function;
156
+ env?: string[] | string;
183
157
  };
184
158
  cidrAddress: {
185
- writable: boolean;
186
159
  type: string;
187
160
  isKey: boolean;
161
+ writable: boolean;
188
162
  mandatory: boolean;
189
163
  collection: boolean;
190
164
  private?: boolean;
@@ -196,23 +170,23 @@ export class MosquittoService extends Service {
196
170
  env?: string[] | string;
197
171
  };
198
172
  addresses: {
199
- writable: boolean;
200
- collection: boolean;
201
173
  type: string;
202
174
  isKey: boolean;
175
+ writable: boolean;
203
176
  mandatory: boolean;
204
- private: boolean;
205
- depends: string;
206
- description: string;
207
- default: any;
208
- set: Function;
209
- get: Function;
210
- env: string[] | string;
177
+ collection: boolean;
178
+ private?: boolean;
179
+ depends?: string;
180
+ description?: string;
181
+ default?: any;
182
+ set?: Function;
183
+ get?: Function;
184
+ env?: string[] | string;
211
185
  };
212
186
  address: {
213
- writable: boolean;
214
187
  type: string;
215
188
  isKey: boolean;
189
+ writable: boolean;
216
190
  mandatory: boolean;
217
191
  collection: boolean;
218
192
  private?: boolean;
@@ -240,20 +214,7 @@ export class MosquittoService extends Service {
240
214
  writable: boolean;
241
215
  };
242
216
  type: import("pacc").AttributeDefinition;
243
- name: {
244
- writable: boolean;
245
- type: string;
246
- isKey: boolean;
247
- mandatory: boolean;
248
- collection: boolean;
249
- private?: boolean;
250
- depends?: string;
251
- description?: string;
252
- default?: any;
253
- set?: Function;
254
- get?: Function;
255
- env?: string[] | string;
256
- };
217
+ name: import("pacc").AttributeDefinition;
257
218
  description: {
258
219
  writable: boolean;
259
220
  type: string;
@@ -283,20 +244,7 @@ export class MosquittoService extends Service {
283
244
  get?: Function;
284
245
  env?: string[] | string;
285
246
  };
286
- packaging: {
287
- writable: boolean;
288
- type: string;
289
- isKey: boolean;
290
- mandatory: boolean;
291
- collection: boolean;
292
- private?: boolean;
293
- depends?: string;
294
- description?: string;
295
- default?: any;
296
- set?: Function;
297
- get?: Function;
298
- env?: string[] | string;
299
- };
247
+ packaging: import("pacc").AttributeDefinition;
300
248
  disabled: import("pacc").AttributeDefinition;
301
249
  tags: import("pacc").AttributeDefinition;
302
250
  };
@@ -305,9 +253,9 @@ export class MosquittoService extends Service {
305
253
  factoryFor(owner: any, value: any): any;
306
254
  properties: {
307
255
  alias: {
308
- writable: boolean;
309
256
  type: string;
310
257
  isKey: boolean;
258
+ writable: boolean;
311
259
  mandatory: boolean;
312
260
  collection: boolean;
313
261
  private?: boolean;
@@ -348,10 +296,10 @@ export class MosquittoService extends Service {
348
296
  env?: string[] | string;
349
297
  };
350
298
  protocol: {
351
- writable: boolean;
352
299
  values: string[];
353
300
  type: string;
354
301
  isKey: boolean;
302
+ writable: boolean;
355
303
  mandatory: boolean;
356
304
  collection: boolean;
357
305
  private?: boolean;
@@ -363,9 +311,9 @@ export class MosquittoService extends Service {
363
311
  env?: string[] | string;
364
312
  };
365
313
  type: {
366
- writable: boolean;
367
314
  type: string;
368
315
  isKey: boolean;
316
+ writable: boolean;
369
317
  mandatory: boolean;
370
318
  collection: boolean;
371
319
  private?: boolean;
@@ -393,23 +341,23 @@ export class MosquittoService extends Service {
393
341
  env?: string[] | string;
394
342
  };
395
343
  cidrAddresses: {
396
- writable: boolean;
397
- collection: boolean;
398
344
  type: string;
399
345
  isKey: boolean;
346
+ writable: boolean;
400
347
  mandatory: boolean;
401
- private: boolean;
402
- depends: string;
403
- description: string;
404
- default: any;
405
- set: Function;
406
- get: Function;
407
- env: string[] | string;
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;
408
356
  };
409
357
  cidrAddress: {
410
- writable: boolean;
411
358
  type: string;
412
359
  isKey: boolean;
360
+ writable: boolean;
413
361
  mandatory: boolean;
414
362
  collection: boolean;
415
363
  private?: boolean;
@@ -421,23 +369,23 @@ export class MosquittoService extends Service {
421
369
  env?: string[] | string;
422
370
  };
423
371
  addresses: {
424
- writable: boolean;
425
- collection: boolean;
426
372
  type: string;
427
373
  isKey: boolean;
374
+ writable: boolean;
428
375
  mandatory: boolean;
429
- private: boolean;
430
- depends: string;
431
- description: string;
432
- default: any;
433
- set: Function;
434
- get: Function;
435
- env: string[] | string;
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;
436
384
  };
437
385
  address: {
438
- writable: boolean;
439
386
  type: string;
440
387
  isKey: boolean;
388
+ writable: boolean;
441
389
  mandatory: boolean;
442
390
  collection: boolean;
443
391
  private?: boolean;