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