pmcf 2.73.12 → 2.74.1
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/src/base.mjs +5 -5
- package/src/host.mjs +13 -18
- package/src/owner.mjs +4 -4
- package/src/services/kea.mjs +1 -1
- package/src/subnet.mjs +2 -3
- package/types/base.d.mts +48 -4
- package/types/cluster.d.mts +256 -26
- package/types/extra-source-service.d.mts +48 -4
- package/types/host.d.mts +160 -17
- package/types/location.d.mts +192 -18
- package/types/network-interfaces/ethernet.d.mts +96 -8
- package/types/network-interfaces/loopback.d.mts +96 -8
- package/types/network-interfaces/network-interface.d.mts +96 -8
- package/types/network-interfaces/wireguard.d.mts +96 -8
- package/types/network-interfaces/wlan.d.mts +144 -12
- package/types/network.d.mts +96 -9
- package/types/owner.d.mts +96 -9
- package/types/root.d.mts +192 -18
- package/types/service.d.mts +96 -8
- package/types/services/bind.d.mts +96 -8
- package/types/services/chrony.d.mts +96 -8
- package/types/services/influxdb.d.mts +96 -8
- package/types/services/kea.d.mts +96 -8
- package/types/services/mosquitto.d.mts +96 -8
- package/types/services/openldap.d.mts +96 -8
- package/types/services/systemd-journal-remote.d.mts +96 -8
- package/types/services/systemd-journal-upload.d.mts +96 -8
- package/types/services/systemd-journal.d.mts +96 -8
- package/types/services/systemd-resolved.d.mts +96 -8
- package/types/services/systemd-timesyncd.d.mts +96 -8
- package/types/subnet.d.mts +12 -2
|
@@ -26,9 +26,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class ChronyService extends ExtraSourceService {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -160,9 +204,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
160
204
|
writeable: boolean;
|
|
161
205
|
};
|
|
162
206
|
description: {
|
|
207
|
+
writeable: boolean;
|
|
163
208
|
type: string;
|
|
209
|
+
isKey: boolean;
|
|
210
|
+
writable: boolean;
|
|
211
|
+
mandatory: boolean;
|
|
164
212
|
collection: boolean;
|
|
165
|
-
|
|
213
|
+
private?: boolean;
|
|
214
|
+
depends?: string;
|
|
215
|
+
additionalAttributes: string[];
|
|
216
|
+
description?: string;
|
|
217
|
+
default?: any;
|
|
218
|
+
set?: Function;
|
|
219
|
+
get?: Function;
|
|
220
|
+
env?: string[] | string;
|
|
166
221
|
};
|
|
167
222
|
priority: {
|
|
168
223
|
type: string;
|
|
@@ -170,14 +225,36 @@ export class ChronyService extends ExtraSourceService {
|
|
|
170
225
|
writeable: boolean;
|
|
171
226
|
};
|
|
172
227
|
directory: {
|
|
228
|
+
writeable: boolean;
|
|
173
229
|
type: string;
|
|
230
|
+
isKey: boolean;
|
|
231
|
+
writable: boolean;
|
|
232
|
+
mandatory: boolean;
|
|
174
233
|
collection: boolean;
|
|
175
|
-
|
|
234
|
+
private?: boolean;
|
|
235
|
+
depends?: string;
|
|
236
|
+
additionalAttributes: string[];
|
|
237
|
+
description?: string;
|
|
238
|
+
default?: any;
|
|
239
|
+
set?: Function;
|
|
240
|
+
get?: Function;
|
|
241
|
+
env?: string[] | string;
|
|
176
242
|
};
|
|
177
243
|
packaging: {
|
|
244
|
+
writeable: boolean;
|
|
178
245
|
type: string;
|
|
246
|
+
isKey: boolean;
|
|
247
|
+
writable: boolean;
|
|
248
|
+
mandatory: boolean;
|
|
179
249
|
collection: boolean;
|
|
180
|
-
|
|
250
|
+
private?: boolean;
|
|
251
|
+
depends?: string;
|
|
252
|
+
additionalAttributes: string[];
|
|
253
|
+
description?: string;
|
|
254
|
+
default?: any;
|
|
255
|
+
set?: Function;
|
|
256
|
+
get?: Function;
|
|
257
|
+
env?: string[] | string;
|
|
181
258
|
};
|
|
182
259
|
disabled: {
|
|
183
260
|
type: string;
|
|
@@ -186,9 +263,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
186
263
|
default: boolean;
|
|
187
264
|
};
|
|
188
265
|
tags: {
|
|
189
|
-
type: string;
|
|
190
266
|
collection: boolean;
|
|
191
267
|
writeable: boolean;
|
|
268
|
+
type: string;
|
|
269
|
+
isKey: boolean;
|
|
270
|
+
writable: boolean;
|
|
271
|
+
mandatory: boolean;
|
|
272
|
+
private?: boolean;
|
|
273
|
+
depends?: string;
|
|
274
|
+
additionalAttributes: string[];
|
|
275
|
+
description?: string;
|
|
276
|
+
default?: any;
|
|
277
|
+
set?: Function;
|
|
278
|
+
get?: Function;
|
|
279
|
+
env?: string[] | string;
|
|
192
280
|
};
|
|
193
281
|
};
|
|
194
282
|
};
|
|
@@ -26,9 +26,20 @@ export class InfluxdbService extends Service {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class InfluxdbService extends Service {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class InfluxdbService extends Service {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -157,9 +201,20 @@ export class InfluxdbService extends Service {
|
|
|
157
201
|
writeable: boolean;
|
|
158
202
|
};
|
|
159
203
|
description: {
|
|
204
|
+
writeable: boolean;
|
|
160
205
|
type: string;
|
|
206
|
+
isKey: boolean;
|
|
207
|
+
writable: boolean;
|
|
208
|
+
mandatory: boolean;
|
|
161
209
|
collection: boolean;
|
|
162
|
-
|
|
210
|
+
private?: boolean;
|
|
211
|
+
depends?: string;
|
|
212
|
+
additionalAttributes: string[];
|
|
213
|
+
description?: string;
|
|
214
|
+
default?: any;
|
|
215
|
+
set?: Function;
|
|
216
|
+
get?: Function;
|
|
217
|
+
env?: string[] | string;
|
|
163
218
|
};
|
|
164
219
|
priority: {
|
|
165
220
|
type: string;
|
|
@@ -167,14 +222,36 @@ export class InfluxdbService extends Service {
|
|
|
167
222
|
writeable: boolean;
|
|
168
223
|
};
|
|
169
224
|
directory: {
|
|
225
|
+
writeable: boolean;
|
|
170
226
|
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
171
230
|
collection: boolean;
|
|
172
|
-
|
|
231
|
+
private?: boolean;
|
|
232
|
+
depends?: string;
|
|
233
|
+
additionalAttributes: string[];
|
|
234
|
+
description?: string;
|
|
235
|
+
default?: any;
|
|
236
|
+
set?: Function;
|
|
237
|
+
get?: Function;
|
|
238
|
+
env?: string[] | string;
|
|
173
239
|
};
|
|
174
240
|
packaging: {
|
|
241
|
+
writeable: boolean;
|
|
175
242
|
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
176
246
|
collection: boolean;
|
|
177
|
-
|
|
247
|
+
private?: boolean;
|
|
248
|
+
depends?: string;
|
|
249
|
+
additionalAttributes: string[];
|
|
250
|
+
description?: string;
|
|
251
|
+
default?: any;
|
|
252
|
+
set?: Function;
|
|
253
|
+
get?: Function;
|
|
254
|
+
env?: string[] | string;
|
|
178
255
|
};
|
|
179
256
|
disabled: {
|
|
180
257
|
type: string;
|
|
@@ -183,9 +260,20 @@ export class InfluxdbService extends Service {
|
|
|
183
260
|
default: boolean;
|
|
184
261
|
};
|
|
185
262
|
tags: {
|
|
186
|
-
type: string;
|
|
187
263
|
collection: boolean;
|
|
188
264
|
writeable: boolean;
|
|
265
|
+
type: string;
|
|
266
|
+
isKey: boolean;
|
|
267
|
+
writable: boolean;
|
|
268
|
+
mandatory: boolean;
|
|
269
|
+
private?: boolean;
|
|
270
|
+
depends?: string;
|
|
271
|
+
additionalAttributes: string[];
|
|
272
|
+
description?: string;
|
|
273
|
+
default?: any;
|
|
274
|
+
set?: Function;
|
|
275
|
+
get?: Function;
|
|
276
|
+
env?: string[] | string;
|
|
189
277
|
};
|
|
190
278
|
};
|
|
191
279
|
};
|
package/types/services/kea.d.mts
CHANGED
|
@@ -27,9 +27,20 @@ export class KeaService extends Service {
|
|
|
27
27
|
writeable: boolean;
|
|
28
28
|
};
|
|
29
29
|
description: {
|
|
30
|
+
writeable: boolean;
|
|
30
31
|
type: string;
|
|
32
|
+
isKey: boolean;
|
|
33
|
+
writable: boolean;
|
|
34
|
+
mandatory: boolean;
|
|
31
35
|
collection: boolean;
|
|
32
|
-
|
|
36
|
+
private?: boolean;
|
|
37
|
+
depends?: string;
|
|
38
|
+
additionalAttributes: string[];
|
|
39
|
+
description?: string;
|
|
40
|
+
default?: any;
|
|
41
|
+
set?: Function;
|
|
42
|
+
get?: Function;
|
|
43
|
+
env?: string[] | string;
|
|
33
44
|
};
|
|
34
45
|
priority: {
|
|
35
46
|
type: string;
|
|
@@ -37,14 +48,36 @@ export class KeaService extends Service {
|
|
|
37
48
|
writeable: boolean;
|
|
38
49
|
};
|
|
39
50
|
directory: {
|
|
51
|
+
writeable: boolean;
|
|
40
52
|
type: string;
|
|
53
|
+
isKey: boolean;
|
|
54
|
+
writable: boolean;
|
|
55
|
+
mandatory: boolean;
|
|
41
56
|
collection: boolean;
|
|
42
|
-
|
|
57
|
+
private?: boolean;
|
|
58
|
+
depends?: string;
|
|
59
|
+
additionalAttributes: string[];
|
|
60
|
+
description?: string;
|
|
61
|
+
default?: any;
|
|
62
|
+
set?: Function;
|
|
63
|
+
get?: Function;
|
|
64
|
+
env?: string[] | string;
|
|
43
65
|
};
|
|
44
66
|
packaging: {
|
|
67
|
+
writeable: boolean;
|
|
45
68
|
type: string;
|
|
69
|
+
isKey: boolean;
|
|
70
|
+
writable: boolean;
|
|
71
|
+
mandatory: boolean;
|
|
46
72
|
collection: boolean;
|
|
47
|
-
|
|
73
|
+
private?: boolean;
|
|
74
|
+
depends?: string;
|
|
75
|
+
additionalAttributes: string[];
|
|
76
|
+
description?: string;
|
|
77
|
+
default?: any;
|
|
78
|
+
set?: Function;
|
|
79
|
+
get?: Function;
|
|
80
|
+
env?: string[] | string;
|
|
48
81
|
};
|
|
49
82
|
disabled: {
|
|
50
83
|
type: string;
|
|
@@ -53,9 +86,20 @@ export class KeaService extends Service {
|
|
|
53
86
|
default: boolean;
|
|
54
87
|
};
|
|
55
88
|
tags: {
|
|
56
|
-
type: string;
|
|
57
89
|
collection: boolean;
|
|
58
90
|
writeable: boolean;
|
|
91
|
+
type: string;
|
|
92
|
+
isKey: boolean;
|
|
93
|
+
writable: boolean;
|
|
94
|
+
mandatory: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
default?: any;
|
|
100
|
+
set?: Function;
|
|
101
|
+
get?: Function;
|
|
102
|
+
env?: string[] | string;
|
|
59
103
|
};
|
|
60
104
|
};
|
|
61
105
|
};
|
|
@@ -158,9 +202,20 @@ export class KeaService extends Service {
|
|
|
158
202
|
writeable: boolean;
|
|
159
203
|
};
|
|
160
204
|
description: {
|
|
205
|
+
writeable: boolean;
|
|
161
206
|
type: string;
|
|
207
|
+
isKey: boolean;
|
|
208
|
+
writable: boolean;
|
|
209
|
+
mandatory: boolean;
|
|
162
210
|
collection: boolean;
|
|
163
|
-
|
|
211
|
+
private?: boolean;
|
|
212
|
+
depends?: string;
|
|
213
|
+
additionalAttributes: string[];
|
|
214
|
+
description?: string;
|
|
215
|
+
default?: any;
|
|
216
|
+
set?: Function;
|
|
217
|
+
get?: Function;
|
|
218
|
+
env?: string[] | string;
|
|
164
219
|
};
|
|
165
220
|
priority: {
|
|
166
221
|
type: string;
|
|
@@ -168,14 +223,36 @@ export class KeaService extends Service {
|
|
|
168
223
|
writeable: boolean;
|
|
169
224
|
};
|
|
170
225
|
directory: {
|
|
226
|
+
writeable: boolean;
|
|
171
227
|
type: string;
|
|
228
|
+
isKey: boolean;
|
|
229
|
+
writable: boolean;
|
|
230
|
+
mandatory: boolean;
|
|
172
231
|
collection: boolean;
|
|
173
|
-
|
|
232
|
+
private?: boolean;
|
|
233
|
+
depends?: string;
|
|
234
|
+
additionalAttributes: string[];
|
|
235
|
+
description?: string;
|
|
236
|
+
default?: any;
|
|
237
|
+
set?: Function;
|
|
238
|
+
get?: Function;
|
|
239
|
+
env?: string[] | string;
|
|
174
240
|
};
|
|
175
241
|
packaging: {
|
|
242
|
+
writeable: boolean;
|
|
176
243
|
type: string;
|
|
244
|
+
isKey: boolean;
|
|
245
|
+
writable: boolean;
|
|
246
|
+
mandatory: boolean;
|
|
177
247
|
collection: boolean;
|
|
178
|
-
|
|
248
|
+
private?: boolean;
|
|
249
|
+
depends?: string;
|
|
250
|
+
additionalAttributes: string[];
|
|
251
|
+
description?: string;
|
|
252
|
+
default?: any;
|
|
253
|
+
set?: Function;
|
|
254
|
+
get?: Function;
|
|
255
|
+
env?: string[] | string;
|
|
179
256
|
};
|
|
180
257
|
disabled: {
|
|
181
258
|
type: string;
|
|
@@ -184,9 +261,20 @@ export class KeaService extends Service {
|
|
|
184
261
|
default: boolean;
|
|
185
262
|
};
|
|
186
263
|
tags: {
|
|
187
|
-
type: string;
|
|
188
264
|
collection: boolean;
|
|
189
265
|
writeable: boolean;
|
|
266
|
+
type: string;
|
|
267
|
+
isKey: boolean;
|
|
268
|
+
writable: boolean;
|
|
269
|
+
mandatory: boolean;
|
|
270
|
+
private?: boolean;
|
|
271
|
+
depends?: string;
|
|
272
|
+
additionalAttributes: string[];
|
|
273
|
+
description?: string;
|
|
274
|
+
default?: any;
|
|
275
|
+
set?: Function;
|
|
276
|
+
get?: Function;
|
|
277
|
+
env?: string[] | string;
|
|
190
278
|
};
|
|
191
279
|
};
|
|
192
280
|
};
|
|
@@ -26,9 +26,20 @@ export class MosquittoService extends Service {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class MosquittoService extends Service {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class MosquittoService extends Service {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -157,9 +201,20 @@ export class MosquittoService extends Service {
|
|
|
157
201
|
writeable: boolean;
|
|
158
202
|
};
|
|
159
203
|
description: {
|
|
204
|
+
writeable: boolean;
|
|
160
205
|
type: string;
|
|
206
|
+
isKey: boolean;
|
|
207
|
+
writable: boolean;
|
|
208
|
+
mandatory: boolean;
|
|
161
209
|
collection: boolean;
|
|
162
|
-
|
|
210
|
+
private?: boolean;
|
|
211
|
+
depends?: string;
|
|
212
|
+
additionalAttributes: string[];
|
|
213
|
+
description?: string;
|
|
214
|
+
default?: any;
|
|
215
|
+
set?: Function;
|
|
216
|
+
get?: Function;
|
|
217
|
+
env?: string[] | string;
|
|
163
218
|
};
|
|
164
219
|
priority: {
|
|
165
220
|
type: string;
|
|
@@ -167,14 +222,36 @@ export class MosquittoService extends Service {
|
|
|
167
222
|
writeable: boolean;
|
|
168
223
|
};
|
|
169
224
|
directory: {
|
|
225
|
+
writeable: boolean;
|
|
170
226
|
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
171
230
|
collection: boolean;
|
|
172
|
-
|
|
231
|
+
private?: boolean;
|
|
232
|
+
depends?: string;
|
|
233
|
+
additionalAttributes: string[];
|
|
234
|
+
description?: string;
|
|
235
|
+
default?: any;
|
|
236
|
+
set?: Function;
|
|
237
|
+
get?: Function;
|
|
238
|
+
env?: string[] | string;
|
|
173
239
|
};
|
|
174
240
|
packaging: {
|
|
241
|
+
writeable: boolean;
|
|
175
242
|
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
176
246
|
collection: boolean;
|
|
177
|
-
|
|
247
|
+
private?: boolean;
|
|
248
|
+
depends?: string;
|
|
249
|
+
additionalAttributes: string[];
|
|
250
|
+
description?: string;
|
|
251
|
+
default?: any;
|
|
252
|
+
set?: Function;
|
|
253
|
+
get?: Function;
|
|
254
|
+
env?: string[] | string;
|
|
178
255
|
};
|
|
179
256
|
disabled: {
|
|
180
257
|
type: string;
|
|
@@ -183,9 +260,20 @@ export class MosquittoService extends Service {
|
|
|
183
260
|
default: boolean;
|
|
184
261
|
};
|
|
185
262
|
tags: {
|
|
186
|
-
type: string;
|
|
187
263
|
collection: boolean;
|
|
188
264
|
writeable: boolean;
|
|
265
|
+
type: string;
|
|
266
|
+
isKey: boolean;
|
|
267
|
+
writable: boolean;
|
|
268
|
+
mandatory: boolean;
|
|
269
|
+
private?: boolean;
|
|
270
|
+
depends?: string;
|
|
271
|
+
additionalAttributes: string[];
|
|
272
|
+
description?: string;
|
|
273
|
+
default?: any;
|
|
274
|
+
set?: Function;
|
|
275
|
+
get?: Function;
|
|
276
|
+
env?: string[] | string;
|
|
189
277
|
};
|
|
190
278
|
};
|
|
191
279
|
};
|