pmcf 3.18.3 → 3.18.5
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
|
@@ -15,6 +15,7 @@ export namespace NetworkTypeDefinition {
|
|
|
15
15
|
mandatory: boolean;
|
|
16
16
|
private?: boolean;
|
|
17
17
|
credential?: boolean;
|
|
18
|
+
persistent?: boolean;
|
|
18
19
|
depends?: string;
|
|
19
20
|
description?: string;
|
|
20
21
|
default?: any;
|
|
@@ -34,6 +35,7 @@ export namespace NetworkTypeDefinition {
|
|
|
34
35
|
mandatory: boolean;
|
|
35
36
|
private?: boolean;
|
|
36
37
|
credential?: boolean;
|
|
38
|
+
persistent?: boolean;
|
|
37
39
|
depends?: string;
|
|
38
40
|
description?: string;
|
|
39
41
|
default?: any;
|
|
@@ -53,6 +55,7 @@ export namespace NetworkTypeDefinition {
|
|
|
53
55
|
mandatory: boolean;
|
|
54
56
|
private?: boolean;
|
|
55
57
|
credential?: boolean;
|
|
58
|
+
persistent?: boolean;
|
|
56
59
|
depends?: string;
|
|
57
60
|
description?: string;
|
|
58
61
|
default?: any;
|
|
@@ -80,6 +83,7 @@ export namespace NetworkTypeDefinition {
|
|
|
80
83
|
mandatory: boolean;
|
|
81
84
|
private?: boolean;
|
|
82
85
|
credential?: boolean;
|
|
86
|
+
persistent?: boolean;
|
|
83
87
|
depends?: string;
|
|
84
88
|
description?: string;
|
|
85
89
|
default?: any;
|
|
@@ -101,6 +105,7 @@ export namespace NetworkTypeDefinition {
|
|
|
101
105
|
mandatory: boolean;
|
|
102
106
|
private?: boolean;
|
|
103
107
|
credential?: boolean;
|
|
108
|
+
persistent?: boolean;
|
|
104
109
|
depends?: string;
|
|
105
110
|
description?: string;
|
|
106
111
|
default?: any;
|
|
@@ -126,6 +131,7 @@ export namespace NetworkTypeDefinition {
|
|
|
126
131
|
collection: boolean;
|
|
127
132
|
private?: boolean;
|
|
128
133
|
credential?: boolean;
|
|
134
|
+
persistent?: boolean;
|
|
129
135
|
depends?: string;
|
|
130
136
|
description?: string;
|
|
131
137
|
default?: any;
|
|
@@ -150,6 +156,7 @@ export namespace NetworkTypeDefinition {
|
|
|
150
156
|
mandatory: boolean;
|
|
151
157
|
private?: boolean;
|
|
152
158
|
credential?: boolean;
|
|
159
|
+
persistent?: boolean;
|
|
153
160
|
depends?: string;
|
|
154
161
|
description?: string;
|
|
155
162
|
default?: any;
|
|
@@ -169,6 +176,7 @@ export namespace NetworkTypeDefinition {
|
|
|
169
176
|
collection: boolean;
|
|
170
177
|
private?: boolean;
|
|
171
178
|
credential?: boolean;
|
|
179
|
+
persistent?: boolean;
|
|
172
180
|
depends?: string;
|
|
173
181
|
description?: string;
|
|
174
182
|
default?: any;
|
|
@@ -189,6 +197,7 @@ export namespace NetworkTypeDefinition {
|
|
|
189
197
|
collection: boolean;
|
|
190
198
|
private?: boolean;
|
|
191
199
|
credential?: boolean;
|
|
200
|
+
persistent?: boolean;
|
|
192
201
|
depends?: string;
|
|
193
202
|
description?: string;
|
|
194
203
|
default?: any;
|
|
@@ -208,6 +217,7 @@ export namespace NetworkTypeDefinition {
|
|
|
208
217
|
collection: boolean;
|
|
209
218
|
private?: boolean;
|
|
210
219
|
credential?: boolean;
|
|
220
|
+
persistent?: boolean;
|
|
211
221
|
depends?: string;
|
|
212
222
|
description?: string;
|
|
213
223
|
default?: any;
|
|
@@ -227,6 +237,7 @@ export namespace NetworkTypeDefinition {
|
|
|
227
237
|
collection: boolean;
|
|
228
238
|
private?: boolean;
|
|
229
239
|
credential?: boolean;
|
|
240
|
+
persistent?: boolean;
|
|
230
241
|
depends?: string;
|
|
231
242
|
description?: string;
|
|
232
243
|
default?: any;
|
|
@@ -248,6 +259,7 @@ export namespace NetworkTypeDefinition {
|
|
|
248
259
|
collection: boolean;
|
|
249
260
|
private?: boolean;
|
|
250
261
|
credential?: boolean;
|
|
262
|
+
persistent?: boolean;
|
|
251
263
|
depends?: string;
|
|
252
264
|
description?: string;
|
|
253
265
|
default?: any;
|
|
@@ -268,6 +280,7 @@ export namespace NetworkTypeDefinition {
|
|
|
268
280
|
collection: boolean;
|
|
269
281
|
private?: boolean;
|
|
270
282
|
credential?: boolean;
|
|
283
|
+
persistent?: boolean;
|
|
271
284
|
depends?: string;
|
|
272
285
|
description?: string;
|
|
273
286
|
set?: Function;
|
|
@@ -299,6 +312,7 @@ export class Network extends Owner {
|
|
|
299
312
|
mandatory: boolean;
|
|
300
313
|
private?: boolean;
|
|
301
314
|
credential?: boolean;
|
|
315
|
+
persistent?: boolean;
|
|
302
316
|
depends?: string;
|
|
303
317
|
description?: string;
|
|
304
318
|
default?: any;
|
|
@@ -318,6 +332,7 @@ export class Network extends Owner {
|
|
|
318
332
|
mandatory: boolean;
|
|
319
333
|
private?: boolean;
|
|
320
334
|
credential?: boolean;
|
|
335
|
+
persistent?: boolean;
|
|
321
336
|
depends?: string;
|
|
322
337
|
description?: string;
|
|
323
338
|
default?: any;
|
|
@@ -337,6 +352,7 @@ export class Network extends Owner {
|
|
|
337
352
|
mandatory: boolean;
|
|
338
353
|
private?: boolean;
|
|
339
354
|
credential?: boolean;
|
|
355
|
+
persistent?: boolean;
|
|
340
356
|
depends?: string;
|
|
341
357
|
description?: string;
|
|
342
358
|
default?: any;
|
|
@@ -364,6 +380,7 @@ export class Network extends Owner {
|
|
|
364
380
|
mandatory: boolean;
|
|
365
381
|
private?: boolean;
|
|
366
382
|
credential?: boolean;
|
|
383
|
+
persistent?: boolean;
|
|
367
384
|
depends?: string;
|
|
368
385
|
description?: string;
|
|
369
386
|
default?: any;
|
|
@@ -385,6 +402,7 @@ export class Network extends Owner {
|
|
|
385
402
|
mandatory: boolean;
|
|
386
403
|
private?: boolean;
|
|
387
404
|
credential?: boolean;
|
|
405
|
+
persistent?: boolean;
|
|
388
406
|
depends?: string;
|
|
389
407
|
description?: string;
|
|
390
408
|
default?: any;
|
|
@@ -410,6 +428,7 @@ export class Network extends Owner {
|
|
|
410
428
|
collection: boolean;
|
|
411
429
|
private?: boolean;
|
|
412
430
|
credential?: boolean;
|
|
431
|
+
persistent?: boolean;
|
|
413
432
|
depends?: string;
|
|
414
433
|
description?: string;
|
|
415
434
|
default?: any;
|
|
@@ -433,6 +452,7 @@ export class Network extends Owner {
|
|
|
433
452
|
mandatory: boolean;
|
|
434
453
|
private?: boolean;
|
|
435
454
|
credential?: boolean;
|
|
455
|
+
persistent?: boolean;
|
|
436
456
|
depends?: string;
|
|
437
457
|
description?: string;
|
|
438
458
|
default?: any;
|
|
@@ -452,6 +472,7 @@ export class Network extends Owner {
|
|
|
452
472
|
collection: boolean;
|
|
453
473
|
private?: boolean;
|
|
454
474
|
credential?: boolean;
|
|
475
|
+
persistent?: boolean;
|
|
455
476
|
depends?: string;
|
|
456
477
|
description?: string;
|
|
457
478
|
default?: any;
|
|
@@ -472,6 +493,7 @@ export class Network extends Owner {
|
|
|
472
493
|
collection: boolean;
|
|
473
494
|
private?: boolean;
|
|
474
495
|
credential?: boolean;
|
|
496
|
+
persistent?: boolean;
|
|
475
497
|
depends?: string;
|
|
476
498
|
description?: string;
|
|
477
499
|
default?: any;
|
|
@@ -491,6 +513,7 @@ export class Network extends Owner {
|
|
|
491
513
|
collection: boolean;
|
|
492
514
|
private?: boolean;
|
|
493
515
|
credential?: boolean;
|
|
516
|
+
persistent?: boolean;
|
|
494
517
|
depends?: string;
|
|
495
518
|
description?: string;
|
|
496
519
|
default?: any;
|
|
@@ -510,6 +533,7 @@ export class Network extends Owner {
|
|
|
510
533
|
collection: boolean;
|
|
511
534
|
private?: boolean;
|
|
512
535
|
credential?: boolean;
|
|
536
|
+
persistent?: boolean;
|
|
513
537
|
depends?: string;
|
|
514
538
|
description?: string;
|
|
515
539
|
default?: any;
|
|
@@ -531,6 +555,7 @@ export class Network extends Owner {
|
|
|
531
555
|
collection: boolean;
|
|
532
556
|
private?: boolean;
|
|
533
557
|
credential?: boolean;
|
|
558
|
+
persistent?: boolean;
|
|
534
559
|
depends?: string;
|
|
535
560
|
description?: string;
|
|
536
561
|
default?: any;
|
|
@@ -551,6 +576,7 @@ export class Network extends Owner {
|
|
|
551
576
|
collection: boolean;
|
|
552
577
|
private?: boolean;
|
|
553
578
|
credential?: boolean;
|
|
579
|
+
persistent?: boolean;
|
|
554
580
|
depends?: string;
|
|
555
581
|
description?: string;
|
|
556
582
|
set?: Function;
|
package/types/owner.d.mts
CHANGED
|
@@ -13,6 +13,7 @@ export class Owner extends Base {
|
|
|
13
13
|
mandatory: boolean;
|
|
14
14
|
private?: boolean;
|
|
15
15
|
credential?: boolean;
|
|
16
|
+
persistent?: boolean;
|
|
16
17
|
depends?: string;
|
|
17
18
|
description?: string;
|
|
18
19
|
default?: any;
|
|
@@ -32,6 +33,7 @@ export class Owner extends Base {
|
|
|
32
33
|
mandatory: boolean;
|
|
33
34
|
private?: boolean;
|
|
34
35
|
credential?: boolean;
|
|
36
|
+
persistent?: boolean;
|
|
35
37
|
depends?: string;
|
|
36
38
|
description?: string;
|
|
37
39
|
default?: any;
|
|
@@ -51,6 +53,7 @@ export class Owner extends Base {
|
|
|
51
53
|
mandatory: boolean;
|
|
52
54
|
private?: boolean;
|
|
53
55
|
credential?: boolean;
|
|
56
|
+
persistent?: boolean;
|
|
54
57
|
depends?: string;
|
|
55
58
|
description?: string;
|
|
56
59
|
default?: any;
|
|
@@ -78,6 +81,7 @@ export class Owner extends Base {
|
|
|
78
81
|
mandatory: boolean;
|
|
79
82
|
private?: boolean;
|
|
80
83
|
credential?: boolean;
|
|
84
|
+
persistent?: boolean;
|
|
81
85
|
depends?: string;
|
|
82
86
|
description?: string;
|
|
83
87
|
default?: any;
|
|
@@ -99,6 +103,7 @@ export class Owner extends Base {
|
|
|
99
103
|
mandatory: boolean;
|
|
100
104
|
private?: boolean;
|
|
101
105
|
credential?: boolean;
|
|
106
|
+
persistent?: boolean;
|
|
102
107
|
depends?: string;
|
|
103
108
|
description?: string;
|
|
104
109
|
default?: any;
|
|
@@ -124,6 +129,7 @@ export class Owner extends Base {
|
|
|
124
129
|
collection: boolean;
|
|
125
130
|
private?: boolean;
|
|
126
131
|
credential?: boolean;
|
|
132
|
+
persistent?: boolean;
|
|
127
133
|
depends?: string;
|
|
128
134
|
description?: string;
|
|
129
135
|
default?: any;
|
package/types/service.d.mts
CHANGED
|
@@ -27,6 +27,7 @@ export namespace endpointAttributes {
|
|
|
27
27
|
collection: boolean;
|
|
28
28
|
private?: boolean;
|
|
29
29
|
credential?: boolean;
|
|
30
|
+
persistent?: boolean;
|
|
30
31
|
depends?: string;
|
|
31
32
|
description?: string;
|
|
32
33
|
default?: any;
|
|
@@ -65,6 +66,7 @@ export namespace ServiceTypeDefinition {
|
|
|
65
66
|
mandatory: boolean;
|
|
66
67
|
private?: boolean;
|
|
67
68
|
credential?: boolean;
|
|
69
|
+
persistent?: boolean;
|
|
68
70
|
depends?: string;
|
|
69
71
|
description?: string;
|
|
70
72
|
default?: any;
|
|
@@ -84,6 +86,7 @@ export namespace ServiceTypeDefinition {
|
|
|
84
86
|
mandatory: boolean;
|
|
85
87
|
private?: boolean;
|
|
86
88
|
credential?: boolean;
|
|
89
|
+
persistent?: boolean;
|
|
87
90
|
depends?: string;
|
|
88
91
|
description?: string;
|
|
89
92
|
default?: any;
|
|
@@ -105,6 +108,7 @@ export namespace ServiceTypeDefinition {
|
|
|
105
108
|
collection: boolean;
|
|
106
109
|
private?: boolean;
|
|
107
110
|
credential?: boolean;
|
|
111
|
+
persistent?: boolean;
|
|
108
112
|
depends?: string;
|
|
109
113
|
description?: string;
|
|
110
114
|
default?: any;
|
|
@@ -126,6 +130,7 @@ export namespace ServiceTypeDefinition {
|
|
|
126
130
|
collection: boolean;
|
|
127
131
|
private?: boolean;
|
|
128
132
|
credential?: boolean;
|
|
133
|
+
persistent?: boolean;
|
|
129
134
|
depends?: string;
|
|
130
135
|
description?: string;
|
|
131
136
|
default?: any;
|
|
@@ -149,6 +154,7 @@ export namespace ServiceTypeDefinition {
|
|
|
149
154
|
collection: boolean;
|
|
150
155
|
private?: boolean;
|
|
151
156
|
credential?: boolean;
|
|
157
|
+
persistent?: boolean;
|
|
152
158
|
depends?: string;
|
|
153
159
|
description?: string;
|
|
154
160
|
default?: any;
|
|
@@ -168,6 +174,7 @@ export namespace ServiceTypeDefinition {
|
|
|
168
174
|
collection: boolean;
|
|
169
175
|
private?: boolean;
|
|
170
176
|
credential?: boolean;
|
|
177
|
+
persistent?: boolean;
|
|
171
178
|
depends?: string;
|
|
172
179
|
description?: string;
|
|
173
180
|
default?: any;
|
|
@@ -189,6 +196,7 @@ export namespace ServiceTypeDefinition {
|
|
|
189
196
|
mandatory: boolean;
|
|
190
197
|
private?: boolean;
|
|
191
198
|
credential?: boolean;
|
|
199
|
+
persistent?: boolean;
|
|
192
200
|
depends?: string;
|
|
193
201
|
description?: string;
|
|
194
202
|
default?: any;
|
|
@@ -210,6 +218,7 @@ export namespace ServiceTypeDefinition {
|
|
|
210
218
|
collection: boolean;
|
|
211
219
|
private?: boolean;
|
|
212
220
|
credential?: boolean;
|
|
221
|
+
persistent?: boolean;
|
|
213
222
|
depends?: string;
|
|
214
223
|
description?: string;
|
|
215
224
|
default?: any;
|
|
@@ -245,6 +254,7 @@ export namespace ServiceTypeDefinition {
|
|
|
245
254
|
collection: boolean;
|
|
246
255
|
private?: boolean;
|
|
247
256
|
credential?: boolean;
|
|
257
|
+
persistent?: boolean;
|
|
248
258
|
depends?: string;
|
|
249
259
|
description?: string;
|
|
250
260
|
default?: any;
|
|
@@ -267,6 +277,7 @@ export namespace ServiceTypeDefinition {
|
|
|
267
277
|
collection: boolean;
|
|
268
278
|
private?: boolean;
|
|
269
279
|
credential?: boolean;
|
|
280
|
+
persistent?: boolean;
|
|
270
281
|
depends?: string;
|
|
271
282
|
description?: string;
|
|
272
283
|
default?: any;
|
|
@@ -288,6 +299,7 @@ export namespace ServiceTypeDefinition {
|
|
|
288
299
|
collection: boolean;
|
|
289
300
|
private?: boolean;
|
|
290
301
|
credential?: boolean;
|
|
302
|
+
persistent?: boolean;
|
|
291
303
|
depends?: string;
|
|
292
304
|
description?: string;
|
|
293
305
|
default?: any;
|
|
@@ -322,6 +334,7 @@ export class Service extends Base {
|
|
|
322
334
|
mandatory: boolean;
|
|
323
335
|
private?: boolean;
|
|
324
336
|
credential?: boolean;
|
|
337
|
+
persistent?: boolean;
|
|
325
338
|
depends?: string;
|
|
326
339
|
description?: string;
|
|
327
340
|
default?: any;
|
|
@@ -341,6 +354,7 @@ export class Service extends Base {
|
|
|
341
354
|
mandatory: boolean;
|
|
342
355
|
private?: boolean;
|
|
343
356
|
credential?: boolean;
|
|
357
|
+
persistent?: boolean;
|
|
344
358
|
depends?: string;
|
|
345
359
|
description?: string;
|
|
346
360
|
default?: any;
|
|
@@ -362,6 +376,7 @@ export class Service extends Base {
|
|
|
362
376
|
collection: boolean;
|
|
363
377
|
private?: boolean;
|
|
364
378
|
credential?: boolean;
|
|
379
|
+
persistent?: boolean;
|
|
365
380
|
depends?: string;
|
|
366
381
|
description?: string;
|
|
367
382
|
default?: any;
|
|
@@ -383,6 +398,7 @@ export class Service extends Base {
|
|
|
383
398
|
collection: boolean;
|
|
384
399
|
private?: boolean;
|
|
385
400
|
credential?: boolean;
|
|
401
|
+
persistent?: boolean;
|
|
386
402
|
depends?: string;
|
|
387
403
|
description?: string;
|
|
388
404
|
default?: any;
|
|
@@ -406,6 +422,7 @@ export class Service extends Base {
|
|
|
406
422
|
collection: boolean;
|
|
407
423
|
private?: boolean;
|
|
408
424
|
credential?: boolean;
|
|
425
|
+
persistent?: boolean;
|
|
409
426
|
depends?: string;
|
|
410
427
|
description?: string;
|
|
411
428
|
default?: any;
|
|
@@ -425,6 +442,7 @@ export class Service extends Base {
|
|
|
425
442
|
collection: boolean;
|
|
426
443
|
private?: boolean;
|
|
427
444
|
credential?: boolean;
|
|
445
|
+
persistent?: boolean;
|
|
428
446
|
depends?: string;
|
|
429
447
|
description?: string;
|
|
430
448
|
default?: any;
|
|
@@ -446,6 +464,7 @@ export class Service extends Base {
|
|
|
446
464
|
mandatory: boolean;
|
|
447
465
|
private?: boolean;
|
|
448
466
|
credential?: boolean;
|
|
467
|
+
persistent?: boolean;
|
|
449
468
|
depends?: string;
|
|
450
469
|
description?: string;
|
|
451
470
|
default?: any;
|
|
@@ -467,6 +486,7 @@ export class Service extends Base {
|
|
|
467
486
|
collection: boolean;
|
|
468
487
|
private?: boolean;
|
|
469
488
|
credential?: boolean;
|
|
489
|
+
persistent?: boolean;
|
|
470
490
|
depends?: string;
|
|
471
491
|
description?: string;
|
|
472
492
|
default?: any;
|
|
@@ -498,6 +518,7 @@ export class Service extends Base {
|
|
|
498
518
|
collection: boolean;
|
|
499
519
|
private?: boolean;
|
|
500
520
|
credential?: boolean;
|
|
521
|
+
persistent?: boolean;
|
|
501
522
|
depends?: string;
|
|
502
523
|
description?: string;
|
|
503
524
|
default?: any;
|
|
@@ -520,6 +541,7 @@ export class Service extends Base {
|
|
|
520
541
|
collection: boolean;
|
|
521
542
|
private?: boolean;
|
|
522
543
|
credential?: boolean;
|
|
544
|
+
persistent?: boolean;
|
|
523
545
|
depends?: string;
|
|
524
546
|
description?: string;
|
|
525
547
|
default?: any;
|
|
@@ -541,6 +563,7 @@ export class Service extends Base {
|
|
|
541
563
|
collection: boolean;
|
|
542
564
|
private?: boolean;
|
|
543
565
|
credential?: boolean;
|
|
566
|
+
persistent?: boolean;
|
|
544
567
|
depends?: string;
|
|
545
568
|
description?: string;
|
|
546
569
|
default?: any;
|