pmcf 3.10.15 → 3.10.17

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 +2 -2
  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
@@ -31,20 +31,7 @@ export class Cluster extends Host {
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;
@@ -73,142 +60,25 @@ export class Cluster extends Host {
73
60
  priority: number;
74
61
  constructWithIdentifierOnly: boolean;
75
62
  attributes: {
76
- address: {
77
- isKey: boolean;
78
- type: string;
79
- writable: boolean;
80
- mandatory: boolean;
81
- collection: boolean;
82
- private?: boolean;
83
- depends?: string;
84
- description?: string;
85
- default?: any;
86
- set?: Function;
87
- get?: Function;
88
- env?: string[] | string;
89
- };
63
+ address: import("pacc").AttributeDefinition;
90
64
  networks: {
91
65
  type: string;
92
66
  collection: boolean;
93
67
  writable: boolean;
94
68
  };
95
- prefixLength: {
96
- type: string;
97
- isKey: boolean;
98
- writable: boolean;
99
- mandatory: boolean;
100
- collection: boolean;
101
- private?: boolean;
102
- depends?: string;
103
- description?: string;
104
- default?: any;
105
- set?: Function;
106
- get?: Function;
107
- env?: string[] | string;
108
- };
109
- family: {
110
- type: string;
111
- isKey: boolean;
112
- writable: boolean;
113
- mandatory: boolean;
114
- collection: boolean;
115
- private?: boolean;
116
- depends?: string;
117
- description?: string;
118
- default?: any;
119
- set?: Function;
120
- get?: Function;
121
- env?: string[] | string;
122
- };
69
+ prefixLength: import("pacc").AttributeDefinition;
70
+ family: import("pacc").AttributeDefinition;
123
71
  };
124
72
  };
125
73
  collection: boolean;
126
74
  writable: boolean;
127
75
  };
128
- country: {
129
- type: string;
130
- isKey: boolean;
131
- writable: boolean;
132
- mandatory: boolean;
133
- collection: boolean;
134
- private?: boolean;
135
- depends?: string;
136
- description?: string;
137
- default?: any;
138
- set?: Function;
139
- get?: Function;
140
- env?: string[] | string;
141
- };
142
- domain: {
143
- type: string;
144
- isKey: boolean;
145
- writable: boolean;
146
- mandatory: boolean;
147
- collection: boolean;
148
- private?: boolean;
149
- depends?: string;
150
- description?: string;
151
- default?: any;
152
- set?: Function;
153
- get?: Function;
154
- env?: string[] | string;
155
- };
156
- domains: {
157
- type: string;
158
- isKey: boolean;
159
- writable: boolean;
160
- mandatory: boolean;
161
- collection: boolean;
162
- private?: boolean;
163
- depends?: string;
164
- description?: string;
165
- default?: any;
166
- set?: Function;
167
- get?: Function;
168
- env?: string[] | string;
169
- };
170
- timezone: {
171
- type: string;
172
- isKey: boolean;
173
- writable: boolean;
174
- mandatory: boolean;
175
- collection: boolean;
176
- private?: boolean;
177
- depends?: string;
178
- description?: string;
179
- default?: any;
180
- set?: Function;
181
- get?: Function;
182
- env?: string[] | string;
183
- };
184
- architectures: {
185
- type: string;
186
- isKey: boolean;
187
- writable: boolean;
188
- mandatory: boolean;
189
- collection: boolean;
190
- private?: boolean;
191
- depends?: string;
192
- description?: string;
193
- default?: any;
194
- set?: Function;
195
- get?: Function;
196
- env?: string[] | string;
197
- };
198
- locales: {
199
- type: string;
200
- isKey: boolean;
201
- writable: boolean;
202
- mandatory: boolean;
203
- collection: boolean;
204
- private?: boolean;
205
- depends?: string;
206
- description?: string;
207
- default?: any;
208
- set?: Function;
209
- get?: Function;
210
- env?: string[] | string;
211
- };
76
+ country: import("pacc").AttributeDefinition;
77
+ domain: import("pacc").AttributeDefinition;
78
+ domains: import("pacc").AttributeDefinition;
79
+ timezone: import("pacc").AttributeDefinition;
80
+ architectures: import("pacc").AttributeDefinition;
81
+ locales: import("pacc").AttributeDefinition;
212
82
  administratorEmail: {
213
83
  writable: boolean;
214
84
  type: string;
@@ -256,20 +126,7 @@ export class Cluster extends Host {
256
126
  env?: string[] | string;
257
127
  };
258
128
  priority: import("pacc").AttributeDefinition;
259
- directory: {
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
- };
129
+ directory: import("pacc").AttributeDefinition;
273
130
  packaging: import("pacc").AttributeDefinition;
274
131
  disabled: import("pacc").AttributeDefinition;
275
132
  tags: import("pacc").AttributeDefinition;
@@ -286,20 +143,7 @@ export class Cluster extends Host {
286
143
  collection: boolean;
287
144
  writable: boolean;
288
145
  };
289
- aliases: {
290
- type: string;
291
- isKey: boolean;
292
- writable: 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
- };
146
+ aliases: import("pacc").AttributeDefinition;
303
147
  os: {
304
148
  values: string[];
305
149
  type: string;
@@ -315,34 +159,8 @@ export class Cluster extends Host {
315
159
  get?: Function;
316
160
  env?: string[] | string;
317
161
  };
318
- "machine-id": {
319
- type: string;
320
- isKey: boolean;
321
- writable: boolean;
322
- mandatory: boolean;
323
- collection: boolean;
324
- private?: boolean;
325
- depends?: string;
326
- description?: string;
327
- default?: any;
328
- set?: Function;
329
- get?: Function;
330
- env?: string[] | string;
331
- };
332
- distribution: {
333
- type: string;
334
- isKey: boolean;
335
- writable: boolean;
336
- mandatory: boolean;
337
- collection: boolean;
338
- private?: boolean;
339
- depends?: string;
340
- description?: string;
341
- default?: any;
342
- set?: Function;
343
- get?: Function;
344
- env?: string[] | string;
345
- };
162
+ "machine-id": import("pacc").AttributeDefinition;
163
+ distribution: import("pacc").AttributeDefinition;
346
164
  deployment: {
347
165
  values: string[];
348
166
  type: string;
@@ -358,62 +176,10 @@ export class Cluster extends Host {
358
176
  get?: Function;
359
177
  env?: string[] | string;
360
178
  };
361
- weight: {
362
- type: string;
363
- isKey: boolean;
364
- writable: boolean;
365
- mandatory: boolean;
366
- collection: boolean;
367
- private?: boolean;
368
- depends?: string;
369
- description?: string;
370
- default?: any;
371
- set?: Function;
372
- get?: Function;
373
- env?: string[] | string;
374
- };
375
- serial: {
376
- type: string;
377
- isKey: boolean;
378
- writable: boolean;
379
- mandatory: boolean;
380
- collection: boolean;
381
- private?: boolean;
382
- depends?: string;
383
- description?: string;
384
- default?: any;
385
- set?: Function;
386
- get?: Function;
387
- env?: string[] | string;
388
- };
389
- vendor: {
390
- type: string;
391
- isKey: boolean;
392
- writable: boolean;
393
- mandatory: boolean;
394
- collection: boolean;
395
- private?: boolean;
396
- depends?: string;
397
- description?: string;
398
- default?: any;
399
- set?: Function;
400
- get?: Function;
401
- env?: string[] | string;
402
- };
403
- keymap: {
404
- type: string;
405
- isKey: boolean;
406
- writable: boolean;
407
- mandatory: boolean;
408
- collection: boolean;
409
- private?: boolean;
410
- depends?: string;
411
- description?: string;
412
- default?: any;
413
- set?: Function;
414
- get?: Function;
415
- env?: string[] | string;
416
- };
179
+ weight: import("pacc").AttributeDefinition;
180
+ serial: import("pacc").AttributeDefinition;
181
+ vendor: import("pacc").AttributeDefinition;
182
+ keymap: import("pacc").AttributeDefinition;
417
183
  chassis: {
418
184
  values: string[];
419
185
  type: string;
@@ -444,48 +210,9 @@ export class Cluster extends Host {
444
210
  get?: Function;
445
211
  env?: string[] | string;
446
212
  };
447
- replaces: {
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
- };
461
- depends: {
462
- type: string;
463
- isKey: boolean;
464
- writable: boolean;
465
- mandatory: boolean;
466
- collection: boolean;
467
- private?: boolean;
468
- depends?: string;
469
- description?: string;
470
- default?: any;
471
- set?: Function;
472
- get?: Function;
473
- env?: string[] | string;
474
- };
475
- provides: {
476
- type: string;
477
- isKey: boolean;
478
- writable: boolean;
479
- mandatory: boolean;
480
- collection: boolean;
481
- private?: boolean;
482
- depends?: string;
483
- description?: string;
484
- default?: any;
485
- set?: Function;
486
- get?: Function;
487
- env?: string[] | string;
488
- };
213
+ replaces: import("pacc").AttributeDefinition;
214
+ depends: import("pacc").AttributeDefinition;
215
+ provides: import("pacc").AttributeDefinition;
489
216
  extends: {
490
217
  type: string;
491
218
  collection: boolean;
@@ -507,79 +234,14 @@ export class Cluster extends Host {
507
234
  get?: Function;
508
235
  env?: string[] | string;
509
236
  };
510
- cidrAddresses: {
511
- type: string;
512
- isKey: boolean;
513
- writable: boolean;
514
- mandatory: boolean;
515
- collection: boolean;
516
- private?: boolean;
517
- depends?: string;
518
- description?: string;
519
- default?: any;
520
- set?: Function;
521
- get?: Function;
522
- env?: string[] | string;
523
- };
524
- cidrAddress: {
525
- type: string;
526
- isKey: boolean;
527
- writable: boolean;
528
- mandatory: boolean;
529
- collection: boolean;
530
- private?: boolean;
531
- depends?: string;
532
- description?: string;
533
- default?: any;
534
- set?: Function;
535
- get?: Function;
536
- env?: string[] | string;
537
- };
538
- addresses: {
539
- type: string;
540
- isKey: boolean;
541
- writable: boolean;
542
- mandatory: boolean;
543
- collection: boolean;
544
- private?: boolean;
545
- depends?: string;
546
- description?: string;
547
- default?: any;
548
- set?: Function;
549
- get?: Function;
550
- env?: string[] | string;
551
- };
552
- address: {
553
- type: string;
554
- isKey: boolean;
555
- writable: boolean;
556
- mandatory: boolean;
557
- collection: boolean;
558
- private?: boolean;
559
- depends?: string;
560
- description?: string;
561
- default?: any;
562
- set?: Function;
563
- get?: Function;
564
- env?: string[] | string;
565
- };
237
+ cidrAddresses: import("pacc").AttributeDefinition;
238
+ cidrAddress: import("pacc").AttributeDefinition;
239
+ addresses: import("pacc").AttributeDefinition;
240
+ address: import("pacc").AttributeDefinition;
566
241
  };
567
242
  };
568
243
  attributes: {
569
- routerId: {
570
- type: string;
571
- isKey: boolean;
572
- writable: boolean;
573
- mandatory: boolean;
574
- collection: boolean;
575
- private?: boolean;
576
- depends?: string;
577
- description?: string;
578
- default?: any;
579
- set?: Function;
580
- get?: Function;
581
- env?: string[] | string;
582
- };
244
+ routerId: import("pacc").AttributeDefinition;
583
245
  masters: {
584
246
  type: string;
585
247
  collection: boolean;
@@ -595,20 +257,7 @@ export class Cluster extends Host {
595
257
  collection: boolean;
596
258
  writable: boolean;
597
259
  };
598
- checkInterval: {
599
- type: string;
600
- isKey: boolean;
601
- writable: boolean;
602
- mandatory: boolean;
603
- collection: boolean;
604
- private?: boolean;
605
- depends?: string;
606
- description?: string;
607
- default?: any;
608
- set?: Function;
609
- get?: Function;
610
- env?: string[] | string;
611
- };
260
+ checkInterval: import("pacc").AttributeDefinition;
612
261
  };
613
262
  };
614
263
  _masters: any[];
@@ -45,20 +45,7 @@ export class ExtraSourceService extends Service {
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;
@@ -67,20 +54,7 @@ export class ExtraSourceService extends Service {
67
54
  specializations: {};
68
55
  factoryFor(owner: any, value: any): any;
69
56
  attributes: {
70
- alias: {
71
- type: string;
72
- isKey: boolean;
73
- writable: boolean;
74
- mandatory: boolean;
75
- collection: boolean;
76
- private?: boolean;
77
- depends?: string;
78
- description?: string;
79
- default?: any;
80
- set?: Function;
81
- get?: Function;
82
- env?: string[] | string;
83
- };
57
+ alias: import("pacc").AttributeDefinition;
84
58
  weight: {
85
59
  type: string;
86
60
  isKey: boolean;
@@ -96,20 +70,7 @@ export class ExtraSourceService extends Service {
96
70
  env?: string[] | string;
97
71
  };
98
72
  systemd: import("pacc").AttributeDefinition;
99
- port: {
100
- type: string;
101
- isKey: boolean;
102
- writable: boolean;
103
- mandatory: boolean;
104
- collection: boolean;
105
- private?: boolean;
106
- depends?: string;
107
- description?: string;
108
- default?: any;
109
- set?: Function;
110
- get?: Function;
111
- env?: string[] | string;
112
- };
73
+ port: import("pacc").AttributeDefinition;
113
74
  protocol: {
114
75
  values: string[];
115
76
  type: string;
@@ -125,20 +86,7 @@ export class ExtraSourceService extends Service {
125
86
  get?: Function;
126
87
  env?: string[] | string;
127
88
  };
128
- type: {
129
- type: string;
130
- isKey: boolean;
131
- writable: boolean;
132
- mandatory: boolean;
133
- collection: boolean;
134
- private?: boolean;
135
- depends?: string;
136
- description?: string;
137
- default?: any;
138
- set?: Function;
139
- get?: Function;
140
- env?: string[] | string;
141
- };
89
+ type: import("pacc").AttributeDefinition;
142
90
  types: typeof import("pacc").string_collection_attribute;
143
91
  tls: import("pacc").AttributeDefinition;
144
92
  hostName: {
@@ -155,62 +103,10 @@ export class ExtraSourceService extends Service {
155
103
  get?: Function;
156
104
  env?: string[] | string;
157
105
  };
158
- cidrAddresses: {
159
- type: string;
160
- isKey: boolean;
161
- writable: boolean;
162
- mandatory: boolean;
163
- collection: boolean;
164
- private?: boolean;
165
- depends?: string;
166
- description?: string;
167
- default?: any;
168
- set?: Function;
169
- get?: Function;
170
- env?: string[] | string;
171
- };
172
- cidrAddress: {
173
- type: string;
174
- isKey: boolean;
175
- writable: boolean;
176
- mandatory: boolean;
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;
185
- };
186
- addresses: {
187
- type: string;
188
- isKey: boolean;
189
- writable: boolean;
190
- mandatory: boolean;
191
- collection: boolean;
192
- private?: boolean;
193
- depends?: string;
194
- description?: string;
195
- default?: any;
196
- set?: Function;
197
- get?: Function;
198
- env?: string[] | string;
199
- };
200
- address: {
201
- type: string;
202
- isKey: boolean;
203
- writable: boolean;
204
- mandatory: boolean;
205
- collection: boolean;
206
- private?: boolean;
207
- depends?: string;
208
- description?: string;
209
- default?: any;
210
- set?: Function;
211
- get?: Function;
212
- env?: string[] | string;
213
- };
106
+ cidrAddresses: import("pacc").AttributeDefinition;
107
+ cidrAddress: import("pacc").AttributeDefinition;
108
+ addresses: import("pacc").AttributeDefinition;
109
+ address: import("pacc").AttributeDefinition;
214
110
  };
215
111
  };
216
112
  priority: number;