pmcf 3.8.9 → 3.8.11

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
@@ -15,20 +15,7 @@ export class HeadscaleService extends ExtraSourceService {
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 HeadscaleService extends ExtraSourceService {
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 HeadscaleService extends ExtraSourceService {
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 HeadscaleService extends ExtraSourceService {
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 HeadscaleService extends ExtraSourceService {
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 HeadscaleService extends ExtraSourceService {
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 HeadscaleService extends ExtraSourceService {
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;
@@ -243,20 +217,7 @@ export class HeadscaleService extends ExtraSourceService {
243
217
  writable: boolean;
244
218
  };
245
219
  type: import("pacc").AttributeDefinition;
246
- name: {
247
- writable: boolean;
248
- type: string;
249
- isKey: boolean;
250
- mandatory: boolean;
251
- collection: boolean;
252
- private?: boolean;
253
- depends?: string;
254
- description?: string;
255
- default?: any;
256
- set?: Function;
257
- get?: Function;
258
- env?: string[] | string;
259
- };
220
+ name: import("pacc").AttributeDefinition;
260
221
  description: {
261
222
  writable: boolean;
262
223
  type: string;
@@ -286,20 +247,7 @@ export class HeadscaleService extends ExtraSourceService {
286
247
  get?: Function;
287
248
  env?: string[] | string;
288
249
  };
289
- packaging: {
290
- writable: boolean;
291
- type: string;
292
- isKey: boolean;
293
- mandatory: boolean;
294
- collection: boolean;
295
- private?: boolean;
296
- depends?: string;
297
- description?: string;
298
- default?: any;
299
- set?: Function;
300
- get?: Function;
301
- env?: string[] | string;
302
- };
250
+ packaging: import("pacc").AttributeDefinition;
303
251
  disabled: import("pacc").AttributeDefinition;
304
252
  tags: import("pacc").AttributeDefinition;
305
253
  };
@@ -308,9 +256,9 @@ export class HeadscaleService extends ExtraSourceService {
308
256
  factoryFor(owner: any, value: any): any;
309
257
  properties: {
310
258
  alias: {
311
- writable: boolean;
312
259
  type: string;
313
260
  isKey: boolean;
261
+ writable: boolean;
314
262
  mandatory: boolean;
315
263
  collection: boolean;
316
264
  private?: boolean;
@@ -351,10 +299,10 @@ export class HeadscaleService extends ExtraSourceService {
351
299
  env?: string[] | string;
352
300
  };
353
301
  protocol: {
354
- writable: boolean;
355
302
  values: string[];
356
303
  type: string;
357
304
  isKey: boolean;
305
+ writable: boolean;
358
306
  mandatory: boolean;
359
307
  collection: boolean;
360
308
  private?: boolean;
@@ -366,9 +314,9 @@ export class HeadscaleService extends ExtraSourceService {
366
314
  env?: string[] | string;
367
315
  };
368
316
  type: {
369
- writable: boolean;
370
317
  type: string;
371
318
  isKey: boolean;
319
+ writable: boolean;
372
320
  mandatory: boolean;
373
321
  collection: boolean;
374
322
  private?: boolean;
@@ -396,23 +344,23 @@ export class HeadscaleService extends ExtraSourceService {
396
344
  env?: string[] | string;
397
345
  };
398
346
  cidrAddresses: {
399
- writable: boolean;
400
- collection: boolean;
401
347
  type: string;
402
348
  isKey: boolean;
349
+ writable: boolean;
403
350
  mandatory: boolean;
404
- private: boolean;
405
- depends: string;
406
- description: string;
407
- default: any;
408
- set: Function;
409
- get: Function;
410
- env: string[] | string;
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;
411
359
  };
412
360
  cidrAddress: {
413
- writable: boolean;
414
361
  type: string;
415
362
  isKey: boolean;
363
+ writable: boolean;
416
364
  mandatory: boolean;
417
365
  collection: boolean;
418
366
  private?: boolean;
@@ -424,23 +372,23 @@ export class HeadscaleService extends ExtraSourceService {
424
372
  env?: string[] | string;
425
373
  };
426
374
  addresses: {
427
- writable: boolean;
428
- collection: boolean;
429
375
  type: string;
430
376
  isKey: boolean;
377
+ writable: boolean;
431
378
  mandatory: boolean;
432
- private: boolean;
433
- depends: string;
434
- description: string;
435
- default: any;
436
- set: Function;
437
- get: Function;
438
- env: string[] | string;
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;
439
387
  };
440
388
  address: {
441
- writable: boolean;
442
389
  type: string;
443
390
  isKey: boolean;
391
+ writable: boolean;
444
392
  mandatory: boolean;
445
393
  collection: boolean;
446
394
  private?: boolean;
@@ -15,20 +15,7 @@ export class InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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;