pmcf 3.18.0 → 3.18.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 +3 -3
- package/types/base.d.mts +1 -0
- package/types/cluster.d.mts +17 -0
- package/types/extra-source-service.d.mts +40 -0
- package/types/host.d.mts +8 -0
- package/types/location.d.mts +12 -0
- package/types/network-interfaces/ethernet.d.mts +46 -0
- package/types/network-interfaces/loopback.d.mts +44 -0
- package/types/network-interfaces/network-interface.d.mts +44 -0
- package/types/network-interfaces/tun.d.mts +44 -0
- package/types/network-interfaces/wireguard.d.mts +44 -0
- package/types/network-interfaces/wlan.d.mts +68 -0
- package/types/network-support.d.mts +8 -0
- package/types/network.d.mts +26 -0
- package/types/owner.d.mts +6 -0
- package/types/service.d.mts +23 -0
- package/types/services/bind.d.mts +57 -0
- package/types/services/chrony.d.mts +50 -0
- package/types/services/headscale.d.mts +30 -0
- package/types/services/influxdb.d.mts +31 -0
- package/types/services/kea.d.mts +35 -0
- package/types/services/mosquitto.d.mts +32 -0
- package/types/services/openldap.d.mts +30 -0
- package/types/services/systemd-journal-remote.d.mts +30 -0
- package/types/services/systemd-journal-upload.d.mts +30 -0
- package/types/services/systemd-journal.d.mts +30 -0
- package/types/services/systemd-resolved.d.mts +50 -0
- package/types/services/systemd-timesyncd.d.mts +50 -0
- package/types/services/tailscale.d.mts +30 -0
- package/types/subnet.d.mts +1 -0
package/types/network.d.mts
CHANGED
|
@@ -14,6 +14,7 @@ export namespace NetworkTypeDefinition {
|
|
|
14
14
|
writable: boolean;
|
|
15
15
|
mandatory: boolean;
|
|
16
16
|
private?: boolean;
|
|
17
|
+
credential?: boolean;
|
|
17
18
|
depends?: string;
|
|
18
19
|
description?: string;
|
|
19
20
|
default?: any;
|
|
@@ -32,6 +33,7 @@ export namespace NetworkTypeDefinition {
|
|
|
32
33
|
writable: boolean;
|
|
33
34
|
mandatory: boolean;
|
|
34
35
|
private?: boolean;
|
|
36
|
+
credential?: boolean;
|
|
35
37
|
depends?: string;
|
|
36
38
|
description?: string;
|
|
37
39
|
default?: any;
|
|
@@ -50,6 +52,7 @@ export namespace NetworkTypeDefinition {
|
|
|
50
52
|
writable: boolean;
|
|
51
53
|
mandatory: boolean;
|
|
52
54
|
private?: boolean;
|
|
55
|
+
credential?: boolean;
|
|
53
56
|
depends?: string;
|
|
54
57
|
description?: string;
|
|
55
58
|
default?: any;
|
|
@@ -76,6 +79,7 @@ export namespace NetworkTypeDefinition {
|
|
|
76
79
|
writable: boolean;
|
|
77
80
|
mandatory: boolean;
|
|
78
81
|
private?: boolean;
|
|
82
|
+
credential?: boolean;
|
|
79
83
|
depends?: string;
|
|
80
84
|
description?: string;
|
|
81
85
|
default?: any;
|
|
@@ -96,6 +100,7 @@ export namespace NetworkTypeDefinition {
|
|
|
96
100
|
writable: boolean;
|
|
97
101
|
mandatory: boolean;
|
|
98
102
|
private?: boolean;
|
|
103
|
+
credential?: boolean;
|
|
99
104
|
depends?: string;
|
|
100
105
|
description?: string;
|
|
101
106
|
default?: any;
|
|
@@ -120,6 +125,7 @@ export namespace NetworkTypeDefinition {
|
|
|
120
125
|
mandatory: boolean;
|
|
121
126
|
collection: boolean;
|
|
122
127
|
private?: boolean;
|
|
128
|
+
credential?: boolean;
|
|
123
129
|
depends?: string;
|
|
124
130
|
description?: string;
|
|
125
131
|
default?: any;
|
|
@@ -143,6 +149,7 @@ export namespace NetworkTypeDefinition {
|
|
|
143
149
|
writable: boolean;
|
|
144
150
|
mandatory: boolean;
|
|
145
151
|
private?: boolean;
|
|
152
|
+
credential?: boolean;
|
|
146
153
|
depends?: string;
|
|
147
154
|
description?: string;
|
|
148
155
|
default?: any;
|
|
@@ -161,6 +168,7 @@ export namespace NetworkTypeDefinition {
|
|
|
161
168
|
mandatory: boolean;
|
|
162
169
|
collection: boolean;
|
|
163
170
|
private?: boolean;
|
|
171
|
+
credential?: boolean;
|
|
164
172
|
depends?: string;
|
|
165
173
|
description?: string;
|
|
166
174
|
default?: any;
|
|
@@ -180,6 +188,7 @@ export namespace NetworkTypeDefinition {
|
|
|
180
188
|
mandatory: boolean;
|
|
181
189
|
collection: boolean;
|
|
182
190
|
private?: boolean;
|
|
191
|
+
credential?: boolean;
|
|
183
192
|
depends?: string;
|
|
184
193
|
description?: string;
|
|
185
194
|
default?: any;
|
|
@@ -198,6 +207,7 @@ export namespace NetworkTypeDefinition {
|
|
|
198
207
|
mandatory: boolean;
|
|
199
208
|
collection: boolean;
|
|
200
209
|
private?: boolean;
|
|
210
|
+
credential?: boolean;
|
|
201
211
|
depends?: string;
|
|
202
212
|
description?: string;
|
|
203
213
|
default?: any;
|
|
@@ -216,6 +226,7 @@ export namespace NetworkTypeDefinition {
|
|
|
216
226
|
mandatory: boolean;
|
|
217
227
|
collection: boolean;
|
|
218
228
|
private?: boolean;
|
|
229
|
+
credential?: boolean;
|
|
219
230
|
depends?: string;
|
|
220
231
|
description?: string;
|
|
221
232
|
default?: any;
|
|
@@ -236,6 +247,7 @@ export namespace NetworkTypeDefinition {
|
|
|
236
247
|
mandatory: boolean;
|
|
237
248
|
collection: boolean;
|
|
238
249
|
private?: boolean;
|
|
250
|
+
credential?: boolean;
|
|
239
251
|
depends?: string;
|
|
240
252
|
description?: string;
|
|
241
253
|
default?: any;
|
|
@@ -255,6 +267,7 @@ export namespace NetworkTypeDefinition {
|
|
|
255
267
|
mandatory: boolean;
|
|
256
268
|
collection: boolean;
|
|
257
269
|
private?: boolean;
|
|
270
|
+
credential?: boolean;
|
|
258
271
|
depends?: string;
|
|
259
272
|
description?: string;
|
|
260
273
|
set?: Function;
|
|
@@ -285,6 +298,7 @@ export class Network extends Owner {
|
|
|
285
298
|
writable: boolean;
|
|
286
299
|
mandatory: boolean;
|
|
287
300
|
private?: boolean;
|
|
301
|
+
credential?: boolean;
|
|
288
302
|
depends?: string;
|
|
289
303
|
description?: string;
|
|
290
304
|
default?: any;
|
|
@@ -303,6 +317,7 @@ export class Network extends Owner {
|
|
|
303
317
|
writable: boolean;
|
|
304
318
|
mandatory: boolean;
|
|
305
319
|
private?: boolean;
|
|
320
|
+
credential?: boolean;
|
|
306
321
|
depends?: string;
|
|
307
322
|
description?: string;
|
|
308
323
|
default?: any;
|
|
@@ -321,6 +336,7 @@ export class Network extends Owner {
|
|
|
321
336
|
writable: boolean;
|
|
322
337
|
mandatory: boolean;
|
|
323
338
|
private?: boolean;
|
|
339
|
+
credential?: boolean;
|
|
324
340
|
depends?: string;
|
|
325
341
|
description?: string;
|
|
326
342
|
default?: any;
|
|
@@ -347,6 +363,7 @@ export class Network extends Owner {
|
|
|
347
363
|
writable: boolean;
|
|
348
364
|
mandatory: boolean;
|
|
349
365
|
private?: boolean;
|
|
366
|
+
credential?: boolean;
|
|
350
367
|
depends?: string;
|
|
351
368
|
description?: string;
|
|
352
369
|
default?: any;
|
|
@@ -367,6 +384,7 @@ export class Network extends Owner {
|
|
|
367
384
|
writable: boolean;
|
|
368
385
|
mandatory: boolean;
|
|
369
386
|
private?: boolean;
|
|
387
|
+
credential?: boolean;
|
|
370
388
|
depends?: string;
|
|
371
389
|
description?: string;
|
|
372
390
|
default?: any;
|
|
@@ -391,6 +409,7 @@ export class Network extends Owner {
|
|
|
391
409
|
mandatory: boolean;
|
|
392
410
|
collection: boolean;
|
|
393
411
|
private?: boolean;
|
|
412
|
+
credential?: boolean;
|
|
394
413
|
depends?: string;
|
|
395
414
|
description?: string;
|
|
396
415
|
default?: any;
|
|
@@ -413,6 +432,7 @@ export class Network extends Owner {
|
|
|
413
432
|
writable: boolean;
|
|
414
433
|
mandatory: boolean;
|
|
415
434
|
private?: boolean;
|
|
435
|
+
credential?: boolean;
|
|
416
436
|
depends?: string;
|
|
417
437
|
description?: string;
|
|
418
438
|
default?: any;
|
|
@@ -431,6 +451,7 @@ export class Network extends Owner {
|
|
|
431
451
|
mandatory: boolean;
|
|
432
452
|
collection: boolean;
|
|
433
453
|
private?: boolean;
|
|
454
|
+
credential?: boolean;
|
|
434
455
|
depends?: string;
|
|
435
456
|
description?: string;
|
|
436
457
|
default?: any;
|
|
@@ -450,6 +471,7 @@ export class Network extends Owner {
|
|
|
450
471
|
mandatory: boolean;
|
|
451
472
|
collection: boolean;
|
|
452
473
|
private?: boolean;
|
|
474
|
+
credential?: boolean;
|
|
453
475
|
depends?: string;
|
|
454
476
|
description?: string;
|
|
455
477
|
default?: any;
|
|
@@ -468,6 +490,7 @@ export class Network extends Owner {
|
|
|
468
490
|
mandatory: boolean;
|
|
469
491
|
collection: boolean;
|
|
470
492
|
private?: boolean;
|
|
493
|
+
credential?: boolean;
|
|
471
494
|
depends?: string;
|
|
472
495
|
description?: string;
|
|
473
496
|
default?: any;
|
|
@@ -486,6 +509,7 @@ export class Network extends Owner {
|
|
|
486
509
|
mandatory: boolean;
|
|
487
510
|
collection: boolean;
|
|
488
511
|
private?: boolean;
|
|
512
|
+
credential?: boolean;
|
|
489
513
|
depends?: string;
|
|
490
514
|
description?: string;
|
|
491
515
|
default?: any;
|
|
@@ -506,6 +530,7 @@ export class Network extends Owner {
|
|
|
506
530
|
mandatory: boolean;
|
|
507
531
|
collection: boolean;
|
|
508
532
|
private?: boolean;
|
|
533
|
+
credential?: boolean;
|
|
509
534
|
depends?: string;
|
|
510
535
|
description?: string;
|
|
511
536
|
default?: any;
|
|
@@ -525,6 +550,7 @@ export class Network extends Owner {
|
|
|
525
550
|
mandatory: boolean;
|
|
526
551
|
collection: boolean;
|
|
527
552
|
private?: boolean;
|
|
553
|
+
credential?: boolean;
|
|
528
554
|
depends?: string;
|
|
529
555
|
description?: string;
|
|
530
556
|
set?: Function;
|
package/types/owner.d.mts
CHANGED
|
@@ -12,6 +12,7 @@ export class Owner extends Base {
|
|
|
12
12
|
writable: boolean;
|
|
13
13
|
mandatory: boolean;
|
|
14
14
|
private?: boolean;
|
|
15
|
+
credential?: boolean;
|
|
15
16
|
depends?: string;
|
|
16
17
|
description?: string;
|
|
17
18
|
default?: any;
|
|
@@ -30,6 +31,7 @@ export class Owner extends Base {
|
|
|
30
31
|
writable: boolean;
|
|
31
32
|
mandatory: boolean;
|
|
32
33
|
private?: boolean;
|
|
34
|
+
credential?: boolean;
|
|
33
35
|
depends?: string;
|
|
34
36
|
description?: string;
|
|
35
37
|
default?: any;
|
|
@@ -48,6 +50,7 @@ export class Owner extends Base {
|
|
|
48
50
|
writable: boolean;
|
|
49
51
|
mandatory: boolean;
|
|
50
52
|
private?: boolean;
|
|
53
|
+
credential?: boolean;
|
|
51
54
|
depends?: string;
|
|
52
55
|
description?: string;
|
|
53
56
|
default?: any;
|
|
@@ -74,6 +77,7 @@ export class Owner extends Base {
|
|
|
74
77
|
writable: boolean;
|
|
75
78
|
mandatory: boolean;
|
|
76
79
|
private?: boolean;
|
|
80
|
+
credential?: boolean;
|
|
77
81
|
depends?: string;
|
|
78
82
|
description?: string;
|
|
79
83
|
default?: any;
|
|
@@ -94,6 +98,7 @@ export class Owner extends Base {
|
|
|
94
98
|
writable: boolean;
|
|
95
99
|
mandatory: boolean;
|
|
96
100
|
private?: boolean;
|
|
101
|
+
credential?: boolean;
|
|
97
102
|
depends?: string;
|
|
98
103
|
description?: string;
|
|
99
104
|
default?: any;
|
|
@@ -118,6 +123,7 @@ export class Owner extends Base {
|
|
|
118
123
|
mandatory: boolean;
|
|
119
124
|
collection: boolean;
|
|
120
125
|
private?: boolean;
|
|
126
|
+
credential?: boolean;
|
|
121
127
|
depends?: string;
|
|
122
128
|
description?: string;
|
|
123
129
|
default?: any;
|
package/types/service.d.mts
CHANGED
|
@@ -26,6 +26,7 @@ export namespace endpointAttributes {
|
|
|
26
26
|
mandatory: boolean;
|
|
27
27
|
collection: boolean;
|
|
28
28
|
private?: boolean;
|
|
29
|
+
credential?: boolean;
|
|
29
30
|
depends?: string;
|
|
30
31
|
description?: string;
|
|
31
32
|
default?: any;
|
|
@@ -63,6 +64,7 @@ export namespace ServiceTypeDefinition {
|
|
|
63
64
|
writable: boolean;
|
|
64
65
|
mandatory: boolean;
|
|
65
66
|
private?: boolean;
|
|
67
|
+
credential?: boolean;
|
|
66
68
|
depends?: string;
|
|
67
69
|
description?: string;
|
|
68
70
|
default?: any;
|
|
@@ -81,6 +83,7 @@ export namespace ServiceTypeDefinition {
|
|
|
81
83
|
writable: boolean;
|
|
82
84
|
mandatory: boolean;
|
|
83
85
|
private?: boolean;
|
|
86
|
+
credential?: boolean;
|
|
84
87
|
depends?: string;
|
|
85
88
|
description?: string;
|
|
86
89
|
default?: any;
|
|
@@ -101,6 +104,7 @@ export namespace ServiceTypeDefinition {
|
|
|
101
104
|
mandatory: boolean;
|
|
102
105
|
collection: boolean;
|
|
103
106
|
private?: boolean;
|
|
107
|
+
credential?: boolean;
|
|
104
108
|
depends?: string;
|
|
105
109
|
description?: string;
|
|
106
110
|
default?: any;
|
|
@@ -121,6 +125,7 @@ export namespace ServiceTypeDefinition {
|
|
|
121
125
|
mandatory: boolean;
|
|
122
126
|
collection: boolean;
|
|
123
127
|
private?: boolean;
|
|
128
|
+
credential?: boolean;
|
|
124
129
|
depends?: string;
|
|
125
130
|
description?: string;
|
|
126
131
|
default?: any;
|
|
@@ -143,6 +148,7 @@ export namespace ServiceTypeDefinition {
|
|
|
143
148
|
mandatory: boolean;
|
|
144
149
|
collection: boolean;
|
|
145
150
|
private?: boolean;
|
|
151
|
+
credential?: boolean;
|
|
146
152
|
depends?: string;
|
|
147
153
|
description?: string;
|
|
148
154
|
default?: any;
|
|
@@ -161,6 +167,7 @@ export namespace ServiceTypeDefinition {
|
|
|
161
167
|
mandatory: boolean;
|
|
162
168
|
collection: boolean;
|
|
163
169
|
private?: boolean;
|
|
170
|
+
credential?: boolean;
|
|
164
171
|
depends?: string;
|
|
165
172
|
description?: string;
|
|
166
173
|
default?: any;
|
|
@@ -181,6 +188,7 @@ export namespace ServiceTypeDefinition {
|
|
|
181
188
|
writable: boolean;
|
|
182
189
|
mandatory: boolean;
|
|
183
190
|
private?: boolean;
|
|
191
|
+
credential?: boolean;
|
|
184
192
|
depends?: string;
|
|
185
193
|
description?: string;
|
|
186
194
|
default?: any;
|
|
@@ -201,6 +209,7 @@ export namespace ServiceTypeDefinition {
|
|
|
201
209
|
mandatory: boolean;
|
|
202
210
|
collection: boolean;
|
|
203
211
|
private?: boolean;
|
|
212
|
+
credential?: boolean;
|
|
204
213
|
depends?: string;
|
|
205
214
|
description?: string;
|
|
206
215
|
default?: any;
|
|
@@ -235,6 +244,7 @@ export namespace ServiceTypeDefinition {
|
|
|
235
244
|
mandatory: boolean;
|
|
236
245
|
collection: boolean;
|
|
237
246
|
private?: boolean;
|
|
247
|
+
credential?: boolean;
|
|
238
248
|
depends?: string;
|
|
239
249
|
description?: string;
|
|
240
250
|
default?: any;
|
|
@@ -256,6 +266,7 @@ export namespace ServiceTypeDefinition {
|
|
|
256
266
|
mandatory: boolean;
|
|
257
267
|
collection: boolean;
|
|
258
268
|
private?: boolean;
|
|
269
|
+
credential?: boolean;
|
|
259
270
|
depends?: string;
|
|
260
271
|
description?: string;
|
|
261
272
|
default?: any;
|
|
@@ -276,6 +287,7 @@ export namespace ServiceTypeDefinition {
|
|
|
276
287
|
mandatory: boolean;
|
|
277
288
|
collection: boolean;
|
|
278
289
|
private?: boolean;
|
|
290
|
+
credential?: boolean;
|
|
279
291
|
depends?: string;
|
|
280
292
|
description?: string;
|
|
281
293
|
default?: any;
|
|
@@ -309,6 +321,7 @@ export class Service extends Base {
|
|
|
309
321
|
writable: boolean;
|
|
310
322
|
mandatory: boolean;
|
|
311
323
|
private?: boolean;
|
|
324
|
+
credential?: boolean;
|
|
312
325
|
depends?: string;
|
|
313
326
|
description?: string;
|
|
314
327
|
default?: any;
|
|
@@ -327,6 +340,7 @@ export class Service extends Base {
|
|
|
327
340
|
writable: boolean;
|
|
328
341
|
mandatory: boolean;
|
|
329
342
|
private?: boolean;
|
|
343
|
+
credential?: boolean;
|
|
330
344
|
depends?: string;
|
|
331
345
|
description?: string;
|
|
332
346
|
default?: any;
|
|
@@ -347,6 +361,7 @@ export class Service extends Base {
|
|
|
347
361
|
mandatory: boolean;
|
|
348
362
|
collection: boolean;
|
|
349
363
|
private?: boolean;
|
|
364
|
+
credential?: boolean;
|
|
350
365
|
depends?: string;
|
|
351
366
|
description?: string;
|
|
352
367
|
default?: any;
|
|
@@ -367,6 +382,7 @@ export class Service extends Base {
|
|
|
367
382
|
mandatory: boolean;
|
|
368
383
|
collection: boolean;
|
|
369
384
|
private?: boolean;
|
|
385
|
+
credential?: boolean;
|
|
370
386
|
depends?: string;
|
|
371
387
|
description?: string;
|
|
372
388
|
default?: any;
|
|
@@ -389,6 +405,7 @@ export class Service extends Base {
|
|
|
389
405
|
mandatory: boolean;
|
|
390
406
|
collection: boolean;
|
|
391
407
|
private?: boolean;
|
|
408
|
+
credential?: boolean;
|
|
392
409
|
depends?: string;
|
|
393
410
|
description?: string;
|
|
394
411
|
default?: any;
|
|
@@ -407,6 +424,7 @@ export class Service extends Base {
|
|
|
407
424
|
mandatory: boolean;
|
|
408
425
|
collection: boolean;
|
|
409
426
|
private?: boolean;
|
|
427
|
+
credential?: boolean;
|
|
410
428
|
depends?: string;
|
|
411
429
|
description?: string;
|
|
412
430
|
default?: any;
|
|
@@ -427,6 +445,7 @@ export class Service extends Base {
|
|
|
427
445
|
writable: boolean;
|
|
428
446
|
mandatory: boolean;
|
|
429
447
|
private?: boolean;
|
|
448
|
+
credential?: boolean;
|
|
430
449
|
depends?: string;
|
|
431
450
|
description?: string;
|
|
432
451
|
default?: any;
|
|
@@ -447,6 +466,7 @@ export class Service extends Base {
|
|
|
447
466
|
mandatory: boolean;
|
|
448
467
|
collection: boolean;
|
|
449
468
|
private?: boolean;
|
|
469
|
+
credential?: boolean;
|
|
450
470
|
depends?: string;
|
|
451
471
|
description?: string;
|
|
452
472
|
default?: any;
|
|
@@ -477,6 +497,7 @@ export class Service extends Base {
|
|
|
477
497
|
mandatory: boolean;
|
|
478
498
|
collection: boolean;
|
|
479
499
|
private?: boolean;
|
|
500
|
+
credential?: boolean;
|
|
480
501
|
depends?: string;
|
|
481
502
|
description?: string;
|
|
482
503
|
default?: any;
|
|
@@ -498,6 +519,7 @@ export class Service extends Base {
|
|
|
498
519
|
mandatory: boolean;
|
|
499
520
|
collection: boolean;
|
|
500
521
|
private?: boolean;
|
|
522
|
+
credential?: boolean;
|
|
501
523
|
depends?: string;
|
|
502
524
|
description?: string;
|
|
503
525
|
default?: any;
|
|
@@ -518,6 +540,7 @@ export class Service extends Base {
|
|
|
518
540
|
mandatory: boolean;
|
|
519
541
|
collection: boolean;
|
|
520
542
|
private?: boolean;
|
|
543
|
+
credential?: boolean;
|
|
521
544
|
depends?: string;
|
|
522
545
|
description?: string;
|
|
523
546
|
default?: any;
|