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
package/types/root.d.mts CHANGED
@@ -19,20 +19,7 @@ export class Root extends Location {
19
19
  writable: boolean;
20
20
  };
21
21
  type: import("pacc").AttributeDefinition;
22
- name: {
23
- writable: boolean;
24
- type: string;
25
- isKey: boolean;
26
- mandatory: boolean;
27
- collection: boolean;
28
- private?: boolean;
29
- depends?: string;
30
- description?: string;
31
- default?: any;
32
- set?: Function;
33
- get?: Function;
34
- env?: string[] | string;
35
- };
22
+ name: import("pacc").AttributeDefinition;
36
23
  description: {
37
24
  writable: boolean;
38
25
  type: string;
@@ -62,20 +49,7 @@ export class Root extends Location {
62
49
  get?: Function;
63
50
  env?: string[] | string;
64
51
  };
65
- packaging: {
66
- writable: boolean;
67
- type: string;
68
- isKey: boolean;
69
- mandatory: boolean;
70
- collection: boolean;
71
- private?: boolean;
72
- depends?: string;
73
- description?: string;
74
- default?: any;
75
- set?: Function;
76
- get?: Function;
77
- env?: string[] | string;
78
- };
52
+ packaging: import("pacc").AttributeDefinition;
79
53
  disabled: import("pacc").AttributeDefinition;
80
54
  tags: import("pacc").AttributeDefinition;
81
55
  };
@@ -142,9 +116,9 @@ export class Root extends Location {
142
116
  writable: boolean;
143
117
  };
144
118
  country: {
145
- writable: boolean;
146
119
  type: string;
147
120
  isKey: boolean;
121
+ writable: boolean;
148
122
  mandatory: boolean;
149
123
  collection: boolean;
150
124
  private?: boolean;
@@ -156,9 +130,9 @@ export class Root extends Location {
156
130
  env?: string[] | string;
157
131
  };
158
132
  domain: {
159
- writable: boolean;
160
133
  type: string;
161
134
  isKey: boolean;
135
+ writable: boolean;
162
136
  mandatory: boolean;
163
137
  collection: boolean;
164
138
  private?: boolean;
@@ -170,23 +144,23 @@ export class Root extends Location {
170
144
  env?: string[] | string;
171
145
  };
172
146
  domains: {
173
- writable: boolean;
174
- collection: boolean;
175
147
  type: string;
176
148
  isKey: boolean;
149
+ writable: boolean;
177
150
  mandatory: boolean;
178
- private: boolean;
179
- depends: string;
180
- description: string;
181
- default: any;
182
- set: Function;
183
- get: Function;
184
- env: string[] | string;
151
+ collection: boolean;
152
+ private?: boolean;
153
+ depends?: string;
154
+ description?: string;
155
+ default?: any;
156
+ set?: Function;
157
+ get?: Function;
158
+ env?: string[] | string;
185
159
  };
186
160
  timezone: {
187
- writable: boolean;
188
161
  type: string;
189
162
  isKey: boolean;
163
+ writable: boolean;
190
164
  mandatory: boolean;
191
165
  collection: boolean;
192
166
  private?: boolean;
@@ -198,32 +172,32 @@ export class Root extends Location {
198
172
  env?: string[] | string;
199
173
  };
200
174
  architectures: {
201
- writable: boolean;
202
- collection: boolean;
203
175
  type: string;
204
176
  isKey: boolean;
177
+ writable: boolean;
205
178
  mandatory: boolean;
206
- private: boolean;
207
- depends: string;
208
- description: string;
209
- default: any;
210
- set: Function;
211
- get: Function;
212
- env: string[] | string;
179
+ collection: boolean;
180
+ private?: boolean;
181
+ depends?: string;
182
+ description?: string;
183
+ default?: any;
184
+ set?: Function;
185
+ get?: Function;
186
+ env?: string[] | string;
213
187
  };
214
188
  locales: {
215
- writable: boolean;
216
- collection: boolean;
217
189
  type: string;
218
190
  isKey: boolean;
191
+ writable: boolean;
219
192
  mandatory: boolean;
220
- private: boolean;
221
- depends: string;
222
- description: string;
223
- default: any;
224
- set: Function;
225
- get: Function;
226
- env: string[] | string;
193
+ collection: boolean;
194
+ private?: boolean;
195
+ depends?: string;
196
+ description?: string;
197
+ default?: any;
198
+ set?: Function;
199
+ get?: Function;
200
+ env?: string[] | string;
227
201
  };
228
202
  administratorEmail: {
229
203
  writable: boolean;
@@ -256,20 +230,7 @@ export class Root extends Location {
256
230
  writable: boolean;
257
231
  };
258
232
  type: import("pacc").AttributeDefinition;
259
- name: {
260
- writable: boolean;
261
- type: string;
262
- isKey: boolean;
263
- mandatory: boolean;
264
- collection: boolean;
265
- private?: boolean;
266
- depends?: string;
267
- description?: string;
268
- default?: any;
269
- set?: Function;
270
- get?: Function;
271
- env?: string[] | string;
272
- };
233
+ name: import("pacc").AttributeDefinition;
273
234
  description: {
274
235
  writable: boolean;
275
236
  type: string;
@@ -299,20 +260,7 @@ export class Root extends Location {
299
260
  get?: Function;
300
261
  env?: string[] | string;
301
262
  };
302
- packaging: {
303
- writable: boolean;
304
- type: string;
305
- isKey: boolean;
306
- mandatory: boolean;
307
- collection: boolean;
308
- private?: boolean;
309
- depends?: string;
310
- description?: string;
311
- default?: any;
312
- set?: Function;
313
- get?: Function;
314
- env?: string[] | string;
315
- };
263
+ packaging: import("pacc").AttributeDefinition;
316
264
  disabled: import("pacc").AttributeDefinition;
317
265
  tags: import("pacc").AttributeDefinition;
318
266
  };
@@ -379,9 +327,9 @@ export class Root extends Location {
379
327
  writable: boolean;
380
328
  };
381
329
  country: {
382
- writable: boolean;
383
330
  type: string;
384
331
  isKey: boolean;
332
+ writable: boolean;
385
333
  mandatory: boolean;
386
334
  collection: boolean;
387
335
  private?: boolean;
@@ -393,9 +341,9 @@ export class Root extends Location {
393
341
  env?: string[] | string;
394
342
  };
395
343
  domain: {
396
- writable: boolean;
397
344
  type: string;
398
345
  isKey: boolean;
346
+ writable: boolean;
399
347
  mandatory: boolean;
400
348
  collection: boolean;
401
349
  private?: boolean;
@@ -407,23 +355,23 @@ export class Root extends Location {
407
355
  env?: string[] | string;
408
356
  };
409
357
  domains: {
410
- writable: boolean;
411
- collection: boolean;
412
358
  type: string;
413
359
  isKey: boolean;
360
+ writable: boolean;
414
361
  mandatory: boolean;
415
- private: boolean;
416
- depends: string;
417
- description: string;
418
- default: any;
419
- set: Function;
420
- get: Function;
421
- env: string[] | string;
362
+ collection: boolean;
363
+ private?: boolean;
364
+ depends?: string;
365
+ description?: string;
366
+ default?: any;
367
+ set?: Function;
368
+ get?: Function;
369
+ env?: string[] | string;
422
370
  };
423
371
  timezone: {
424
- writable: boolean;
425
372
  type: string;
426
373
  isKey: boolean;
374
+ writable: boolean;
427
375
  mandatory: boolean;
428
376
  collection: boolean;
429
377
  private?: boolean;
@@ -435,32 +383,32 @@ export class Root extends Location {
435
383
  env?: string[] | string;
436
384
  };
437
385
  architectures: {
438
- writable: boolean;
439
- collection: boolean;
440
386
  type: string;
441
387
  isKey: boolean;
388
+ writable: boolean;
442
389
  mandatory: boolean;
443
- private: boolean;
444
- depends: string;
445
- description: string;
446
- default: any;
447
- set: Function;
448
- get: Function;
449
- env: string[] | string;
390
+ collection: boolean;
391
+ private?: boolean;
392
+ depends?: string;
393
+ description?: string;
394
+ default?: any;
395
+ set?: Function;
396
+ get?: Function;
397
+ env?: string[] | string;
450
398
  };
451
399
  locales: {
452
- writable: boolean;
453
- collection: boolean;
454
400
  type: string;
455
401
  isKey: boolean;
402
+ writable: boolean;
456
403
  mandatory: boolean;
457
- private: boolean;
458
- depends: string;
459
- description: string;
460
- default: any;
461
- set: Function;
462
- get: Function;
463
- env: string[] | string;
404
+ collection: boolean;
405
+ private?: boolean;
406
+ depends?: string;
407
+ description?: string;
408
+ default?: any;
409
+ set?: Function;
410
+ get?: Function;
411
+ env?: string[] | string;
464
412
  };
465
413
  administratorEmail: {
466
414
  writable: boolean;
@@ -32,10 +32,10 @@ export namespace endpointProperties {
32
32
  env?: string[] | string;
33
33
  };
34
34
  export let protocol: {
35
- writable: boolean;
36
35
  values: string[];
37
36
  type: string;
38
37
  isKey: boolean;
38
+ writable: boolean;
39
39
  mandatory: boolean;
40
40
  collection: boolean;
41
41
  private?: boolean;
@@ -47,9 +47,9 @@ export namespace endpointProperties {
47
47
  env?: string[] | string;
48
48
  };
49
49
  export let type: {
50
- writable: boolean;
51
50
  type: string;
52
51
  isKey: boolean;
52
+ writable: boolean;
53
53
  mandatory: boolean;
54
54
  collection: boolean;
55
55
  private?: boolean;
@@ -87,20 +87,7 @@ export namespace ServiceTypeDefinition {
87
87
  writable: boolean;
88
88
  };
89
89
  type: import("pacc").AttributeDefinition;
90
- name: {
91
- writable: boolean;
92
- type: string;
93
- isKey: boolean;
94
- mandatory: boolean;
95
- collection: boolean;
96
- private?: boolean;
97
- depends?: string;
98
- description?: string;
99
- default?: any;
100
- set?: Function;
101
- get?: Function;
102
- env?: string[] | string;
103
- };
90
+ name: import("pacc").AttributeDefinition;
104
91
  description: {
105
92
  writable: boolean;
106
93
  type: string;
@@ -130,20 +117,7 @@ export namespace ServiceTypeDefinition {
130
117
  get?: Function;
131
118
  env?: string[] | string;
132
119
  };
133
- packaging: {
134
- writable: boolean;
135
- type: string;
136
- isKey: boolean;
137
- mandatory: boolean;
138
- collection: boolean;
139
- private?: boolean;
140
- depends?: string;
141
- description?: string;
142
- default?: any;
143
- set?: Function;
144
- get?: Function;
145
- env?: string[] | string;
146
- };
120
+ packaging: import("pacc").AttributeDefinition;
147
121
  disabled: import("pacc").AttributeDefinition;
148
122
  tags: import("pacc").AttributeDefinition;
149
123
  };
@@ -154,9 +128,9 @@ export namespace ServiceTypeDefinition {
154
128
  export function factoryFor(owner: any, value: any): any;
155
129
  export let properties: {
156
130
  alias: {
157
- writable: boolean;
158
131
  type: string;
159
132
  isKey: boolean;
133
+ writable: boolean;
160
134
  mandatory: boolean;
161
135
  collection: boolean;
162
136
  private?: boolean;
@@ -197,10 +171,10 @@ export namespace ServiceTypeDefinition {
197
171
  env?: string[] | string;
198
172
  };
199
173
  protocol: {
200
- writable: boolean;
201
174
  values: string[];
202
175
  type: string;
203
176
  isKey: boolean;
177
+ writable: boolean;
204
178
  mandatory: boolean;
205
179
  collection: boolean;
206
180
  private?: boolean;
@@ -212,9 +186,9 @@ export namespace ServiceTypeDefinition {
212
186
  env?: string[] | string;
213
187
  };
214
188
  type: {
215
- writable: boolean;
216
189
  type: string;
217
190
  isKey: boolean;
191
+ writable: boolean;
218
192
  mandatory: boolean;
219
193
  collection: boolean;
220
194
  private?: boolean;
@@ -242,23 +216,23 @@ export namespace ServiceTypeDefinition {
242
216
  env?: string[] | string;
243
217
  };
244
218
  cidrAddresses: {
245
- writable: boolean;
246
- collection: boolean;
247
219
  type: string;
248
220
  isKey: boolean;
221
+ writable: boolean;
249
222
  mandatory: boolean;
250
- private: boolean;
251
- depends: string;
252
- description: string;
253
- default: any;
254
- set: Function;
255
- get: Function;
256
- env: string[] | string;
223
+ collection: boolean;
224
+ private?: boolean;
225
+ depends?: string;
226
+ description?: string;
227
+ default?: any;
228
+ set?: Function;
229
+ get?: Function;
230
+ env?: string[] | string;
257
231
  };
258
232
  cidrAddress: {
259
- writable: boolean;
260
233
  type: string;
261
234
  isKey: boolean;
235
+ writable: boolean;
262
236
  mandatory: boolean;
263
237
  collection: boolean;
264
238
  private?: boolean;
@@ -270,23 +244,23 @@ export namespace ServiceTypeDefinition {
270
244
  env?: string[] | string;
271
245
  };
272
246
  addresses: {
273
- writable: boolean;
274
- collection: boolean;
275
247
  type: string;
276
248
  isKey: boolean;
249
+ writable: boolean;
277
250
  mandatory: boolean;
278
- private: boolean;
279
- depends: string;
280
- description: string;
281
- default: any;
282
- set: Function;
283
- get: Function;
284
- env: string[] | string;
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;
285
259
  };
286
260
  address: {
287
- writable: boolean;
288
261
  type: string;
289
262
  isKey: boolean;
263
+ writable: boolean;
290
264
  mandatory: boolean;
291
265
  collection: boolean;
292
266
  private?: boolean;
@@ -314,20 +288,7 @@ export class Service extends Base {
314
288
  writable: boolean;
315
289
  };
316
290
  type: import("pacc").AttributeDefinition;
317
- name: {
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
- };
291
+ name: import("pacc").AttributeDefinition;
331
292
  description: {
332
293
  writable: boolean;
333
294
  type: string;
@@ -357,20 +318,7 @@ export class Service extends Base {
357
318
  get?: Function;
358
319
  env?: string[] | string;
359
320
  };
360
- packaging: {
361
- writable: boolean;
362
- type: string;
363
- isKey: boolean;
364
- mandatory: boolean;
365
- collection: boolean;
366
- private?: boolean;
367
- depends?: string;
368
- description?: string;
369
- default?: any;
370
- set?: Function;
371
- get?: Function;
372
- env?: string[] | string;
373
- };
321
+ packaging: import("pacc").AttributeDefinition;
374
322
  disabled: import("pacc").AttributeDefinition;
375
323
  tags: import("pacc").AttributeDefinition;
376
324
  };
@@ -379,9 +327,9 @@ export class Service extends Base {
379
327
  factoryFor(owner: any, value: any): any;
380
328
  properties: {
381
329
  alias: {
382
- writable: boolean;
383
330
  type: string;
384
331
  isKey: boolean;
332
+ writable: boolean;
385
333
  mandatory: boolean;
386
334
  collection: boolean;
387
335
  private?: boolean;
@@ -422,10 +370,10 @@ export class Service extends Base {
422
370
  env?: string[] | string;
423
371
  };
424
372
  protocol: {
425
- writable: boolean;
426
373
  values: string[];
427
374
  type: string;
428
375
  isKey: boolean;
376
+ writable: boolean;
429
377
  mandatory: boolean;
430
378
  collection: boolean;
431
379
  private?: boolean;
@@ -437,9 +385,9 @@ export class Service extends Base {
437
385
  env?: string[] | string;
438
386
  };
439
387
  type: {
440
- writable: boolean;
441
388
  type: string;
442
389
  isKey: boolean;
390
+ writable: boolean;
443
391
  mandatory: boolean;
444
392
  collection: boolean;
445
393
  private?: boolean;
@@ -467,23 +415,23 @@ export class Service extends Base {
467
415
  env?: string[] | string;
468
416
  };
469
417
  cidrAddresses: {
470
- writable: boolean;
471
- collection: boolean;
472
418
  type: string;
473
419
  isKey: boolean;
420
+ writable: boolean;
474
421
  mandatory: boolean;
475
- private: boolean;
476
- depends: string;
477
- description: string;
478
- default: any;
479
- set: Function;
480
- get: Function;
481
- env: string[] | string;
422
+ collection: boolean;
423
+ private?: boolean;
424
+ depends?: string;
425
+ description?: string;
426
+ default?: any;
427
+ set?: Function;
428
+ get?: Function;
429
+ env?: string[] | string;
482
430
  };
483
431
  cidrAddress: {
484
- writable: boolean;
485
432
  type: string;
486
433
  isKey: boolean;
434
+ writable: boolean;
487
435
  mandatory: boolean;
488
436
  collection: boolean;
489
437
  private?: boolean;
@@ -495,23 +443,23 @@ export class Service extends Base {
495
443
  env?: string[] | string;
496
444
  };
497
445
  addresses: {
498
- writable: boolean;
499
- collection: boolean;
500
446
  type: string;
501
447
  isKey: boolean;
448
+ writable: boolean;
502
449
  mandatory: boolean;
503
- private: boolean;
504
- depends: string;
505
- description: string;
506
- default: any;
507
- set: Function;
508
- get: Function;
509
- env: string[] | string;
450
+ collection: boolean;
451
+ private?: boolean;
452
+ depends?: string;
453
+ description?: string;
454
+ default?: any;
455
+ set?: Function;
456
+ get?: Function;
457
+ env?: string[] | string;
510
458
  };
511
459
  address: {
512
- writable: boolean;
513
460
  type: string;
514
461
  isKey: boolean;
462
+ writable: boolean;
515
463
  mandatory: boolean;
516
464
  collection: boolean;
517
465
  private?: boolean;