pmcf 2.74.1 → 2.74.2
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.
- package/package.json +1 -1
- package/src/host.mjs +4 -4
- package/src/location.mjs +2 -1
- package/src/network-interfaces/network-interface.mjs +5 -4
- package/src/network-support.mjs +14 -17
- package/src/owner.mjs +4 -4
- package/src/service.mjs +7 -9
- package/types/cluster.d.mts +156 -13
- package/types/extra-source-service.d.mts +121 -13
- package/types/host.d.mts +108 -9
- package/types/location.d.mts +108 -9
- package/types/network-interfaces/ethernet.d.mts +340 -36
- package/types/network-interfaces/loopback.d.mts +340 -36
- package/types/network-interfaces/network-interface.d.mts +340 -36
- package/types/network-interfaces/wireguard.d.mts +340 -36
- package/types/network-interfaces/wlan.d.mts +510 -54
- package/types/network-support.d.mts +186 -104
- package/types/network.d.mts +122 -14
- package/types/owner.d.mts +48 -4
- package/types/root.d.mts +108 -9
- package/types/service.d.mts +307 -62
- package/types/services/bind.d.mts +242 -26
- package/types/services/chrony.d.mts +242 -26
- package/types/services/influxdb.d.mts +242 -26
- package/types/services/kea.d.mts +242 -26
- package/types/services/mosquitto.d.mts +242 -26
- package/types/services/openldap.d.mts +242 -26
- package/types/services/systemd-journal-remote.d.mts +242 -26
- package/types/services/systemd-journal-upload.d.mts +242 -26
- package/types/services/systemd-journal.d.mts +242 -26
- package/types/services/systemd-resolved.d.mts +242 -26
- package/types/services/systemd-timesyncd.d.mts +242 -26
package/types/services/kea.d.mts
CHANGED
|
@@ -107,9 +107,20 @@ export class KeaService extends Service {
|
|
|
107
107
|
factoryFor(owner: any, value: any): any;
|
|
108
108
|
properties: {
|
|
109
109
|
alias: {
|
|
110
|
+
writeable: boolean;
|
|
110
111
|
type: string;
|
|
112
|
+
isKey: boolean;
|
|
113
|
+
writable: boolean;
|
|
114
|
+
mandatory: boolean;
|
|
111
115
|
collection: boolean;
|
|
112
|
-
|
|
116
|
+
private?: boolean;
|
|
117
|
+
depends?: string;
|
|
118
|
+
additionalAttributes: string[];
|
|
119
|
+
description?: string;
|
|
120
|
+
default?: any;
|
|
121
|
+
set?: Function;
|
|
122
|
+
get?: Function;
|
|
123
|
+
env?: string[] | string;
|
|
113
124
|
};
|
|
114
125
|
weight: {
|
|
115
126
|
type: string;
|
|
@@ -128,51 +139,148 @@ export class KeaService extends Service {
|
|
|
128
139
|
writeable: boolean;
|
|
129
140
|
};
|
|
130
141
|
protocol: {
|
|
131
|
-
type: string;
|
|
132
|
-
collection: boolean;
|
|
133
142
|
writeable: boolean;
|
|
134
143
|
values: string[];
|
|
144
|
+
type: string;
|
|
145
|
+
isKey: boolean;
|
|
146
|
+
writable: boolean;
|
|
147
|
+
mandatory: boolean;
|
|
148
|
+
collection: boolean;
|
|
149
|
+
private?: boolean;
|
|
150
|
+
depends?: string;
|
|
151
|
+
additionalAttributes: string[];
|
|
152
|
+
description?: string;
|
|
153
|
+
default?: any;
|
|
154
|
+
set?: Function;
|
|
155
|
+
get?: Function;
|
|
156
|
+
env?: string[] | string;
|
|
135
157
|
};
|
|
136
158
|
type: {
|
|
159
|
+
writeable: boolean;
|
|
137
160
|
type: string;
|
|
161
|
+
isKey: boolean;
|
|
162
|
+
writable: boolean;
|
|
163
|
+
mandatory: boolean;
|
|
138
164
|
collection: boolean;
|
|
139
|
-
|
|
165
|
+
private?: boolean;
|
|
166
|
+
depends?: string;
|
|
167
|
+
additionalAttributes: string[];
|
|
168
|
+
description?: string;
|
|
169
|
+
default?: any;
|
|
170
|
+
set?: Function;
|
|
171
|
+
get?: Function;
|
|
172
|
+
env?: string[] | string;
|
|
140
173
|
};
|
|
141
174
|
types: {
|
|
142
|
-
type: string;
|
|
143
175
|
collection: boolean;
|
|
144
|
-
|
|
176
|
+
type: string;
|
|
177
|
+
isKey: boolean;
|
|
178
|
+
writable: boolean;
|
|
179
|
+
mandatory: boolean;
|
|
180
|
+
private?: boolean;
|
|
181
|
+
depends?: string;
|
|
182
|
+
additionalAttributes: string[];
|
|
183
|
+
description?: string;
|
|
184
|
+
default?: any;
|
|
185
|
+
set?: Function;
|
|
186
|
+
get?: Function;
|
|
187
|
+
env?: string[] | string;
|
|
145
188
|
};
|
|
146
189
|
tls: {
|
|
190
|
+
writeable: boolean;
|
|
147
191
|
type: string;
|
|
192
|
+
isKey: boolean;
|
|
193
|
+
writable: boolean;
|
|
194
|
+
mandatory: boolean;
|
|
148
195
|
collection: boolean;
|
|
149
|
-
|
|
150
|
-
|
|
196
|
+
private?: boolean;
|
|
197
|
+
depends?: string;
|
|
198
|
+
additionalAttributes: string[];
|
|
199
|
+
description?: string;
|
|
200
|
+
default?: any;
|
|
201
|
+
set?: Function;
|
|
202
|
+
get?: Function;
|
|
203
|
+
env?: string[] | string;
|
|
151
204
|
};
|
|
152
205
|
hostName: {
|
|
206
|
+
writeable: boolean;
|
|
153
207
|
type: string;
|
|
208
|
+
isKey: boolean;
|
|
209
|
+
writable: boolean;
|
|
210
|
+
mandatory: boolean;
|
|
154
211
|
collection: boolean;
|
|
155
|
-
|
|
212
|
+
private?: boolean;
|
|
213
|
+
depends?: string;
|
|
214
|
+
additionalAttributes: string[];
|
|
215
|
+
description?: string;
|
|
216
|
+
default?: any;
|
|
217
|
+
set?: Function;
|
|
218
|
+
get?: Function;
|
|
219
|
+
env?: string[] | string;
|
|
156
220
|
};
|
|
157
221
|
cidrAddresses: {
|
|
158
|
-
type: string;
|
|
159
222
|
collection: boolean;
|
|
160
223
|
writeable: boolean;
|
|
224
|
+
type: string;
|
|
225
|
+
isKey: boolean;
|
|
226
|
+
writable: boolean;
|
|
227
|
+
mandatory: boolean;
|
|
228
|
+
private?: boolean;
|
|
229
|
+
depends?: string;
|
|
230
|
+
additionalAttributes: string[];
|
|
231
|
+
description?: string;
|
|
232
|
+
default?: any;
|
|
233
|
+
set?: Function;
|
|
234
|
+
get?: Function;
|
|
235
|
+
env?: string[] | string;
|
|
161
236
|
};
|
|
162
237
|
cidrAddress: {
|
|
238
|
+
writeable: boolean;
|
|
163
239
|
type: string;
|
|
240
|
+
isKey: boolean;
|
|
241
|
+
writable: boolean;
|
|
242
|
+
mandatory: boolean;
|
|
164
243
|
collection: boolean;
|
|
165
|
-
|
|
244
|
+
private?: boolean;
|
|
245
|
+
depends?: string;
|
|
246
|
+
additionalAttributes: string[];
|
|
247
|
+
description?: string;
|
|
248
|
+
default?: any;
|
|
249
|
+
set?: Function;
|
|
250
|
+
get?: Function;
|
|
251
|
+
env?: string[] | string;
|
|
166
252
|
};
|
|
167
253
|
addresses: {
|
|
168
|
-
type: string;
|
|
169
254
|
collection: boolean;
|
|
170
255
|
writeable: boolean;
|
|
256
|
+
type: string;
|
|
257
|
+
isKey: boolean;
|
|
258
|
+
writable: boolean;
|
|
259
|
+
mandatory: boolean;
|
|
260
|
+
private?: boolean;
|
|
261
|
+
depends?: string;
|
|
262
|
+
additionalAttributes: string[];
|
|
263
|
+
description?: string;
|
|
264
|
+
default?: any;
|
|
265
|
+
set?: Function;
|
|
266
|
+
get?: Function;
|
|
267
|
+
env?: string[] | string;
|
|
171
268
|
};
|
|
172
269
|
address: {
|
|
270
|
+
writeable: boolean;
|
|
173
271
|
type: string;
|
|
272
|
+
isKey: boolean;
|
|
273
|
+
writable: boolean;
|
|
274
|
+
mandatory: boolean;
|
|
174
275
|
collection: boolean;
|
|
175
|
-
|
|
276
|
+
private?: boolean;
|
|
277
|
+
depends?: string;
|
|
278
|
+
additionalAttributes: string[];
|
|
279
|
+
description?: string;
|
|
280
|
+
default?: any;
|
|
281
|
+
set?: Function;
|
|
282
|
+
get?: Function;
|
|
283
|
+
env?: string[] | string;
|
|
176
284
|
};
|
|
177
285
|
};
|
|
178
286
|
};
|
|
@@ -282,9 +390,20 @@ export class KeaService extends Service {
|
|
|
282
390
|
factoryFor(owner: any, value: any): any;
|
|
283
391
|
properties: {
|
|
284
392
|
alias: {
|
|
393
|
+
writeable: boolean;
|
|
285
394
|
type: string;
|
|
395
|
+
isKey: boolean;
|
|
396
|
+
writable: boolean;
|
|
397
|
+
mandatory: boolean;
|
|
286
398
|
collection: boolean;
|
|
287
|
-
|
|
399
|
+
private?: boolean;
|
|
400
|
+
depends?: string;
|
|
401
|
+
additionalAttributes: string[];
|
|
402
|
+
description?: string;
|
|
403
|
+
default?: any;
|
|
404
|
+
set?: Function;
|
|
405
|
+
get?: Function;
|
|
406
|
+
env?: string[] | string;
|
|
288
407
|
};
|
|
289
408
|
weight: {
|
|
290
409
|
type: string;
|
|
@@ -303,51 +422,148 @@ export class KeaService extends Service {
|
|
|
303
422
|
writeable: boolean;
|
|
304
423
|
};
|
|
305
424
|
protocol: {
|
|
306
|
-
type: string;
|
|
307
|
-
collection: boolean;
|
|
308
425
|
writeable: boolean;
|
|
309
426
|
values: string[];
|
|
427
|
+
type: string;
|
|
428
|
+
isKey: boolean;
|
|
429
|
+
writable: boolean;
|
|
430
|
+
mandatory: boolean;
|
|
431
|
+
collection: boolean;
|
|
432
|
+
private?: boolean;
|
|
433
|
+
depends?: string;
|
|
434
|
+
additionalAttributes: string[];
|
|
435
|
+
description?: string;
|
|
436
|
+
default?: any;
|
|
437
|
+
set?: Function;
|
|
438
|
+
get?: Function;
|
|
439
|
+
env?: string[] | string;
|
|
310
440
|
};
|
|
311
441
|
type: {
|
|
442
|
+
writeable: boolean;
|
|
312
443
|
type: string;
|
|
444
|
+
isKey: boolean;
|
|
445
|
+
writable: boolean;
|
|
446
|
+
mandatory: boolean;
|
|
313
447
|
collection: boolean;
|
|
314
|
-
|
|
448
|
+
private?: boolean;
|
|
449
|
+
depends?: string;
|
|
450
|
+
additionalAttributes: string[];
|
|
451
|
+
description?: string;
|
|
452
|
+
default?: any;
|
|
453
|
+
set?: Function;
|
|
454
|
+
get?: Function;
|
|
455
|
+
env?: string[] | string;
|
|
315
456
|
};
|
|
316
457
|
types: {
|
|
317
|
-
type: string;
|
|
318
458
|
collection: boolean;
|
|
319
|
-
|
|
459
|
+
type: string;
|
|
460
|
+
isKey: boolean;
|
|
461
|
+
writable: boolean;
|
|
462
|
+
mandatory: boolean;
|
|
463
|
+
private?: boolean;
|
|
464
|
+
depends?: string;
|
|
465
|
+
additionalAttributes: string[];
|
|
466
|
+
description?: string;
|
|
467
|
+
default?: any;
|
|
468
|
+
set?: Function;
|
|
469
|
+
get?: Function;
|
|
470
|
+
env?: string[] | string;
|
|
320
471
|
};
|
|
321
472
|
tls: {
|
|
473
|
+
writeable: boolean;
|
|
322
474
|
type: string;
|
|
475
|
+
isKey: boolean;
|
|
476
|
+
writable: boolean;
|
|
477
|
+
mandatory: boolean;
|
|
323
478
|
collection: boolean;
|
|
324
|
-
|
|
325
|
-
|
|
479
|
+
private?: boolean;
|
|
480
|
+
depends?: string;
|
|
481
|
+
additionalAttributes: string[];
|
|
482
|
+
description?: string;
|
|
483
|
+
default?: any;
|
|
484
|
+
set?: Function;
|
|
485
|
+
get?: Function;
|
|
486
|
+
env?: string[] | string;
|
|
326
487
|
};
|
|
327
488
|
hostName: {
|
|
489
|
+
writeable: boolean;
|
|
328
490
|
type: string;
|
|
491
|
+
isKey: boolean;
|
|
492
|
+
writable: boolean;
|
|
493
|
+
mandatory: boolean;
|
|
329
494
|
collection: boolean;
|
|
330
|
-
|
|
495
|
+
private?: boolean;
|
|
496
|
+
depends?: string;
|
|
497
|
+
additionalAttributes: string[];
|
|
498
|
+
description?: string;
|
|
499
|
+
default?: any;
|
|
500
|
+
set?: Function;
|
|
501
|
+
get?: Function;
|
|
502
|
+
env?: string[] | string;
|
|
331
503
|
};
|
|
332
504
|
cidrAddresses: {
|
|
333
|
-
type: string;
|
|
334
505
|
collection: boolean;
|
|
335
506
|
writeable: boolean;
|
|
507
|
+
type: string;
|
|
508
|
+
isKey: boolean;
|
|
509
|
+
writable: boolean;
|
|
510
|
+
mandatory: boolean;
|
|
511
|
+
private?: boolean;
|
|
512
|
+
depends?: string;
|
|
513
|
+
additionalAttributes: string[];
|
|
514
|
+
description?: string;
|
|
515
|
+
default?: any;
|
|
516
|
+
set?: Function;
|
|
517
|
+
get?: Function;
|
|
518
|
+
env?: string[] | string;
|
|
336
519
|
};
|
|
337
520
|
cidrAddress: {
|
|
521
|
+
writeable: boolean;
|
|
338
522
|
type: string;
|
|
523
|
+
isKey: boolean;
|
|
524
|
+
writable: boolean;
|
|
525
|
+
mandatory: boolean;
|
|
339
526
|
collection: boolean;
|
|
340
|
-
|
|
527
|
+
private?: boolean;
|
|
528
|
+
depends?: string;
|
|
529
|
+
additionalAttributes: string[];
|
|
530
|
+
description?: string;
|
|
531
|
+
default?: any;
|
|
532
|
+
set?: Function;
|
|
533
|
+
get?: Function;
|
|
534
|
+
env?: string[] | string;
|
|
341
535
|
};
|
|
342
536
|
addresses: {
|
|
343
|
-
type: string;
|
|
344
537
|
collection: boolean;
|
|
345
538
|
writeable: boolean;
|
|
539
|
+
type: string;
|
|
540
|
+
isKey: boolean;
|
|
541
|
+
writable: boolean;
|
|
542
|
+
mandatory: boolean;
|
|
543
|
+
private?: boolean;
|
|
544
|
+
depends?: string;
|
|
545
|
+
additionalAttributes: string[];
|
|
546
|
+
description?: string;
|
|
547
|
+
default?: any;
|
|
548
|
+
set?: Function;
|
|
549
|
+
get?: Function;
|
|
550
|
+
env?: string[] | string;
|
|
346
551
|
};
|
|
347
552
|
address: {
|
|
553
|
+
writeable: boolean;
|
|
348
554
|
type: string;
|
|
555
|
+
isKey: boolean;
|
|
556
|
+
writable: boolean;
|
|
557
|
+
mandatory: boolean;
|
|
349
558
|
collection: boolean;
|
|
350
|
-
|
|
559
|
+
private?: boolean;
|
|
560
|
+
depends?: string;
|
|
561
|
+
additionalAttributes: string[];
|
|
562
|
+
description?: string;
|
|
563
|
+
default?: any;
|
|
564
|
+
set?: Function;
|
|
565
|
+
get?: Function;
|
|
566
|
+
env?: string[] | string;
|
|
351
567
|
};
|
|
352
568
|
};
|
|
353
569
|
};
|