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
|
@@ -16,6 +16,7 @@ export class InfluxdbService extends Service {
|
|
|
16
16
|
writable: boolean;
|
|
17
17
|
mandatory: boolean;
|
|
18
18
|
private?: boolean;
|
|
19
|
+
credential?: boolean;
|
|
19
20
|
depends?: string;
|
|
20
21
|
description?: string;
|
|
21
22
|
default?: any;
|
|
@@ -34,6 +35,7 @@ export class InfluxdbService extends Service {
|
|
|
34
35
|
writable: boolean;
|
|
35
36
|
mandatory: boolean;
|
|
36
37
|
private?: boolean;
|
|
38
|
+
credential?: boolean;
|
|
37
39
|
depends?: string;
|
|
38
40
|
description?: string;
|
|
39
41
|
default?: any;
|
|
@@ -54,6 +56,7 @@ export class InfluxdbService extends Service {
|
|
|
54
56
|
mandatory: boolean;
|
|
55
57
|
collection: boolean;
|
|
56
58
|
private?: boolean;
|
|
59
|
+
credential?: boolean;
|
|
57
60
|
depends?: string;
|
|
58
61
|
description?: string;
|
|
59
62
|
default?: any;
|
|
@@ -74,6 +77,7 @@ export class InfluxdbService extends Service {
|
|
|
74
77
|
mandatory: boolean;
|
|
75
78
|
collection: boolean;
|
|
76
79
|
private?: boolean;
|
|
80
|
+
credential?: boolean;
|
|
77
81
|
depends?: string;
|
|
78
82
|
description?: string;
|
|
79
83
|
default?: any;
|
|
@@ -96,6 +100,7 @@ export class InfluxdbService extends Service {
|
|
|
96
100
|
mandatory: boolean;
|
|
97
101
|
collection: boolean;
|
|
98
102
|
private?: boolean;
|
|
103
|
+
credential?: boolean;
|
|
99
104
|
depends?: string;
|
|
100
105
|
description?: string;
|
|
101
106
|
default?: any;
|
|
@@ -114,6 +119,7 @@ export class InfluxdbService extends Service {
|
|
|
114
119
|
mandatory: boolean;
|
|
115
120
|
collection: boolean;
|
|
116
121
|
private?: boolean;
|
|
122
|
+
credential?: boolean;
|
|
117
123
|
depends?: string;
|
|
118
124
|
description?: string;
|
|
119
125
|
default?: any;
|
|
@@ -134,6 +140,7 @@ export class InfluxdbService extends Service {
|
|
|
134
140
|
writable: boolean;
|
|
135
141
|
mandatory: boolean;
|
|
136
142
|
private?: boolean;
|
|
143
|
+
credential?: boolean;
|
|
137
144
|
depends?: string;
|
|
138
145
|
description?: string;
|
|
139
146
|
default?: any;
|
|
@@ -154,6 +161,7 @@ export class InfluxdbService extends Service {
|
|
|
154
161
|
mandatory: boolean;
|
|
155
162
|
collection: boolean;
|
|
156
163
|
private?: boolean;
|
|
164
|
+
credential?: boolean;
|
|
157
165
|
depends?: string;
|
|
158
166
|
description?: string;
|
|
159
167
|
default?: any;
|
|
@@ -184,6 +192,7 @@ export class InfluxdbService extends Service {
|
|
|
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;
|
|
@@ -205,6 +214,7 @@ export class InfluxdbService extends Service {
|
|
|
205
214
|
mandatory: boolean;
|
|
206
215
|
collection: boolean;
|
|
207
216
|
private?: boolean;
|
|
217
|
+
credential?: boolean;
|
|
208
218
|
depends?: string;
|
|
209
219
|
description?: string;
|
|
210
220
|
default?: any;
|
|
@@ -225,6 +235,7 @@ export class InfluxdbService extends Service {
|
|
|
225
235
|
mandatory: boolean;
|
|
226
236
|
collection: boolean;
|
|
227
237
|
private?: boolean;
|
|
238
|
+
credential?: boolean;
|
|
228
239
|
depends?: string;
|
|
229
240
|
description?: string;
|
|
230
241
|
default?: any;
|
|
@@ -257,6 +268,7 @@ export class InfluxdbService extends Service {
|
|
|
257
268
|
writable: boolean;
|
|
258
269
|
mandatory: boolean;
|
|
259
270
|
private?: boolean;
|
|
271
|
+
credential?: boolean;
|
|
260
272
|
depends?: string;
|
|
261
273
|
description?: string;
|
|
262
274
|
default?: any;
|
|
@@ -275,6 +287,7 @@ export class InfluxdbService extends Service {
|
|
|
275
287
|
writable: boolean;
|
|
276
288
|
mandatory: boolean;
|
|
277
289
|
private?: boolean;
|
|
290
|
+
credential?: boolean;
|
|
278
291
|
depends?: string;
|
|
279
292
|
description?: string;
|
|
280
293
|
default?: any;
|
|
@@ -295,6 +308,7 @@ export class InfluxdbService extends Service {
|
|
|
295
308
|
mandatory: boolean;
|
|
296
309
|
collection: boolean;
|
|
297
310
|
private?: boolean;
|
|
311
|
+
credential?: boolean;
|
|
298
312
|
depends?: string;
|
|
299
313
|
description?: string;
|
|
300
314
|
default?: any;
|
|
@@ -315,6 +329,7 @@ export class InfluxdbService extends Service {
|
|
|
315
329
|
mandatory: boolean;
|
|
316
330
|
collection: boolean;
|
|
317
331
|
private?: boolean;
|
|
332
|
+
credential?: boolean;
|
|
318
333
|
depends?: string;
|
|
319
334
|
description?: string;
|
|
320
335
|
default?: any;
|
|
@@ -337,6 +352,7 @@ export class InfluxdbService extends Service {
|
|
|
337
352
|
mandatory: boolean;
|
|
338
353
|
collection: boolean;
|
|
339
354
|
private?: boolean;
|
|
355
|
+
credential?: boolean;
|
|
340
356
|
depends?: string;
|
|
341
357
|
description?: string;
|
|
342
358
|
default?: any;
|
|
@@ -355,6 +371,7 @@ export class InfluxdbService extends Service {
|
|
|
355
371
|
mandatory: boolean;
|
|
356
372
|
collection: boolean;
|
|
357
373
|
private?: boolean;
|
|
374
|
+
credential?: boolean;
|
|
358
375
|
depends?: string;
|
|
359
376
|
description?: string;
|
|
360
377
|
default?: any;
|
|
@@ -375,6 +392,7 @@ export class InfluxdbService extends Service {
|
|
|
375
392
|
writable: boolean;
|
|
376
393
|
mandatory: boolean;
|
|
377
394
|
private?: boolean;
|
|
395
|
+
credential?: boolean;
|
|
378
396
|
depends?: string;
|
|
379
397
|
description?: string;
|
|
380
398
|
default?: any;
|
|
@@ -395,6 +413,7 @@ export class InfluxdbService extends Service {
|
|
|
395
413
|
mandatory: boolean;
|
|
396
414
|
collection: boolean;
|
|
397
415
|
private?: boolean;
|
|
416
|
+
credential?: boolean;
|
|
398
417
|
depends?: string;
|
|
399
418
|
description?: string;
|
|
400
419
|
default?: any;
|
|
@@ -425,6 +444,7 @@ export class InfluxdbService extends Service {
|
|
|
425
444
|
mandatory: boolean;
|
|
426
445
|
collection: boolean;
|
|
427
446
|
private?: boolean;
|
|
447
|
+
credential?: boolean;
|
|
428
448
|
depends?: string;
|
|
429
449
|
description?: string;
|
|
430
450
|
default?: any;
|
|
@@ -446,6 +466,7 @@ export class InfluxdbService extends Service {
|
|
|
446
466
|
mandatory: boolean;
|
|
447
467
|
collection: boolean;
|
|
448
468
|
private?: boolean;
|
|
469
|
+
credential?: boolean;
|
|
449
470
|
depends?: string;
|
|
450
471
|
description?: string;
|
|
451
472
|
default?: any;
|
|
@@ -466,6 +487,7 @@ export class InfluxdbService extends Service {
|
|
|
466
487
|
mandatory: boolean;
|
|
467
488
|
collection: boolean;
|
|
468
489
|
private?: boolean;
|
|
490
|
+
credential?: boolean;
|
|
469
491
|
depends?: string;
|
|
470
492
|
description?: string;
|
|
471
493
|
default?: any;
|
|
@@ -496,6 +518,7 @@ export class InfluxdbService extends Service {
|
|
|
496
518
|
writable: boolean;
|
|
497
519
|
mandatory: boolean;
|
|
498
520
|
private?: boolean;
|
|
521
|
+
credential?: boolean;
|
|
499
522
|
depends?: string;
|
|
500
523
|
description?: string;
|
|
501
524
|
default?: any;
|
|
@@ -514,6 +537,7 @@ export class InfluxdbService extends Service {
|
|
|
514
537
|
writable: boolean;
|
|
515
538
|
mandatory: boolean;
|
|
516
539
|
private?: boolean;
|
|
540
|
+
credential?: boolean;
|
|
517
541
|
depends?: string;
|
|
518
542
|
description?: string;
|
|
519
543
|
default?: any;
|
|
@@ -534,6 +558,7 @@ export class InfluxdbService extends Service {
|
|
|
534
558
|
mandatory: boolean;
|
|
535
559
|
collection: boolean;
|
|
536
560
|
private?: boolean;
|
|
561
|
+
credential?: boolean;
|
|
537
562
|
depends?: string;
|
|
538
563
|
description?: string;
|
|
539
564
|
default?: any;
|
|
@@ -554,6 +579,7 @@ export class InfluxdbService extends Service {
|
|
|
554
579
|
mandatory: boolean;
|
|
555
580
|
collection: boolean;
|
|
556
581
|
private?: boolean;
|
|
582
|
+
credential?: boolean;
|
|
557
583
|
depends?: string;
|
|
558
584
|
description?: string;
|
|
559
585
|
default?: any;
|
|
@@ -576,6 +602,7 @@ export class InfluxdbService extends Service {
|
|
|
576
602
|
mandatory: boolean;
|
|
577
603
|
collection: boolean;
|
|
578
604
|
private?: boolean;
|
|
605
|
+
credential?: boolean;
|
|
579
606
|
depends?: string;
|
|
580
607
|
description?: string;
|
|
581
608
|
default?: any;
|
|
@@ -594,6 +621,7 @@ export class InfluxdbService extends Service {
|
|
|
594
621
|
mandatory: boolean;
|
|
595
622
|
collection: boolean;
|
|
596
623
|
private?: boolean;
|
|
624
|
+
credential?: boolean;
|
|
597
625
|
depends?: string;
|
|
598
626
|
description?: string;
|
|
599
627
|
default?: any;
|
|
@@ -614,6 +642,7 @@ export class InfluxdbService extends Service {
|
|
|
614
642
|
writable: boolean;
|
|
615
643
|
mandatory: boolean;
|
|
616
644
|
private?: boolean;
|
|
645
|
+
credential?: boolean;
|
|
617
646
|
depends?: string;
|
|
618
647
|
description?: string;
|
|
619
648
|
default?: any;
|
|
@@ -634,6 +663,7 @@ export class InfluxdbService extends Service {
|
|
|
634
663
|
mandatory: boolean;
|
|
635
664
|
collection: boolean;
|
|
636
665
|
private?: boolean;
|
|
666
|
+
credential?: boolean;
|
|
637
667
|
depends?: string;
|
|
638
668
|
description?: string;
|
|
639
669
|
default?: any;
|
|
@@ -661,6 +691,7 @@ export class InfluxdbService extends Service {
|
|
|
661
691
|
mandatory: boolean;
|
|
662
692
|
collection: boolean;
|
|
663
693
|
private?: boolean;
|
|
694
|
+
credential?: boolean;
|
|
664
695
|
depends?: string;
|
|
665
696
|
description?: string;
|
|
666
697
|
default?: any;
|
package/types/services/kea.d.mts
CHANGED
|
@@ -16,6 +16,7 @@ export class KeaService extends Service {
|
|
|
16
16
|
writable: boolean;
|
|
17
17
|
mandatory: boolean;
|
|
18
18
|
private?: boolean;
|
|
19
|
+
credential?: boolean;
|
|
19
20
|
depends?: string;
|
|
20
21
|
description?: string;
|
|
21
22
|
default?: any;
|
|
@@ -34,6 +35,7 @@ export class KeaService extends Service {
|
|
|
34
35
|
writable: boolean;
|
|
35
36
|
mandatory: boolean;
|
|
36
37
|
private?: boolean;
|
|
38
|
+
credential?: boolean;
|
|
37
39
|
depends?: string;
|
|
38
40
|
description?: string;
|
|
39
41
|
default?: any;
|
|
@@ -54,6 +56,7 @@ export class KeaService extends Service {
|
|
|
54
56
|
mandatory: boolean;
|
|
55
57
|
collection: boolean;
|
|
56
58
|
private?: boolean;
|
|
59
|
+
credential?: boolean;
|
|
57
60
|
depends?: string;
|
|
58
61
|
description?: string;
|
|
59
62
|
default?: any;
|
|
@@ -74,6 +77,7 @@ export class KeaService extends Service {
|
|
|
74
77
|
mandatory: boolean;
|
|
75
78
|
collection: boolean;
|
|
76
79
|
private?: boolean;
|
|
80
|
+
credential?: boolean;
|
|
77
81
|
depends?: string;
|
|
78
82
|
description?: string;
|
|
79
83
|
default?: any;
|
|
@@ -96,6 +100,7 @@ export class KeaService extends Service {
|
|
|
96
100
|
mandatory: boolean;
|
|
97
101
|
collection: boolean;
|
|
98
102
|
private?: boolean;
|
|
103
|
+
credential?: boolean;
|
|
99
104
|
depends?: string;
|
|
100
105
|
description?: string;
|
|
101
106
|
default?: any;
|
|
@@ -114,6 +119,7 @@ export class KeaService extends Service {
|
|
|
114
119
|
mandatory: boolean;
|
|
115
120
|
collection: boolean;
|
|
116
121
|
private?: boolean;
|
|
122
|
+
credential?: boolean;
|
|
117
123
|
depends?: string;
|
|
118
124
|
description?: string;
|
|
119
125
|
default?: any;
|
|
@@ -134,6 +140,7 @@ export class KeaService extends Service {
|
|
|
134
140
|
writable: boolean;
|
|
135
141
|
mandatory: boolean;
|
|
136
142
|
private?: boolean;
|
|
143
|
+
credential?: boolean;
|
|
137
144
|
depends?: string;
|
|
138
145
|
description?: string;
|
|
139
146
|
default?: any;
|
|
@@ -154,6 +161,7 @@ export class KeaService extends Service {
|
|
|
154
161
|
mandatory: boolean;
|
|
155
162
|
collection: boolean;
|
|
156
163
|
private?: boolean;
|
|
164
|
+
credential?: boolean;
|
|
157
165
|
depends?: string;
|
|
158
166
|
description?: string;
|
|
159
167
|
default?: any;
|
|
@@ -184,6 +192,7 @@ export class KeaService extends Service {
|
|
|
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;
|
|
@@ -205,6 +214,7 @@ export class KeaService extends Service {
|
|
|
205
214
|
mandatory: boolean;
|
|
206
215
|
collection: boolean;
|
|
207
216
|
private?: boolean;
|
|
217
|
+
credential?: boolean;
|
|
208
218
|
depends?: string;
|
|
209
219
|
description?: string;
|
|
210
220
|
default?: any;
|
|
@@ -225,6 +235,7 @@ export class KeaService extends Service {
|
|
|
225
235
|
mandatory: boolean;
|
|
226
236
|
collection: boolean;
|
|
227
237
|
private?: boolean;
|
|
238
|
+
credential?: boolean;
|
|
228
239
|
depends?: string;
|
|
229
240
|
description?: string;
|
|
230
241
|
default?: any;
|
|
@@ -257,6 +268,7 @@ export class KeaService extends Service {
|
|
|
257
268
|
writable: boolean;
|
|
258
269
|
mandatory: boolean;
|
|
259
270
|
private?: boolean;
|
|
271
|
+
credential?: boolean;
|
|
260
272
|
depends?: string;
|
|
261
273
|
description?: string;
|
|
262
274
|
default?: any;
|
|
@@ -275,6 +287,7 @@ export class KeaService extends Service {
|
|
|
275
287
|
writable: boolean;
|
|
276
288
|
mandatory: boolean;
|
|
277
289
|
private?: boolean;
|
|
290
|
+
credential?: boolean;
|
|
278
291
|
depends?: string;
|
|
279
292
|
description?: string;
|
|
280
293
|
default?: any;
|
|
@@ -295,6 +308,7 @@ export class KeaService extends Service {
|
|
|
295
308
|
mandatory: boolean;
|
|
296
309
|
collection: boolean;
|
|
297
310
|
private?: boolean;
|
|
311
|
+
credential?: boolean;
|
|
298
312
|
depends?: string;
|
|
299
313
|
description?: string;
|
|
300
314
|
default?: any;
|
|
@@ -315,6 +329,7 @@ export class KeaService extends Service {
|
|
|
315
329
|
mandatory: boolean;
|
|
316
330
|
collection: boolean;
|
|
317
331
|
private?: boolean;
|
|
332
|
+
credential?: boolean;
|
|
318
333
|
depends?: string;
|
|
319
334
|
description?: string;
|
|
320
335
|
default?: any;
|
|
@@ -337,6 +352,7 @@ export class KeaService extends Service {
|
|
|
337
352
|
mandatory: boolean;
|
|
338
353
|
collection: boolean;
|
|
339
354
|
private?: boolean;
|
|
355
|
+
credential?: boolean;
|
|
340
356
|
depends?: string;
|
|
341
357
|
description?: string;
|
|
342
358
|
default?: any;
|
|
@@ -355,6 +371,7 @@ export class KeaService extends Service {
|
|
|
355
371
|
mandatory: boolean;
|
|
356
372
|
collection: boolean;
|
|
357
373
|
private?: boolean;
|
|
374
|
+
credential?: boolean;
|
|
358
375
|
depends?: string;
|
|
359
376
|
description?: string;
|
|
360
377
|
default?: any;
|
|
@@ -375,6 +392,7 @@ export class KeaService extends Service {
|
|
|
375
392
|
writable: boolean;
|
|
376
393
|
mandatory: boolean;
|
|
377
394
|
private?: boolean;
|
|
395
|
+
credential?: boolean;
|
|
378
396
|
depends?: string;
|
|
379
397
|
description?: string;
|
|
380
398
|
default?: any;
|
|
@@ -395,6 +413,7 @@ export class KeaService extends Service {
|
|
|
395
413
|
mandatory: boolean;
|
|
396
414
|
collection: boolean;
|
|
397
415
|
private?: boolean;
|
|
416
|
+
credential?: boolean;
|
|
398
417
|
depends?: string;
|
|
399
418
|
description?: string;
|
|
400
419
|
default?: any;
|
|
@@ -425,6 +444,7 @@ export class KeaService extends Service {
|
|
|
425
444
|
mandatory: boolean;
|
|
426
445
|
collection: boolean;
|
|
427
446
|
private?: boolean;
|
|
447
|
+
credential?: boolean;
|
|
428
448
|
depends?: string;
|
|
429
449
|
description?: string;
|
|
430
450
|
default?: any;
|
|
@@ -446,6 +466,7 @@ export class KeaService extends Service {
|
|
|
446
466
|
mandatory: boolean;
|
|
447
467
|
collection: boolean;
|
|
448
468
|
private?: boolean;
|
|
469
|
+
credential?: boolean;
|
|
449
470
|
depends?: string;
|
|
450
471
|
description?: string;
|
|
451
472
|
default?: any;
|
|
@@ -466,6 +487,7 @@ export class KeaService extends Service {
|
|
|
466
487
|
mandatory: boolean;
|
|
467
488
|
collection: boolean;
|
|
468
489
|
private?: boolean;
|
|
490
|
+
credential?: boolean;
|
|
469
491
|
depends?: string;
|
|
470
492
|
description?: string;
|
|
471
493
|
default?: any;
|
|
@@ -496,6 +518,7 @@ export class KeaService extends Service {
|
|
|
496
518
|
writable: boolean;
|
|
497
519
|
mandatory: boolean;
|
|
498
520
|
private?: boolean;
|
|
521
|
+
credential?: boolean;
|
|
499
522
|
depends?: string;
|
|
500
523
|
description?: string;
|
|
501
524
|
default?: any;
|
|
@@ -514,6 +537,7 @@ export class KeaService extends Service {
|
|
|
514
537
|
writable: boolean;
|
|
515
538
|
mandatory: boolean;
|
|
516
539
|
private?: boolean;
|
|
540
|
+
credential?: boolean;
|
|
517
541
|
depends?: string;
|
|
518
542
|
description?: string;
|
|
519
543
|
default?: any;
|
|
@@ -534,6 +558,7 @@ export class KeaService extends Service {
|
|
|
534
558
|
mandatory: boolean;
|
|
535
559
|
collection: boolean;
|
|
536
560
|
private?: boolean;
|
|
561
|
+
credential?: boolean;
|
|
537
562
|
depends?: string;
|
|
538
563
|
description?: string;
|
|
539
564
|
default?: any;
|
|
@@ -554,6 +579,7 @@ export class KeaService extends Service {
|
|
|
554
579
|
mandatory: boolean;
|
|
555
580
|
collection: boolean;
|
|
556
581
|
private?: boolean;
|
|
582
|
+
credential?: boolean;
|
|
557
583
|
depends?: string;
|
|
558
584
|
description?: string;
|
|
559
585
|
default?: any;
|
|
@@ -576,6 +602,7 @@ export class KeaService extends Service {
|
|
|
576
602
|
mandatory: boolean;
|
|
577
603
|
collection: boolean;
|
|
578
604
|
private?: boolean;
|
|
605
|
+
credential?: boolean;
|
|
579
606
|
depends?: string;
|
|
580
607
|
description?: string;
|
|
581
608
|
default?: any;
|
|
@@ -594,6 +621,7 @@ export class KeaService extends Service {
|
|
|
594
621
|
mandatory: boolean;
|
|
595
622
|
collection: boolean;
|
|
596
623
|
private?: boolean;
|
|
624
|
+
credential?: boolean;
|
|
597
625
|
depends?: string;
|
|
598
626
|
description?: string;
|
|
599
627
|
default?: any;
|
|
@@ -614,6 +642,7 @@ export class KeaService extends Service {
|
|
|
614
642
|
writable: boolean;
|
|
615
643
|
mandatory: boolean;
|
|
616
644
|
private?: boolean;
|
|
645
|
+
credential?: boolean;
|
|
617
646
|
depends?: string;
|
|
618
647
|
description?: string;
|
|
619
648
|
default?: any;
|
|
@@ -634,6 +663,7 @@ export class KeaService extends Service {
|
|
|
634
663
|
mandatory: boolean;
|
|
635
664
|
collection: boolean;
|
|
636
665
|
private?: boolean;
|
|
666
|
+
credential?: boolean;
|
|
637
667
|
depends?: string;
|
|
638
668
|
description?: string;
|
|
639
669
|
default?: any;
|
|
@@ -661,6 +691,7 @@ export class KeaService extends Service {
|
|
|
661
691
|
mandatory: boolean;
|
|
662
692
|
collection: boolean;
|
|
663
693
|
private?: boolean;
|
|
694
|
+
credential?: boolean;
|
|
664
695
|
depends?: string;
|
|
665
696
|
description?: string;
|
|
666
697
|
default?: any;
|
|
@@ -681,6 +712,7 @@ export class KeaService extends Service {
|
|
|
681
712
|
mandatory: boolean;
|
|
682
713
|
collection: boolean;
|
|
683
714
|
private?: boolean;
|
|
715
|
+
credential?: boolean;
|
|
684
716
|
depends?: string;
|
|
685
717
|
description?: string;
|
|
686
718
|
set?: Function;
|
|
@@ -700,6 +732,7 @@ export class KeaService extends Service {
|
|
|
700
732
|
mandatory: boolean;
|
|
701
733
|
collection: boolean;
|
|
702
734
|
private?: boolean;
|
|
735
|
+
credential?: boolean;
|
|
703
736
|
depends?: string;
|
|
704
737
|
description?: string;
|
|
705
738
|
set?: Function;
|
|
@@ -719,6 +752,7 @@ export class KeaService extends Service {
|
|
|
719
752
|
writable: boolean;
|
|
720
753
|
collection: boolean;
|
|
721
754
|
private?: boolean;
|
|
755
|
+
credential?: boolean;
|
|
722
756
|
depends?: string;
|
|
723
757
|
description?: string;
|
|
724
758
|
set?: Function;
|
|
@@ -737,6 +771,7 @@ export class KeaService extends Service {
|
|
|
737
771
|
mandatory: boolean;
|
|
738
772
|
collection: boolean;
|
|
739
773
|
private?: boolean;
|
|
774
|
+
credential?: boolean;
|
|
740
775
|
depends?: string;
|
|
741
776
|
description?: string;
|
|
742
777
|
default?: any;
|