pmcf 3.1.1 → 3.1.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/types/base.d.mts +0 -6
- package/types/cluster.d.mts +0 -38
- package/types/extra-source-service.d.mts +0 -16
- package/types/host.d.mts +0 -24
- package/types/location.d.mts +0 -29
- package/types/network-interfaces/ethernet.d.mts +0 -40
- package/types/network-interfaces/loopback.d.mts +0 -40
- package/types/network-interfaces/network-interface.d.mts +0 -40
- package/types/network-interfaces/wireguard.d.mts +0 -40
- package/types/network-interfaces/wlan.d.mts +0 -60
- package/types/network-support.d.mts +0 -11
- package/types/network.d.mts +0 -20
- package/types/owner.d.mts +0 -14
- package/types/root.d.mts +0 -29
- package/types/service.d.mts +0 -36
- package/types/services/bind.d.mts +0 -44
- package/types/services/chrony.d.mts +0 -32
- package/types/services/influxdb.d.mts +0 -32
- package/types/services/kea.d.mts +0 -37
- package/types/services/mosquitto.d.mts +0 -32
- package/types/services/openldap.d.mts +0 -35
- package/types/services/systemd-journal-remote.d.mts +0 -32
- package/types/services/systemd-journal-upload.d.mts +0 -33
- package/types/services/systemd-journal.d.mts +0 -32
- package/types/services/systemd-resolved.d.mts +0 -32
- package/types/services/systemd-timesyncd.d.mts +0 -32
- package/types/subnet.d.mts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"ip-utilties": "^1.4.7",
|
|
54
54
|
"npm-pkgbuild": "^18.2.16",
|
|
55
|
-
"pacc": "^4.
|
|
55
|
+
"pacc": "^4.1.0",
|
|
56
56
|
"package-directory": "^8.1.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
package/types/base.d.mts
CHANGED
|
@@ -22,7 +22,6 @@ export class Base {
|
|
|
22
22
|
collection: boolean;
|
|
23
23
|
private?: boolean;
|
|
24
24
|
depends?: string;
|
|
25
|
-
additionalAttributes: string[];
|
|
26
25
|
description?: string;
|
|
27
26
|
default?: any;
|
|
28
27
|
set?: Function;
|
|
@@ -37,7 +36,6 @@ export class Base {
|
|
|
37
36
|
collection: boolean;
|
|
38
37
|
private?: boolean;
|
|
39
38
|
depends?: string;
|
|
40
|
-
additionalAttributes: string[];
|
|
41
39
|
description?: string;
|
|
42
40
|
default?: any;
|
|
43
41
|
set?: Function;
|
|
@@ -57,7 +55,6 @@ export class Base {
|
|
|
57
55
|
collection: boolean;
|
|
58
56
|
private?: boolean;
|
|
59
57
|
depends?: string;
|
|
60
|
-
additionalAttributes: string[];
|
|
61
58
|
description?: string;
|
|
62
59
|
default?: any;
|
|
63
60
|
set?: Function;
|
|
@@ -72,7 +69,6 @@ export class Base {
|
|
|
72
69
|
collection: boolean;
|
|
73
70
|
private?: boolean;
|
|
74
71
|
depends?: string;
|
|
75
|
-
additionalAttributes: string[];
|
|
76
72
|
description?: string;
|
|
77
73
|
default?: any;
|
|
78
74
|
set?: Function;
|
|
@@ -88,7 +84,6 @@ export class Base {
|
|
|
88
84
|
collection: boolean;
|
|
89
85
|
private?: boolean;
|
|
90
86
|
depends?: string;
|
|
91
|
-
additionalAttributes: string[];
|
|
92
87
|
description?: string;
|
|
93
88
|
set?: Function;
|
|
94
89
|
get?: Function;
|
|
@@ -102,7 +97,6 @@ export class Base {
|
|
|
102
97
|
mandatory: boolean;
|
|
103
98
|
private?: boolean;
|
|
104
99
|
depends?: string;
|
|
105
|
-
additionalAttributes: string[];
|
|
106
100
|
description?: string;
|
|
107
101
|
default?: any;
|
|
108
102
|
set?: Function;
|
package/types/cluster.d.mts
CHANGED
|
@@ -23,7 +23,6 @@ export class Cluster extends Host {
|
|
|
23
23
|
collection: boolean;
|
|
24
24
|
private?: boolean;
|
|
25
25
|
depends?: string;
|
|
26
|
-
additionalAttributes: string[];
|
|
27
26
|
description?: string;
|
|
28
27
|
default?: any;
|
|
29
28
|
set?: Function;
|
|
@@ -38,7 +37,6 @@ export class Cluster extends Host {
|
|
|
38
37
|
collection: boolean;
|
|
39
38
|
private?: boolean;
|
|
40
39
|
depends?: string;
|
|
41
|
-
additionalAttributes: string[];
|
|
42
40
|
description?: string;
|
|
43
41
|
default?: any;
|
|
44
42
|
set?: Function;
|
|
@@ -58,7 +56,6 @@ export class Cluster extends Host {
|
|
|
58
56
|
collection: boolean;
|
|
59
57
|
private?: boolean;
|
|
60
58
|
depends?: string;
|
|
61
|
-
additionalAttributes: string[];
|
|
62
59
|
description?: string;
|
|
63
60
|
default?: any;
|
|
64
61
|
set?: Function;
|
|
@@ -73,7 +70,6 @@ export class Cluster extends Host {
|
|
|
73
70
|
collection: boolean;
|
|
74
71
|
private?: boolean;
|
|
75
72
|
depends?: string;
|
|
76
|
-
additionalAttributes: string[];
|
|
77
73
|
description?: string;
|
|
78
74
|
default?: any;
|
|
79
75
|
set?: Function;
|
|
@@ -89,7 +85,6 @@ export class Cluster extends Host {
|
|
|
89
85
|
collection: boolean;
|
|
90
86
|
private?: boolean;
|
|
91
87
|
depends?: string;
|
|
92
|
-
additionalAttributes: string[];
|
|
93
88
|
description?: string;
|
|
94
89
|
set?: Function;
|
|
95
90
|
get?: Function;
|
|
@@ -103,7 +98,6 @@ export class Cluster extends Host {
|
|
|
103
98
|
mandatory: boolean;
|
|
104
99
|
private?: boolean;
|
|
105
100
|
depends?: string;
|
|
106
|
-
additionalAttributes: string[];
|
|
107
101
|
description?: string;
|
|
108
102
|
default?: any;
|
|
109
103
|
set?: Function;
|
|
@@ -143,7 +137,6 @@ export class Cluster extends Host {
|
|
|
143
137
|
collection: boolean;
|
|
144
138
|
private?: boolean;
|
|
145
139
|
depends?: string;
|
|
146
|
-
additionalAttributes: string[];
|
|
147
140
|
description?: string;
|
|
148
141
|
default?: any;
|
|
149
142
|
set?: Function;
|
|
@@ -173,7 +166,6 @@ export class Cluster extends Host {
|
|
|
173
166
|
collection: boolean;
|
|
174
167
|
private?: boolean;
|
|
175
168
|
depends?: string;
|
|
176
|
-
additionalAttributes: string[];
|
|
177
169
|
description?: string;
|
|
178
170
|
default?: any;
|
|
179
171
|
set?: Function;
|
|
@@ -188,7 +180,6 @@ export class Cluster extends Host {
|
|
|
188
180
|
collection: boolean;
|
|
189
181
|
private?: boolean;
|
|
190
182
|
depends?: string;
|
|
191
|
-
additionalAttributes: string[];
|
|
192
183
|
description?: string;
|
|
193
184
|
default?: any;
|
|
194
185
|
set?: Function;
|
|
@@ -203,7 +194,6 @@ export class Cluster extends Host {
|
|
|
203
194
|
mandatory: boolean;
|
|
204
195
|
private?: boolean;
|
|
205
196
|
depends?: string;
|
|
206
|
-
additionalAttributes: string[];
|
|
207
197
|
description?: string;
|
|
208
198
|
default?: any;
|
|
209
199
|
set?: Function;
|
|
@@ -218,7 +208,6 @@ export class Cluster extends Host {
|
|
|
218
208
|
collection: boolean;
|
|
219
209
|
private?: boolean;
|
|
220
210
|
depends?: string;
|
|
221
|
-
additionalAttributes: string[];
|
|
222
211
|
description?: string;
|
|
223
212
|
default?: any;
|
|
224
213
|
set?: Function;
|
|
@@ -233,7 +222,6 @@ export class Cluster extends Host {
|
|
|
233
222
|
mandatory: boolean;
|
|
234
223
|
private?: boolean;
|
|
235
224
|
depends?: string;
|
|
236
|
-
additionalAttributes: string[];
|
|
237
225
|
description?: string;
|
|
238
226
|
default?: any;
|
|
239
227
|
set?: Function;
|
|
@@ -248,7 +236,6 @@ export class Cluster extends Host {
|
|
|
248
236
|
mandatory: boolean;
|
|
249
237
|
private?: boolean;
|
|
250
238
|
depends?: string;
|
|
251
|
-
additionalAttributes: string[];
|
|
252
239
|
description?: string;
|
|
253
240
|
default?: any;
|
|
254
241
|
set?: Function;
|
|
@@ -263,7 +250,6 @@ export class Cluster extends Host {
|
|
|
263
250
|
collection: boolean;
|
|
264
251
|
private?: boolean;
|
|
265
252
|
depends?: string;
|
|
266
|
-
additionalAttributes: string[];
|
|
267
253
|
description?: string;
|
|
268
254
|
default?: any;
|
|
269
255
|
set?: Function;
|
|
@@ -295,7 +281,6 @@ export class Cluster extends Host {
|
|
|
295
281
|
collection: boolean;
|
|
296
282
|
private?: boolean;
|
|
297
283
|
depends?: string;
|
|
298
|
-
additionalAttributes: string[];
|
|
299
284
|
description?: string;
|
|
300
285
|
default?: any;
|
|
301
286
|
set?: Function;
|
|
@@ -310,7 +295,6 @@ export class Cluster extends Host {
|
|
|
310
295
|
collection: boolean;
|
|
311
296
|
private?: boolean;
|
|
312
297
|
depends?: string;
|
|
313
|
-
additionalAttributes: string[];
|
|
314
298
|
description?: string;
|
|
315
299
|
default?: any;
|
|
316
300
|
set?: Function;
|
|
@@ -330,7 +314,6 @@ export class Cluster extends Host {
|
|
|
330
314
|
collection: boolean;
|
|
331
315
|
private?: boolean;
|
|
332
316
|
depends?: string;
|
|
333
|
-
additionalAttributes: string[];
|
|
334
317
|
description?: string;
|
|
335
318
|
default?: any;
|
|
336
319
|
set?: Function;
|
|
@@ -345,7 +328,6 @@ export class Cluster extends Host {
|
|
|
345
328
|
collection: boolean;
|
|
346
329
|
private?: boolean;
|
|
347
330
|
depends?: string;
|
|
348
|
-
additionalAttributes: string[];
|
|
349
331
|
description?: string;
|
|
350
332
|
default?: any;
|
|
351
333
|
set?: Function;
|
|
@@ -361,7 +343,6 @@ export class Cluster extends Host {
|
|
|
361
343
|
collection: boolean;
|
|
362
344
|
private?: boolean;
|
|
363
345
|
depends?: string;
|
|
364
|
-
additionalAttributes: string[];
|
|
365
346
|
description?: string;
|
|
366
347
|
set?: Function;
|
|
367
348
|
get?: Function;
|
|
@@ -375,7 +356,6 @@ export class Cluster extends Host {
|
|
|
375
356
|
mandatory: boolean;
|
|
376
357
|
private?: boolean;
|
|
377
358
|
depends?: string;
|
|
378
|
-
additionalAttributes: string[];
|
|
379
359
|
description?: string;
|
|
380
360
|
default?: any;
|
|
381
361
|
set?: Function;
|
|
@@ -409,7 +389,6 @@ export class Cluster extends Host {
|
|
|
409
389
|
collection: boolean;
|
|
410
390
|
private?: boolean;
|
|
411
391
|
depends?: string;
|
|
412
|
-
additionalAttributes: string[];
|
|
413
392
|
description?: string;
|
|
414
393
|
default?: any;
|
|
415
394
|
set?: Function;
|
|
@@ -424,7 +403,6 @@ export class Cluster extends Host {
|
|
|
424
403
|
collection: boolean;
|
|
425
404
|
private?: boolean;
|
|
426
405
|
depends?: string;
|
|
427
|
-
additionalAttributes: string[];
|
|
428
406
|
description?: string;
|
|
429
407
|
default?: any;
|
|
430
408
|
set?: Function;
|
|
@@ -439,7 +417,6 @@ export class Cluster extends Host {
|
|
|
439
417
|
collection: boolean;
|
|
440
418
|
private?: boolean;
|
|
441
419
|
depends?: string;
|
|
442
|
-
additionalAttributes: string[];
|
|
443
420
|
description?: string;
|
|
444
421
|
default?: any;
|
|
445
422
|
set?: Function;
|
|
@@ -455,7 +432,6 @@ export class Cluster extends Host {
|
|
|
455
432
|
collection: boolean;
|
|
456
433
|
private?: boolean;
|
|
457
434
|
depends?: string;
|
|
458
|
-
additionalAttributes: string[];
|
|
459
435
|
description?: string;
|
|
460
436
|
default?: any;
|
|
461
437
|
set?: Function;
|
|
@@ -475,7 +451,6 @@ export class Cluster extends Host {
|
|
|
475
451
|
collection: boolean;
|
|
476
452
|
private?: boolean;
|
|
477
453
|
depends?: string;
|
|
478
|
-
additionalAttributes: string[];
|
|
479
454
|
description?: string;
|
|
480
455
|
default?: any;
|
|
481
456
|
set?: Function;
|
|
@@ -490,7 +465,6 @@ export class Cluster extends Host {
|
|
|
490
465
|
collection: boolean;
|
|
491
466
|
private?: boolean;
|
|
492
467
|
depends?: string;
|
|
493
|
-
additionalAttributes: string[];
|
|
494
468
|
description?: string;
|
|
495
469
|
default?: any;
|
|
496
470
|
set?: Function;
|
|
@@ -505,7 +479,6 @@ export class Cluster extends Host {
|
|
|
505
479
|
collection: boolean;
|
|
506
480
|
private?: boolean;
|
|
507
481
|
depends?: string;
|
|
508
|
-
additionalAttributes: string[];
|
|
509
482
|
description?: string;
|
|
510
483
|
default?: any;
|
|
511
484
|
set?: Function;
|
|
@@ -521,7 +494,6 @@ export class Cluster extends Host {
|
|
|
521
494
|
collection: boolean;
|
|
522
495
|
private?: boolean;
|
|
523
496
|
depends?: string;
|
|
524
|
-
additionalAttributes: string[];
|
|
525
497
|
description?: string;
|
|
526
498
|
default?: any;
|
|
527
499
|
set?: Function;
|
|
@@ -537,7 +509,6 @@ export class Cluster extends Host {
|
|
|
537
509
|
collection: boolean;
|
|
538
510
|
private?: boolean;
|
|
539
511
|
depends?: string;
|
|
540
|
-
additionalAttributes: string[];
|
|
541
512
|
description?: string;
|
|
542
513
|
default?: any;
|
|
543
514
|
set?: Function;
|
|
@@ -552,7 +523,6 @@ export class Cluster extends Host {
|
|
|
552
523
|
mandatory: boolean;
|
|
553
524
|
private?: boolean;
|
|
554
525
|
depends?: string;
|
|
555
|
-
additionalAttributes: string[];
|
|
556
526
|
description?: string;
|
|
557
527
|
default?: any;
|
|
558
528
|
set?: Function;
|
|
@@ -567,7 +537,6 @@ export class Cluster extends Host {
|
|
|
567
537
|
mandatory: boolean;
|
|
568
538
|
private?: boolean;
|
|
569
539
|
depends?: string;
|
|
570
|
-
additionalAttributes: string[];
|
|
571
540
|
description?: string;
|
|
572
541
|
default?: any;
|
|
573
542
|
set?: Function;
|
|
@@ -582,7 +551,6 @@ export class Cluster extends Host {
|
|
|
582
551
|
mandatory: boolean;
|
|
583
552
|
private?: boolean;
|
|
584
553
|
depends?: string;
|
|
585
|
-
additionalAttributes: string[];
|
|
586
554
|
description?: string;
|
|
587
555
|
default?: any;
|
|
588
556
|
set?: Function;
|
|
@@ -602,7 +570,6 @@ export class Cluster extends Host {
|
|
|
602
570
|
mandatory: boolean;
|
|
603
571
|
private?: boolean;
|
|
604
572
|
depends?: string;
|
|
605
|
-
additionalAttributes: string[];
|
|
606
573
|
description?: string;
|
|
607
574
|
default?: any;
|
|
608
575
|
set?: Function;
|
|
@@ -622,7 +589,6 @@ export class Cluster extends Host {
|
|
|
622
589
|
collection: boolean;
|
|
623
590
|
private?: boolean;
|
|
624
591
|
depends?: string;
|
|
625
|
-
additionalAttributes: string[];
|
|
626
592
|
description?: string;
|
|
627
593
|
default?: any;
|
|
628
594
|
set?: Function;
|
|
@@ -637,7 +603,6 @@ export class Cluster extends Host {
|
|
|
637
603
|
mandatory: boolean;
|
|
638
604
|
private?: boolean;
|
|
639
605
|
depends?: string;
|
|
640
|
-
additionalAttributes: string[];
|
|
641
606
|
description?: string;
|
|
642
607
|
default?: any;
|
|
643
608
|
set?: Function;
|
|
@@ -652,7 +617,6 @@ export class Cluster extends Host {
|
|
|
652
617
|
collection: boolean;
|
|
653
618
|
private?: boolean;
|
|
654
619
|
depends?: string;
|
|
655
|
-
additionalAttributes: string[];
|
|
656
620
|
description?: string;
|
|
657
621
|
default?: any;
|
|
658
622
|
set?: Function;
|
|
@@ -667,7 +631,6 @@ export class Cluster extends Host {
|
|
|
667
631
|
mandatory: boolean;
|
|
668
632
|
private?: boolean;
|
|
669
633
|
depends?: string;
|
|
670
|
-
additionalAttributes: string[];
|
|
671
634
|
description?: string;
|
|
672
635
|
default?: any;
|
|
673
636
|
set?: Function;
|
|
@@ -682,7 +645,6 @@ export class Cluster extends Host {
|
|
|
682
645
|
collection: boolean;
|
|
683
646
|
private?: boolean;
|
|
684
647
|
depends?: string;
|
|
685
|
-
additionalAttributes: string[];
|
|
686
648
|
description?: string;
|
|
687
649
|
default?: any;
|
|
688
650
|
set?: Function;
|
|
@@ -37,7 +37,6 @@ export class ExtraSourceService extends Service {
|
|
|
37
37
|
collection: boolean;
|
|
38
38
|
private?: boolean;
|
|
39
39
|
depends?: string;
|
|
40
|
-
additionalAttributes: string[];
|
|
41
40
|
description?: string;
|
|
42
41
|
default?: any;
|
|
43
42
|
set?: Function;
|
|
@@ -52,7 +51,6 @@ export class ExtraSourceService extends Service {
|
|
|
52
51
|
collection: boolean;
|
|
53
52
|
private?: boolean;
|
|
54
53
|
depends?: string;
|
|
55
|
-
additionalAttributes: string[];
|
|
56
54
|
description?: string;
|
|
57
55
|
default?: any;
|
|
58
56
|
set?: Function;
|
|
@@ -72,7 +70,6 @@ export class ExtraSourceService extends Service {
|
|
|
72
70
|
collection: boolean;
|
|
73
71
|
private?: boolean;
|
|
74
72
|
depends?: string;
|
|
75
|
-
additionalAttributes: string[];
|
|
76
73
|
description?: string;
|
|
77
74
|
default?: any;
|
|
78
75
|
set?: Function;
|
|
@@ -87,7 +84,6 @@ export class ExtraSourceService extends Service {
|
|
|
87
84
|
collection: boolean;
|
|
88
85
|
private?: boolean;
|
|
89
86
|
depends?: string;
|
|
90
|
-
additionalAttributes: string[];
|
|
91
87
|
description?: string;
|
|
92
88
|
default?: any;
|
|
93
89
|
set?: Function;
|
|
@@ -103,7 +99,6 @@ export class ExtraSourceService extends Service {
|
|
|
103
99
|
collection: boolean;
|
|
104
100
|
private?: boolean;
|
|
105
101
|
depends?: string;
|
|
106
|
-
additionalAttributes: string[];
|
|
107
102
|
description?: string;
|
|
108
103
|
set?: Function;
|
|
109
104
|
get?: Function;
|
|
@@ -117,7 +112,6 @@ export class ExtraSourceService extends Service {
|
|
|
117
112
|
mandatory: boolean;
|
|
118
113
|
private?: boolean;
|
|
119
114
|
depends?: string;
|
|
120
|
-
additionalAttributes: string[];
|
|
121
115
|
description?: string;
|
|
122
116
|
default?: any;
|
|
123
117
|
set?: Function;
|
|
@@ -137,7 +131,6 @@ export class ExtraSourceService extends Service {
|
|
|
137
131
|
collection: boolean;
|
|
138
132
|
private?: boolean;
|
|
139
133
|
depends?: string;
|
|
140
|
-
additionalAttributes: string[];
|
|
141
134
|
description?: string;
|
|
142
135
|
default?: any;
|
|
143
136
|
set?: Function;
|
|
@@ -169,7 +162,6 @@ export class ExtraSourceService extends Service {
|
|
|
169
162
|
collection: boolean;
|
|
170
163
|
private?: boolean;
|
|
171
164
|
depends?: string;
|
|
172
|
-
additionalAttributes: string[];
|
|
173
165
|
description?: string;
|
|
174
166
|
default?: any;
|
|
175
167
|
set?: Function;
|
|
@@ -184,7 +176,6 @@ export class ExtraSourceService extends Service {
|
|
|
184
176
|
collection: boolean;
|
|
185
177
|
private?: boolean;
|
|
186
178
|
depends?: string;
|
|
187
|
-
additionalAttributes: string[];
|
|
188
179
|
description?: string;
|
|
189
180
|
default?: any;
|
|
190
181
|
set?: Function;
|
|
@@ -199,7 +190,6 @@ export class ExtraSourceService extends Service {
|
|
|
199
190
|
mandatory: boolean;
|
|
200
191
|
private?: boolean;
|
|
201
192
|
depends?: string;
|
|
202
|
-
additionalAttributes: string[];
|
|
203
193
|
description?: string;
|
|
204
194
|
default?: any;
|
|
205
195
|
set?: Function;
|
|
@@ -214,7 +204,6 @@ export class ExtraSourceService extends Service {
|
|
|
214
204
|
collection: boolean;
|
|
215
205
|
private?: boolean;
|
|
216
206
|
depends?: string;
|
|
217
|
-
additionalAttributes: string[];
|
|
218
207
|
description?: string;
|
|
219
208
|
default?: any;
|
|
220
209
|
set?: Function;
|
|
@@ -229,7 +218,6 @@ export class ExtraSourceService extends Service {
|
|
|
229
218
|
collection: boolean;
|
|
230
219
|
private?: boolean;
|
|
231
220
|
depends?: string;
|
|
232
|
-
additionalAttributes: string[];
|
|
233
221
|
description?: string;
|
|
234
222
|
default?: any;
|
|
235
223
|
set?: Function;
|
|
@@ -244,7 +232,6 @@ export class ExtraSourceService extends Service {
|
|
|
244
232
|
mandatory: boolean;
|
|
245
233
|
private?: boolean;
|
|
246
234
|
depends?: string;
|
|
247
|
-
additionalAttributes: string[];
|
|
248
235
|
description?: string;
|
|
249
236
|
default?: any;
|
|
250
237
|
set?: Function;
|
|
@@ -259,7 +246,6 @@ export class ExtraSourceService extends Service {
|
|
|
259
246
|
collection: boolean;
|
|
260
247
|
private?: boolean;
|
|
261
248
|
depends?: string;
|
|
262
|
-
additionalAttributes: string[];
|
|
263
249
|
description?: string;
|
|
264
250
|
default?: any;
|
|
265
251
|
set?: Function;
|
|
@@ -274,7 +260,6 @@ export class ExtraSourceService extends Service {
|
|
|
274
260
|
mandatory: boolean;
|
|
275
261
|
private?: boolean;
|
|
276
262
|
depends?: string;
|
|
277
|
-
additionalAttributes: string[];
|
|
278
263
|
description?: string;
|
|
279
264
|
default?: any;
|
|
280
265
|
set?: Function;
|
|
@@ -289,7 +274,6 @@ export class ExtraSourceService extends Service {
|
|
|
289
274
|
collection: boolean;
|
|
290
275
|
private?: boolean;
|
|
291
276
|
depends?: string;
|
|
292
|
-
additionalAttributes: string[];
|
|
293
277
|
description?: string;
|
|
294
278
|
default?: any;
|
|
295
279
|
set?: Function;
|
package/types/host.d.mts
CHANGED
|
@@ -21,7 +21,6 @@ export class Host extends ServiceOwner {
|
|
|
21
21
|
collection: boolean;
|
|
22
22
|
private?: boolean;
|
|
23
23
|
depends?: string;
|
|
24
|
-
additionalAttributes: string[];
|
|
25
24
|
description?: string;
|
|
26
25
|
default?: any;
|
|
27
26
|
set?: Function;
|
|
@@ -36,7 +35,6 @@ export class Host extends ServiceOwner {
|
|
|
36
35
|
collection: boolean;
|
|
37
36
|
private?: boolean;
|
|
38
37
|
depends?: string;
|
|
39
|
-
additionalAttributes: string[];
|
|
40
38
|
description?: string;
|
|
41
39
|
default?: any;
|
|
42
40
|
set?: Function;
|
|
@@ -56,7 +54,6 @@ export class Host extends ServiceOwner {
|
|
|
56
54
|
collection: boolean;
|
|
57
55
|
private?: boolean;
|
|
58
56
|
depends?: string;
|
|
59
|
-
additionalAttributes: string[];
|
|
60
57
|
description?: string;
|
|
61
58
|
default?: any;
|
|
62
59
|
set?: Function;
|
|
@@ -71,7 +68,6 @@ export class Host extends ServiceOwner {
|
|
|
71
68
|
collection: boolean;
|
|
72
69
|
private?: boolean;
|
|
73
70
|
depends?: string;
|
|
74
|
-
additionalAttributes: string[];
|
|
75
71
|
description?: string;
|
|
76
72
|
default?: any;
|
|
77
73
|
set?: Function;
|
|
@@ -87,7 +83,6 @@ export class Host extends ServiceOwner {
|
|
|
87
83
|
collection: boolean;
|
|
88
84
|
private?: boolean;
|
|
89
85
|
depends?: string;
|
|
90
|
-
additionalAttributes: string[];
|
|
91
86
|
description?: string;
|
|
92
87
|
set?: Function;
|
|
93
88
|
get?: Function;
|
|
@@ -101,7 +96,6 @@ export class Host extends ServiceOwner {
|
|
|
101
96
|
mandatory: boolean;
|
|
102
97
|
private?: boolean;
|
|
103
98
|
depends?: string;
|
|
104
|
-
additionalAttributes: string[];
|
|
105
99
|
description?: string;
|
|
106
100
|
default?: any;
|
|
107
101
|
set?: Function;
|
|
@@ -135,7 +129,6 @@ export class Host extends ServiceOwner {
|
|
|
135
129
|
collection: boolean;
|
|
136
130
|
private?: boolean;
|
|
137
131
|
depends?: string;
|
|
138
|
-
additionalAttributes: string[];
|
|
139
132
|
description?: string;
|
|
140
133
|
default?: any;
|
|
141
134
|
set?: Function;
|
|
@@ -150,7 +143,6 @@ export class Host extends ServiceOwner {
|
|
|
150
143
|
collection: boolean;
|
|
151
144
|
private?: boolean;
|
|
152
145
|
depends?: string;
|
|
153
|
-
additionalAttributes: string[];
|
|
154
146
|
description?: string;
|
|
155
147
|
default?: any;
|
|
156
148
|
set?: Function;
|
|
@@ -165,7 +157,6 @@ export class Host extends ServiceOwner {
|
|
|
165
157
|
collection: boolean;
|
|
166
158
|
private?: boolean;
|
|
167
159
|
depends?: string;
|
|
168
|
-
additionalAttributes: string[];
|
|
169
160
|
description?: string;
|
|
170
161
|
default?: any;
|
|
171
162
|
set?: Function;
|
|
@@ -181,7 +172,6 @@ export class Host extends ServiceOwner {
|
|
|
181
172
|
collection: boolean;
|
|
182
173
|
private?: boolean;
|
|
183
174
|
depends?: string;
|
|
184
|
-
additionalAttributes: string[];
|
|
185
175
|
description?: string;
|
|
186
176
|
default?: any;
|
|
187
177
|
set?: Function;
|
|
@@ -201,7 +191,6 @@ export class Host extends ServiceOwner {
|
|
|
201
191
|
collection: boolean;
|
|
202
192
|
private?: boolean;
|
|
203
193
|
depends?: string;
|
|
204
|
-
additionalAttributes: string[];
|
|
205
194
|
description?: string;
|
|
206
195
|
default?: any;
|
|
207
196
|
set?: Function;
|
|
@@ -216,7 +205,6 @@ export class Host extends ServiceOwner {
|
|
|
216
205
|
collection: boolean;
|
|
217
206
|
private?: boolean;
|
|
218
207
|
depends?: string;
|
|
219
|
-
additionalAttributes: string[];
|
|
220
208
|
description?: string;
|
|
221
209
|
default?: any;
|
|
222
210
|
set?: Function;
|
|
@@ -231,7 +219,6 @@ export class Host extends ServiceOwner {
|
|
|
231
219
|
collection: boolean;
|
|
232
220
|
private?: boolean;
|
|
233
221
|
depends?: string;
|
|
234
|
-
additionalAttributes: string[];
|
|
235
222
|
description?: string;
|
|
236
223
|
default?: any;
|
|
237
224
|
set?: Function;
|
|
@@ -247,7 +234,6 @@ export class Host extends ServiceOwner {
|
|
|
247
234
|
collection: boolean;
|
|
248
235
|
private?: boolean;
|
|
249
236
|
depends?: string;
|
|
250
|
-
additionalAttributes: string[];
|
|
251
237
|
description?: string;
|
|
252
238
|
default?: any;
|
|
253
239
|
set?: Function;
|
|
@@ -263,7 +249,6 @@ export class Host extends ServiceOwner {
|
|
|
263
249
|
collection: boolean;
|
|
264
250
|
private?: boolean;
|
|
265
251
|
depends?: string;
|
|
266
|
-
additionalAttributes: string[];
|
|
267
252
|
description?: string;
|
|
268
253
|
default?: any;
|
|
269
254
|
set?: Function;
|
|
@@ -278,7 +263,6 @@ export class Host extends ServiceOwner {
|
|
|
278
263
|
mandatory: boolean;
|
|
279
264
|
private?: boolean;
|
|
280
265
|
depends?: string;
|
|
281
|
-
additionalAttributes: string[];
|
|
282
266
|
description?: string;
|
|
283
267
|
default?: any;
|
|
284
268
|
set?: Function;
|
|
@@ -293,7 +277,6 @@ export class Host extends ServiceOwner {
|
|
|
293
277
|
mandatory: boolean;
|
|
294
278
|
private?: boolean;
|
|
295
279
|
depends?: string;
|
|
296
|
-
additionalAttributes: string[];
|
|
297
280
|
description?: string;
|
|
298
281
|
default?: any;
|
|
299
282
|
set?: Function;
|
|
@@ -308,7 +291,6 @@ export class Host extends ServiceOwner {
|
|
|
308
291
|
mandatory: boolean;
|
|
309
292
|
private?: boolean;
|
|
310
293
|
depends?: string;
|
|
311
|
-
additionalAttributes: string[];
|
|
312
294
|
description?: string;
|
|
313
295
|
default?: any;
|
|
314
296
|
set?: Function;
|
|
@@ -328,7 +310,6 @@ export class Host extends ServiceOwner {
|
|
|
328
310
|
mandatory: boolean;
|
|
329
311
|
private?: boolean;
|
|
330
312
|
depends?: string;
|
|
331
|
-
additionalAttributes: string[];
|
|
332
313
|
description?: string;
|
|
333
314
|
default?: any;
|
|
334
315
|
set?: Function;
|
|
@@ -348,7 +329,6 @@ export class Host extends ServiceOwner {
|
|
|
348
329
|
collection: boolean;
|
|
349
330
|
private?: boolean;
|
|
350
331
|
depends?: string;
|
|
351
|
-
additionalAttributes: string[];
|
|
352
332
|
description?: string;
|
|
353
333
|
default?: any;
|
|
354
334
|
set?: Function;
|
|
@@ -363,7 +343,6 @@ export class Host extends ServiceOwner {
|
|
|
363
343
|
mandatory: boolean;
|
|
364
344
|
private?: boolean;
|
|
365
345
|
depends?: string;
|
|
366
|
-
additionalAttributes: string[];
|
|
367
346
|
description?: string;
|
|
368
347
|
default?: any;
|
|
369
348
|
set?: Function;
|
|
@@ -378,7 +357,6 @@ export class Host extends ServiceOwner {
|
|
|
378
357
|
collection: boolean;
|
|
379
358
|
private?: boolean;
|
|
380
359
|
depends?: string;
|
|
381
|
-
additionalAttributes: string[];
|
|
382
360
|
description?: string;
|
|
383
361
|
default?: any;
|
|
384
362
|
set?: Function;
|
|
@@ -393,7 +371,6 @@ export class Host extends ServiceOwner {
|
|
|
393
371
|
mandatory: boolean;
|
|
394
372
|
private?: boolean;
|
|
395
373
|
depends?: string;
|
|
396
|
-
additionalAttributes: string[];
|
|
397
374
|
description?: string;
|
|
398
375
|
default?: any;
|
|
399
376
|
set?: Function;
|
|
@@ -408,7 +385,6 @@ export class Host extends ServiceOwner {
|
|
|
408
385
|
collection: boolean;
|
|
409
386
|
private?: boolean;
|
|
410
387
|
depends?: string;
|
|
411
|
-
additionalAttributes: string[];
|
|
412
388
|
description?: string;
|
|
413
389
|
default?: any;
|
|
414
390
|
set?: Function;
|