pmcf 3.18.1 → 3.18.3
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/README.md +0 -1
- package/package.json +5 -5
- 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/README.md
CHANGED
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
[](https://github.com/prettier/prettier)
|
|
9
9
|
[](http://commitizen.github.io/cz-cli/)
|
|
10
10
|
[](https://snyk.io/test/github/arlac77/pmcf)
|
|
11
|
-
[](https://coveralls.io/github/arlac77/pmcf)
|
|
12
11
|
|
|
13
12
|
# pmcf
|
|
14
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "3.18.
|
|
3
|
+
"version": "3.18.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"ip-utilties": "^2.0.0",
|
|
57
|
-
"npm-pkgbuild": "^19.
|
|
58
|
-
"pacc": "^
|
|
57
|
+
"npm-pkgbuild": "^19.1.2",
|
|
58
|
+
"pacc": "^6.1.0",
|
|
59
59
|
"package-directory": "^8.1.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@types/node": "^
|
|
62
|
+
"@types/node": "^25.0.1",
|
|
63
63
|
"ava": "^6.4.1",
|
|
64
64
|
"c8": "^10.1.3",
|
|
65
65
|
"documentation": "^14.0.3",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"typescript": "^5.9.3"
|
|
68
68
|
},
|
|
69
69
|
"engines": {
|
|
70
|
-
"node": ">=24.
|
|
70
|
+
"node": ">=24.12.0"
|
|
71
71
|
},
|
|
72
72
|
"repository": {
|
|
73
73
|
"type": "git",
|
package/types/base.d.mts
CHANGED
package/types/cluster.d.mts
CHANGED
|
@@ -14,6 +14,7 @@ export class Cluster extends Host {
|
|
|
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 class Cluster extends Host {
|
|
|
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 class Cluster extends Host {
|
|
|
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 class Cluster extends Host {
|
|
|
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 class Cluster extends Host {
|
|
|
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 class Cluster extends Host {
|
|
|
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;
|
|
@@ -146,6 +152,7 @@ export class Cluster extends Host {
|
|
|
146
152
|
writable: boolean;
|
|
147
153
|
mandatory: boolean;
|
|
148
154
|
private?: boolean;
|
|
155
|
+
credential?: boolean;
|
|
149
156
|
depends?: string;
|
|
150
157
|
description?: string;
|
|
151
158
|
default?: any;
|
|
@@ -164,6 +171,7 @@ export class Cluster extends Host {
|
|
|
164
171
|
writable: boolean;
|
|
165
172
|
mandatory: boolean;
|
|
166
173
|
private?: boolean;
|
|
174
|
+
credential?: boolean;
|
|
167
175
|
depends?: string;
|
|
168
176
|
description?: string;
|
|
169
177
|
default?: any;
|
|
@@ -184,6 +192,7 @@ export class Cluster extends Host {
|
|
|
184
192
|
mandatory: boolean;
|
|
185
193
|
collection: boolean;
|
|
186
194
|
private?: boolean;
|
|
195
|
+
credential?: boolean;
|
|
187
196
|
depends?: string;
|
|
188
197
|
description?: string;
|
|
189
198
|
default?: any;
|
|
@@ -204,6 +213,7 @@ export class Cluster extends Host {
|
|
|
204
213
|
mandatory: boolean;
|
|
205
214
|
collection: boolean;
|
|
206
215
|
private?: boolean;
|
|
216
|
+
credential?: boolean;
|
|
207
217
|
depends?: string;
|
|
208
218
|
description?: string;
|
|
209
219
|
default?: any;
|
|
@@ -226,6 +236,7 @@ export class Cluster extends Host {
|
|
|
226
236
|
mandatory: boolean;
|
|
227
237
|
collection: boolean;
|
|
228
238
|
private?: boolean;
|
|
239
|
+
credential?: boolean;
|
|
229
240
|
depends?: string;
|
|
230
241
|
description?: string;
|
|
231
242
|
default?: any;
|
|
@@ -244,6 +255,7 @@ export class Cluster extends Host {
|
|
|
244
255
|
mandatory: boolean;
|
|
245
256
|
collection: boolean;
|
|
246
257
|
private?: boolean;
|
|
258
|
+
credential?: boolean;
|
|
247
259
|
depends?: string;
|
|
248
260
|
description?: string;
|
|
249
261
|
default?: any;
|
|
@@ -264,6 +276,7 @@ export class Cluster extends Host {
|
|
|
264
276
|
writable: boolean;
|
|
265
277
|
mandatory: boolean;
|
|
266
278
|
private?: boolean;
|
|
279
|
+
credential?: boolean;
|
|
267
280
|
depends?: string;
|
|
268
281
|
description?: string;
|
|
269
282
|
default?: any;
|
|
@@ -284,6 +297,7 @@ export class Cluster extends Host {
|
|
|
284
297
|
mandatory: boolean;
|
|
285
298
|
collection: boolean;
|
|
286
299
|
private?: boolean;
|
|
300
|
+
credential?: boolean;
|
|
287
301
|
depends?: string;
|
|
288
302
|
description?: string;
|
|
289
303
|
default?: any;
|
|
@@ -311,6 +325,7 @@ export class Cluster extends Host {
|
|
|
311
325
|
writable: boolean;
|
|
312
326
|
mandatory: boolean;
|
|
313
327
|
private?: boolean;
|
|
328
|
+
credential?: boolean;
|
|
314
329
|
depends?: string;
|
|
315
330
|
description?: string;
|
|
316
331
|
default?: any;
|
|
@@ -329,6 +344,7 @@ export class Cluster extends Host {
|
|
|
329
344
|
writable: boolean;
|
|
330
345
|
mandatory: boolean;
|
|
331
346
|
private?: boolean;
|
|
347
|
+
credential?: boolean;
|
|
332
348
|
depends?: string;
|
|
333
349
|
description?: string;
|
|
334
350
|
default?: any;
|
|
@@ -347,6 +363,7 @@ export class Cluster extends Host {
|
|
|
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;
|
|
@@ -15,6 +15,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
15
15
|
writable: boolean;
|
|
16
16
|
mandatory: boolean;
|
|
17
17
|
private?: boolean;
|
|
18
|
+
credential?: boolean;
|
|
18
19
|
depends?: string;
|
|
19
20
|
description?: string;
|
|
20
21
|
default?: any;
|
|
@@ -33,6 +34,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
33
34
|
writable: boolean;
|
|
34
35
|
mandatory: boolean;
|
|
35
36
|
private?: boolean;
|
|
37
|
+
credential?: boolean;
|
|
36
38
|
depends?: string;
|
|
37
39
|
description?: string;
|
|
38
40
|
default?: any;
|
|
@@ -53,6 +55,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
53
55
|
mandatory: boolean;
|
|
54
56
|
collection: boolean;
|
|
55
57
|
private?: boolean;
|
|
58
|
+
credential?: boolean;
|
|
56
59
|
depends?: string;
|
|
57
60
|
description?: string;
|
|
58
61
|
default?: any;
|
|
@@ -73,6 +76,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
73
76
|
mandatory: boolean;
|
|
74
77
|
collection: boolean;
|
|
75
78
|
private?: boolean;
|
|
79
|
+
credential?: boolean;
|
|
76
80
|
depends?: string;
|
|
77
81
|
description?: string;
|
|
78
82
|
default?: any;
|
|
@@ -95,6 +99,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
95
99
|
mandatory: boolean;
|
|
96
100
|
collection: boolean;
|
|
97
101
|
private?: boolean;
|
|
102
|
+
credential?: boolean;
|
|
98
103
|
depends?: string;
|
|
99
104
|
description?: string;
|
|
100
105
|
default?: any;
|
|
@@ -113,6 +118,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
113
118
|
mandatory: boolean;
|
|
114
119
|
collection: boolean;
|
|
115
120
|
private?: boolean;
|
|
121
|
+
credential?: boolean;
|
|
116
122
|
depends?: string;
|
|
117
123
|
description?: string;
|
|
118
124
|
default?: any;
|
|
@@ -133,6 +139,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
133
139
|
writable: boolean;
|
|
134
140
|
mandatory: boolean;
|
|
135
141
|
private?: boolean;
|
|
142
|
+
credential?: boolean;
|
|
136
143
|
depends?: string;
|
|
137
144
|
description?: string;
|
|
138
145
|
default?: any;
|
|
@@ -153,6 +160,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
153
160
|
mandatory: boolean;
|
|
154
161
|
collection: boolean;
|
|
155
162
|
private?: boolean;
|
|
163
|
+
credential?: boolean;
|
|
156
164
|
depends?: string;
|
|
157
165
|
description?: string;
|
|
158
166
|
default?: any;
|
|
@@ -178,6 +186,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
178
186
|
writable: boolean;
|
|
179
187
|
mandatory: boolean;
|
|
180
188
|
private?: boolean;
|
|
189
|
+
credential?: boolean;
|
|
181
190
|
depends?: string;
|
|
182
191
|
description?: string;
|
|
183
192
|
default?: any;
|
|
@@ -209,6 +218,7 @@ export class ExtraSourceService extends Service {
|
|
|
209
218
|
writable: boolean;
|
|
210
219
|
mandatory: boolean;
|
|
211
220
|
private?: boolean;
|
|
221
|
+
credential?: boolean;
|
|
212
222
|
depends?: string;
|
|
213
223
|
description?: string;
|
|
214
224
|
default?: any;
|
|
@@ -227,6 +237,7 @@ export class ExtraSourceService extends Service {
|
|
|
227
237
|
writable: boolean;
|
|
228
238
|
mandatory: boolean;
|
|
229
239
|
private?: boolean;
|
|
240
|
+
credential?: boolean;
|
|
230
241
|
depends?: string;
|
|
231
242
|
description?: string;
|
|
232
243
|
default?: any;
|
|
@@ -247,6 +258,7 @@ export class ExtraSourceService extends Service {
|
|
|
247
258
|
mandatory: boolean;
|
|
248
259
|
collection: boolean;
|
|
249
260
|
private?: boolean;
|
|
261
|
+
credential?: boolean;
|
|
250
262
|
depends?: string;
|
|
251
263
|
description?: string;
|
|
252
264
|
default?: any;
|
|
@@ -267,6 +279,7 @@ export class ExtraSourceService extends Service {
|
|
|
267
279
|
mandatory: boolean;
|
|
268
280
|
collection: boolean;
|
|
269
281
|
private?: boolean;
|
|
282
|
+
credential?: boolean;
|
|
270
283
|
depends?: string;
|
|
271
284
|
description?: string;
|
|
272
285
|
default?: any;
|
|
@@ -289,6 +302,7 @@ export class ExtraSourceService extends Service {
|
|
|
289
302
|
mandatory: boolean;
|
|
290
303
|
collection: boolean;
|
|
291
304
|
private?: boolean;
|
|
305
|
+
credential?: boolean;
|
|
292
306
|
depends?: string;
|
|
293
307
|
description?: string;
|
|
294
308
|
default?: any;
|
|
@@ -307,6 +321,7 @@ export class ExtraSourceService extends Service {
|
|
|
307
321
|
mandatory: boolean;
|
|
308
322
|
collection: boolean;
|
|
309
323
|
private?: boolean;
|
|
324
|
+
credential?: boolean;
|
|
310
325
|
depends?: string;
|
|
311
326
|
description?: string;
|
|
312
327
|
default?: any;
|
|
@@ -327,6 +342,7 @@ export class ExtraSourceService extends Service {
|
|
|
327
342
|
writable: boolean;
|
|
328
343
|
mandatory: boolean;
|
|
329
344
|
private?: boolean;
|
|
345
|
+
credential?: boolean;
|
|
330
346
|
depends?: string;
|
|
331
347
|
description?: string;
|
|
332
348
|
default?: any;
|
|
@@ -347,6 +363,7 @@ export class ExtraSourceService extends Service {
|
|
|
347
363
|
mandatory: boolean;
|
|
348
364
|
collection: boolean;
|
|
349
365
|
private?: boolean;
|
|
366
|
+
credential?: boolean;
|
|
350
367
|
depends?: string;
|
|
351
368
|
description?: string;
|
|
352
369
|
default?: any;
|
|
@@ -377,6 +394,7 @@ export class ExtraSourceService extends Service {
|
|
|
377
394
|
mandatory: boolean;
|
|
378
395
|
collection: boolean;
|
|
379
396
|
private?: boolean;
|
|
397
|
+
credential?: boolean;
|
|
380
398
|
depends?: string;
|
|
381
399
|
description?: string;
|
|
382
400
|
default?: any;
|
|
@@ -398,6 +416,7 @@ export class ExtraSourceService extends Service {
|
|
|
398
416
|
mandatory: boolean;
|
|
399
417
|
collection: boolean;
|
|
400
418
|
private?: boolean;
|
|
419
|
+
credential?: boolean;
|
|
401
420
|
depends?: string;
|
|
402
421
|
description?: string;
|
|
403
422
|
default?: any;
|
|
@@ -418,6 +437,7 @@ export class ExtraSourceService extends Service {
|
|
|
418
437
|
mandatory: boolean;
|
|
419
438
|
collection: boolean;
|
|
420
439
|
private?: boolean;
|
|
440
|
+
credential?: boolean;
|
|
421
441
|
depends?: string;
|
|
422
442
|
description?: string;
|
|
423
443
|
default?: any;
|
|
@@ -450,6 +470,7 @@ export class ExtraSourceService extends Service {
|
|
|
450
470
|
writable: boolean;
|
|
451
471
|
mandatory: boolean;
|
|
452
472
|
private?: boolean;
|
|
473
|
+
credential?: boolean;
|
|
453
474
|
depends?: string;
|
|
454
475
|
description?: string;
|
|
455
476
|
default?: any;
|
|
@@ -468,6 +489,7 @@ export class ExtraSourceService extends Service {
|
|
|
468
489
|
writable: boolean;
|
|
469
490
|
mandatory: boolean;
|
|
470
491
|
private?: boolean;
|
|
492
|
+
credential?: boolean;
|
|
471
493
|
depends?: string;
|
|
472
494
|
description?: string;
|
|
473
495
|
default?: any;
|
|
@@ -488,6 +510,7 @@ export class ExtraSourceService extends Service {
|
|
|
488
510
|
mandatory: boolean;
|
|
489
511
|
collection: boolean;
|
|
490
512
|
private?: boolean;
|
|
513
|
+
credential?: boolean;
|
|
491
514
|
depends?: string;
|
|
492
515
|
description?: string;
|
|
493
516
|
default?: any;
|
|
@@ -508,6 +531,7 @@ export class ExtraSourceService extends Service {
|
|
|
508
531
|
mandatory: boolean;
|
|
509
532
|
collection: boolean;
|
|
510
533
|
private?: boolean;
|
|
534
|
+
credential?: boolean;
|
|
511
535
|
depends?: string;
|
|
512
536
|
description?: string;
|
|
513
537
|
default?: any;
|
|
@@ -530,6 +554,7 @@ export class ExtraSourceService extends Service {
|
|
|
530
554
|
mandatory: boolean;
|
|
531
555
|
collection: boolean;
|
|
532
556
|
private?: boolean;
|
|
557
|
+
credential?: boolean;
|
|
533
558
|
depends?: string;
|
|
534
559
|
description?: string;
|
|
535
560
|
default?: any;
|
|
@@ -548,6 +573,7 @@ export class ExtraSourceService extends Service {
|
|
|
548
573
|
mandatory: boolean;
|
|
549
574
|
collection: boolean;
|
|
550
575
|
private?: boolean;
|
|
576
|
+
credential?: boolean;
|
|
551
577
|
depends?: string;
|
|
552
578
|
description?: string;
|
|
553
579
|
default?: any;
|
|
@@ -568,6 +594,7 @@ export class ExtraSourceService extends Service {
|
|
|
568
594
|
writable: boolean;
|
|
569
595
|
mandatory: boolean;
|
|
570
596
|
private?: boolean;
|
|
597
|
+
credential?: boolean;
|
|
571
598
|
depends?: string;
|
|
572
599
|
description?: string;
|
|
573
600
|
default?: any;
|
|
@@ -588,6 +615,7 @@ export class ExtraSourceService extends Service {
|
|
|
588
615
|
mandatory: boolean;
|
|
589
616
|
collection: boolean;
|
|
590
617
|
private?: boolean;
|
|
618
|
+
credential?: boolean;
|
|
591
619
|
depends?: string;
|
|
592
620
|
description?: string;
|
|
593
621
|
default?: any;
|
|
@@ -618,6 +646,7 @@ export class ExtraSourceService extends Service {
|
|
|
618
646
|
mandatory: boolean;
|
|
619
647
|
collection: boolean;
|
|
620
648
|
private?: boolean;
|
|
649
|
+
credential?: boolean;
|
|
621
650
|
depends?: string;
|
|
622
651
|
description?: string;
|
|
623
652
|
default?: any;
|
|
@@ -639,6 +668,7 @@ export class ExtraSourceService extends Service {
|
|
|
639
668
|
mandatory: boolean;
|
|
640
669
|
collection: boolean;
|
|
641
670
|
private?: boolean;
|
|
671
|
+
credential?: boolean;
|
|
642
672
|
depends?: string;
|
|
643
673
|
description?: string;
|
|
644
674
|
default?: any;
|
|
@@ -659,6 +689,7 @@ export class ExtraSourceService extends Service {
|
|
|
659
689
|
mandatory: boolean;
|
|
660
690
|
collection: boolean;
|
|
661
691
|
private?: boolean;
|
|
692
|
+
credential?: boolean;
|
|
662
693
|
depends?: string;
|
|
663
694
|
description?: string;
|
|
664
695
|
default?: any;
|
|
@@ -689,6 +720,7 @@ export class ExtraSourceService extends Service {
|
|
|
689
720
|
writable: boolean;
|
|
690
721
|
mandatory: boolean;
|
|
691
722
|
private?: boolean;
|
|
723
|
+
credential?: boolean;
|
|
692
724
|
depends?: string;
|
|
693
725
|
description?: string;
|
|
694
726
|
default?: any;
|
|
@@ -707,6 +739,7 @@ export class ExtraSourceService extends Service {
|
|
|
707
739
|
writable: boolean;
|
|
708
740
|
mandatory: boolean;
|
|
709
741
|
private?: boolean;
|
|
742
|
+
credential?: boolean;
|
|
710
743
|
depends?: string;
|
|
711
744
|
description?: string;
|
|
712
745
|
default?: any;
|
|
@@ -727,6 +760,7 @@ export class ExtraSourceService extends Service {
|
|
|
727
760
|
mandatory: boolean;
|
|
728
761
|
collection: boolean;
|
|
729
762
|
private?: boolean;
|
|
763
|
+
credential?: boolean;
|
|
730
764
|
depends?: string;
|
|
731
765
|
description?: string;
|
|
732
766
|
default?: any;
|
|
@@ -747,6 +781,7 @@ export class ExtraSourceService extends Service {
|
|
|
747
781
|
mandatory: boolean;
|
|
748
782
|
collection: boolean;
|
|
749
783
|
private?: boolean;
|
|
784
|
+
credential?: boolean;
|
|
750
785
|
depends?: string;
|
|
751
786
|
description?: string;
|
|
752
787
|
default?: any;
|
|
@@ -769,6 +804,7 @@ export class ExtraSourceService extends Service {
|
|
|
769
804
|
mandatory: boolean;
|
|
770
805
|
collection: boolean;
|
|
771
806
|
private?: boolean;
|
|
807
|
+
credential?: boolean;
|
|
772
808
|
depends?: string;
|
|
773
809
|
description?: string;
|
|
774
810
|
default?: any;
|
|
@@ -787,6 +823,7 @@ export class ExtraSourceService extends Service {
|
|
|
787
823
|
mandatory: boolean;
|
|
788
824
|
collection: boolean;
|
|
789
825
|
private?: boolean;
|
|
826
|
+
credential?: boolean;
|
|
790
827
|
depends?: string;
|
|
791
828
|
description?: string;
|
|
792
829
|
default?: any;
|
|
@@ -807,6 +844,7 @@ export class ExtraSourceService extends Service {
|
|
|
807
844
|
writable: boolean;
|
|
808
845
|
mandatory: boolean;
|
|
809
846
|
private?: boolean;
|
|
847
|
+
credential?: boolean;
|
|
810
848
|
depends?: string;
|
|
811
849
|
description?: string;
|
|
812
850
|
default?: any;
|
|
@@ -827,6 +865,7 @@ export class ExtraSourceService extends Service {
|
|
|
827
865
|
mandatory: boolean;
|
|
828
866
|
collection: boolean;
|
|
829
867
|
private?: boolean;
|
|
868
|
+
credential?: boolean;
|
|
830
869
|
depends?: string;
|
|
831
870
|
description?: string;
|
|
832
871
|
default?: any;
|
|
@@ -852,6 +891,7 @@ export class ExtraSourceService extends Service {
|
|
|
852
891
|
writable: boolean;
|
|
853
892
|
mandatory: boolean;
|
|
854
893
|
private?: boolean;
|
|
894
|
+
credential?: boolean;
|
|
855
895
|
depends?: string;
|
|
856
896
|
description?: string;
|
|
857
897
|
default?: any;
|
package/types/host.d.mts
CHANGED
|
@@ -12,6 +12,7 @@ export class Host extends ServiceOwner {
|
|
|
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 Host extends ServiceOwner {
|
|
|
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;
|
|
@@ -50,6 +52,7 @@ export class Host extends ServiceOwner {
|
|
|
50
52
|
mandatory: boolean;
|
|
51
53
|
collection: boolean;
|
|
52
54
|
private?: boolean;
|
|
55
|
+
credential?: boolean;
|
|
53
56
|
depends?: string;
|
|
54
57
|
description?: string;
|
|
55
58
|
default?: any;
|
|
@@ -70,6 +73,7 @@ export class Host extends ServiceOwner {
|
|
|
70
73
|
mandatory: boolean;
|
|
71
74
|
collection: boolean;
|
|
72
75
|
private?: boolean;
|
|
76
|
+
credential?: boolean;
|
|
73
77
|
depends?: string;
|
|
74
78
|
description?: string;
|
|
75
79
|
default?: any;
|
|
@@ -92,6 +96,7 @@ export class Host extends ServiceOwner {
|
|
|
92
96
|
mandatory: boolean;
|
|
93
97
|
collection: boolean;
|
|
94
98
|
private?: boolean;
|
|
99
|
+
credential?: boolean;
|
|
95
100
|
depends?: string;
|
|
96
101
|
description?: string;
|
|
97
102
|
default?: any;
|
|
@@ -110,6 +115,7 @@ export class Host extends ServiceOwner {
|
|
|
110
115
|
mandatory: boolean;
|
|
111
116
|
collection: boolean;
|
|
112
117
|
private?: boolean;
|
|
118
|
+
credential?: boolean;
|
|
113
119
|
depends?: string;
|
|
114
120
|
description?: string;
|
|
115
121
|
default?: any;
|
|
@@ -130,6 +136,7 @@ export class Host extends ServiceOwner {
|
|
|
130
136
|
writable: boolean;
|
|
131
137
|
mandatory: boolean;
|
|
132
138
|
private?: boolean;
|
|
139
|
+
credential?: boolean;
|
|
133
140
|
depends?: string;
|
|
134
141
|
description?: string;
|
|
135
142
|
default?: any;
|
|
@@ -150,6 +157,7 @@ export class Host extends ServiceOwner {
|
|
|
150
157
|
mandatory: boolean;
|
|
151
158
|
collection: boolean;
|
|
152
159
|
private?: boolean;
|
|
160
|
+
credential?: boolean;
|
|
153
161
|
depends?: string;
|
|
154
162
|
description?: string;
|
|
155
163
|
default?: any;
|
package/types/location.d.mts
CHANGED
|
@@ -14,6 +14,7 @@ export class Location extends Owner {
|
|
|
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 class Location extends Owner {
|
|
|
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 class Location extends Owner {
|
|
|
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 class Location extends Owner {
|
|
|
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 class Location extends Owner {
|
|
|
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 class Location extends Owner {
|
|
|
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;
|
|
@@ -146,6 +152,7 @@ export class Location extends Owner {
|
|
|
146
152
|
writable: boolean;
|
|
147
153
|
mandatory: boolean;
|
|
148
154
|
private?: boolean;
|
|
155
|
+
credential?: boolean;
|
|
149
156
|
depends?: string;
|
|
150
157
|
description?: string;
|
|
151
158
|
default?: any;
|
|
@@ -164,6 +171,7 @@ export class Location extends Owner {
|
|
|
164
171
|
writable: boolean;
|
|
165
172
|
mandatory: boolean;
|
|
166
173
|
private?: boolean;
|
|
174
|
+
credential?: boolean;
|
|
167
175
|
depends?: string;
|
|
168
176
|
description?: string;
|
|
169
177
|
default?: any;
|
|
@@ -182,6 +190,7 @@ export class Location extends Owner {
|
|
|
182
190
|
writable: boolean;
|
|
183
191
|
mandatory: boolean;
|
|
184
192
|
private?: boolean;
|
|
193
|
+
credential?: boolean;
|
|
185
194
|
depends?: string;
|
|
186
195
|
description?: string;
|
|
187
196
|
default?: any;
|
|
@@ -208,6 +217,7 @@ export class Location extends Owner {
|
|
|
208
217
|
writable: boolean;
|
|
209
218
|
mandatory: boolean;
|
|
210
219
|
private?: boolean;
|
|
220
|
+
credential?: boolean;
|
|
211
221
|
depends?: string;
|
|
212
222
|
description?: string;
|
|
213
223
|
default?: any;
|
|
@@ -228,6 +238,7 @@ export class Location extends Owner {
|
|
|
228
238
|
writable: boolean;
|
|
229
239
|
mandatory: boolean;
|
|
230
240
|
private?: boolean;
|
|
241
|
+
credential?: boolean;
|
|
231
242
|
depends?: string;
|
|
232
243
|
description?: string;
|
|
233
244
|
default?: any;
|
|
@@ -252,6 +263,7 @@ export class Location extends Owner {
|
|
|
252
263
|
mandatory: boolean;
|
|
253
264
|
collection: boolean;
|
|
254
265
|
private?: boolean;
|
|
266
|
+
credential?: boolean;
|
|
255
267
|
depends?: string;
|
|
256
268
|
description?: string;
|
|
257
269
|
default?: any;
|