pmcf 2.74.4 → 3.0.0
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 +1 -1
- package/src/base.mjs +5 -7
- package/src/subnet.mjs +1 -1
- package/src/types.mjs +1 -1
- package/types/base.d.mts +25 -9
- package/types/cluster.d.mts +51 -20
- package/types/extra-source-service.d.mts +25 -9
- package/types/host.d.mts +25 -9
- package/types/location.d.mts +52 -22
- package/types/network-interfaces/ethernet.d.mts +50 -18
- package/types/network-interfaces/loopback.d.mts +50 -18
- package/types/network-interfaces/network-interface.d.mts +50 -18
- package/types/network-interfaces/wireguard.d.mts +50 -18
- package/types/network-interfaces/wlan.d.mts +75 -27
- package/types/network.d.mts +26 -11
- package/types/owner.d.mts +26 -11
- package/types/root.d.mts +52 -22
- package/types/service.d.mts +50 -18
- package/types/services/bind.d.mts +50 -18
- package/types/services/chrony.d.mts +50 -18
- package/types/services/influxdb.d.mts +50 -18
- package/types/services/kea.d.mts +50 -18
- package/types/services/mosquitto.d.mts +50 -18
- package/types/services/openldap.d.mts +50 -18
- package/types/services/systemd-journal-remote.d.mts +50 -18
- package/types/services/systemd-journal-upload.d.mts +50 -18
- package/types/services/systemd-journal.d.mts +50 -18
- package/types/services/systemd-resolved.d.mts +50 -18
- package/types/services/systemd-timesyncd.d.mts +50 -18
- package/types/subnet.d.mts +1 -2
package/types/service.d.mts
CHANGED
|
@@ -111,16 +111,22 @@ export namespace ServiceTypeDefinition {
|
|
|
111
111
|
collection: boolean;
|
|
112
112
|
writeable: boolean;
|
|
113
113
|
};
|
|
114
|
-
type:
|
|
115
|
-
type: string;
|
|
116
|
-
collection: boolean;
|
|
117
|
-
writeable: boolean;
|
|
118
|
-
};
|
|
114
|
+
type: import("pacc").AttributeDefinition;
|
|
119
115
|
name: {
|
|
116
|
+
isKey: boolean;
|
|
117
|
+
writeable: boolean;
|
|
120
118
|
type: string;
|
|
119
|
+
writable: boolean;
|
|
120
|
+
mandatory: boolean;
|
|
121
121
|
collection: boolean;
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
private?: boolean;
|
|
123
|
+
depends?: string;
|
|
124
|
+
additionalAttributes: string[];
|
|
125
|
+
description?: string;
|
|
126
|
+
default?: any;
|
|
127
|
+
set?: Function;
|
|
128
|
+
get?: Function;
|
|
129
|
+
env?: string[] | string;
|
|
124
130
|
};
|
|
125
131
|
description: {
|
|
126
132
|
writeable: boolean;
|
|
@@ -176,10 +182,20 @@ export namespace ServiceTypeDefinition {
|
|
|
176
182
|
env?: string[] | string;
|
|
177
183
|
};
|
|
178
184
|
disabled: {
|
|
179
|
-
type: string;
|
|
180
|
-
collection: boolean;
|
|
181
185
|
writeable: boolean;
|
|
182
186
|
default: boolean;
|
|
187
|
+
type: string;
|
|
188
|
+
isKey: boolean;
|
|
189
|
+
writable: boolean;
|
|
190
|
+
mandatory: boolean;
|
|
191
|
+
collection: boolean;
|
|
192
|
+
private?: boolean;
|
|
193
|
+
depends?: string;
|
|
194
|
+
additionalAttributes: string[];
|
|
195
|
+
description?: string;
|
|
196
|
+
set?: Function;
|
|
197
|
+
get?: Function;
|
|
198
|
+
env?: string[] | string;
|
|
183
199
|
};
|
|
184
200
|
tags: {
|
|
185
201
|
collection: boolean;
|
|
@@ -396,16 +412,22 @@ export class Service extends Base {
|
|
|
396
412
|
collection: boolean;
|
|
397
413
|
writeable: boolean;
|
|
398
414
|
};
|
|
399
|
-
type:
|
|
400
|
-
type: string;
|
|
401
|
-
collection: boolean;
|
|
402
|
-
writeable: boolean;
|
|
403
|
-
};
|
|
415
|
+
type: import("pacc").AttributeDefinition;
|
|
404
416
|
name: {
|
|
417
|
+
isKey: boolean;
|
|
418
|
+
writeable: boolean;
|
|
405
419
|
type: string;
|
|
420
|
+
writable: boolean;
|
|
421
|
+
mandatory: boolean;
|
|
406
422
|
collection: boolean;
|
|
407
|
-
|
|
408
|
-
|
|
423
|
+
private?: boolean;
|
|
424
|
+
depends?: string;
|
|
425
|
+
additionalAttributes: string[];
|
|
426
|
+
description?: string;
|
|
427
|
+
default?: any;
|
|
428
|
+
set?: Function;
|
|
429
|
+
get?: Function;
|
|
430
|
+
env?: string[] | string;
|
|
409
431
|
};
|
|
410
432
|
description: {
|
|
411
433
|
writeable: boolean;
|
|
@@ -461,10 +483,20 @@ export class Service extends Base {
|
|
|
461
483
|
env?: string[] | string;
|
|
462
484
|
};
|
|
463
485
|
disabled: {
|
|
464
|
-
type: string;
|
|
465
|
-
collection: boolean;
|
|
466
486
|
writeable: boolean;
|
|
467
487
|
default: boolean;
|
|
488
|
+
type: string;
|
|
489
|
+
isKey: boolean;
|
|
490
|
+
writable: boolean;
|
|
491
|
+
mandatory: boolean;
|
|
492
|
+
collection: boolean;
|
|
493
|
+
private?: boolean;
|
|
494
|
+
depends?: string;
|
|
495
|
+
additionalAttributes: string[];
|
|
496
|
+
description?: string;
|
|
497
|
+
set?: Function;
|
|
498
|
+
get?: Function;
|
|
499
|
+
env?: string[] | string;
|
|
468
500
|
};
|
|
469
501
|
tags: {
|
|
470
502
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class BindService extends ExtraSourceService {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class BindService extends ExtraSourceService {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -300,16 +316,22 @@ export class BindService extends ExtraSourceService {
|
|
|
300
316
|
collection: boolean;
|
|
301
317
|
writeable: boolean;
|
|
302
318
|
};
|
|
303
|
-
type:
|
|
304
|
-
type: string;
|
|
305
|
-
collection: boolean;
|
|
306
|
-
writeable: boolean;
|
|
307
|
-
};
|
|
319
|
+
type: import("pacc").AttributeDefinition;
|
|
308
320
|
name: {
|
|
321
|
+
isKey: boolean;
|
|
322
|
+
writeable: boolean;
|
|
309
323
|
type: string;
|
|
324
|
+
writable: boolean;
|
|
325
|
+
mandatory: boolean;
|
|
310
326
|
collection: boolean;
|
|
311
|
-
|
|
312
|
-
|
|
327
|
+
private?: boolean;
|
|
328
|
+
depends?: string;
|
|
329
|
+
additionalAttributes: string[];
|
|
330
|
+
description?: string;
|
|
331
|
+
default?: any;
|
|
332
|
+
set?: Function;
|
|
333
|
+
get?: Function;
|
|
334
|
+
env?: string[] | string;
|
|
313
335
|
};
|
|
314
336
|
description: {
|
|
315
337
|
writeable: boolean;
|
|
@@ -365,10 +387,20 @@ export class BindService extends ExtraSourceService {
|
|
|
365
387
|
env?: string[] | string;
|
|
366
388
|
};
|
|
367
389
|
disabled: {
|
|
368
|
-
type: string;
|
|
369
|
-
collection: boolean;
|
|
370
390
|
writeable: boolean;
|
|
371
391
|
default: boolean;
|
|
392
|
+
type: string;
|
|
393
|
+
isKey: boolean;
|
|
394
|
+
writable: boolean;
|
|
395
|
+
mandatory: boolean;
|
|
396
|
+
collection: boolean;
|
|
397
|
+
private?: boolean;
|
|
398
|
+
depends?: string;
|
|
399
|
+
additionalAttributes: string[];
|
|
400
|
+
description?: string;
|
|
401
|
+
set?: Function;
|
|
402
|
+
get?: Function;
|
|
403
|
+
env?: string[] | string;
|
|
372
404
|
};
|
|
373
405
|
tags: {
|
|
374
406
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class ChronyService extends ExtraSourceService {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -300,16 +316,22 @@ export class ChronyService extends ExtraSourceService {
|
|
|
300
316
|
collection: boolean;
|
|
301
317
|
writeable: boolean;
|
|
302
318
|
};
|
|
303
|
-
type:
|
|
304
|
-
type: string;
|
|
305
|
-
collection: boolean;
|
|
306
|
-
writeable: boolean;
|
|
307
|
-
};
|
|
319
|
+
type: import("pacc").AttributeDefinition;
|
|
308
320
|
name: {
|
|
321
|
+
isKey: boolean;
|
|
322
|
+
writeable: boolean;
|
|
309
323
|
type: string;
|
|
324
|
+
writable: boolean;
|
|
325
|
+
mandatory: boolean;
|
|
310
326
|
collection: boolean;
|
|
311
|
-
|
|
312
|
-
|
|
327
|
+
private?: boolean;
|
|
328
|
+
depends?: string;
|
|
329
|
+
additionalAttributes: string[];
|
|
330
|
+
description?: string;
|
|
331
|
+
default?: any;
|
|
332
|
+
set?: Function;
|
|
333
|
+
get?: Function;
|
|
334
|
+
env?: string[] | string;
|
|
313
335
|
};
|
|
314
336
|
description: {
|
|
315
337
|
writeable: boolean;
|
|
@@ -365,10 +387,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
365
387
|
env?: string[] | string;
|
|
366
388
|
};
|
|
367
389
|
disabled: {
|
|
368
|
-
type: string;
|
|
369
|
-
collection: boolean;
|
|
370
390
|
writeable: boolean;
|
|
371
391
|
default: boolean;
|
|
392
|
+
type: string;
|
|
393
|
+
isKey: boolean;
|
|
394
|
+
writable: boolean;
|
|
395
|
+
mandatory: boolean;
|
|
396
|
+
collection: boolean;
|
|
397
|
+
private?: boolean;
|
|
398
|
+
depends?: string;
|
|
399
|
+
additionalAttributes: string[];
|
|
400
|
+
description?: string;
|
|
401
|
+
set?: Function;
|
|
402
|
+
get?: Function;
|
|
403
|
+
env?: string[] | string;
|
|
372
404
|
};
|
|
373
405
|
tags: {
|
|
374
406
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class InfluxdbService extends Service {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class InfluxdbService extends Service {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -297,16 +313,22 @@ export class InfluxdbService extends Service {
|
|
|
297
313
|
collection: boolean;
|
|
298
314
|
writeable: boolean;
|
|
299
315
|
};
|
|
300
|
-
type:
|
|
301
|
-
type: string;
|
|
302
|
-
collection: boolean;
|
|
303
|
-
writeable: boolean;
|
|
304
|
-
};
|
|
316
|
+
type: import("pacc").AttributeDefinition;
|
|
305
317
|
name: {
|
|
318
|
+
isKey: boolean;
|
|
319
|
+
writeable: boolean;
|
|
306
320
|
type: string;
|
|
321
|
+
writable: boolean;
|
|
322
|
+
mandatory: boolean;
|
|
307
323
|
collection: boolean;
|
|
308
|
-
|
|
309
|
-
|
|
324
|
+
private?: boolean;
|
|
325
|
+
depends?: string;
|
|
326
|
+
additionalAttributes: string[];
|
|
327
|
+
description?: string;
|
|
328
|
+
default?: any;
|
|
329
|
+
set?: Function;
|
|
330
|
+
get?: Function;
|
|
331
|
+
env?: string[] | string;
|
|
310
332
|
};
|
|
311
333
|
description: {
|
|
312
334
|
writeable: boolean;
|
|
@@ -362,10 +384,20 @@ export class InfluxdbService extends Service {
|
|
|
362
384
|
env?: string[] | string;
|
|
363
385
|
};
|
|
364
386
|
disabled: {
|
|
365
|
-
type: string;
|
|
366
|
-
collection: boolean;
|
|
367
387
|
writeable: boolean;
|
|
368
388
|
default: boolean;
|
|
389
|
+
type: string;
|
|
390
|
+
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
392
|
+
mandatory: boolean;
|
|
393
|
+
collection: boolean;
|
|
394
|
+
private?: boolean;
|
|
395
|
+
depends?: string;
|
|
396
|
+
additionalAttributes: string[];
|
|
397
|
+
description?: string;
|
|
398
|
+
set?: Function;
|
|
399
|
+
get?: Function;
|
|
400
|
+
env?: string[] | string;
|
|
369
401
|
};
|
|
370
402
|
tags: {
|
|
371
403
|
collection: boolean;
|
package/types/services/kea.d.mts
CHANGED
|
@@ -15,16 +15,22 @@ export class KeaService extends Service {
|
|
|
15
15
|
collection: boolean;
|
|
16
16
|
writeable: boolean;
|
|
17
17
|
};
|
|
18
|
-
type:
|
|
19
|
-
type: string;
|
|
20
|
-
collection: boolean;
|
|
21
|
-
writeable: boolean;
|
|
22
|
-
};
|
|
18
|
+
type: import("pacc").AttributeDefinition;
|
|
23
19
|
name: {
|
|
20
|
+
isKey: boolean;
|
|
21
|
+
writeable: boolean;
|
|
24
22
|
type: string;
|
|
23
|
+
writable: boolean;
|
|
24
|
+
mandatory: boolean;
|
|
25
25
|
collection: boolean;
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
private?: boolean;
|
|
27
|
+
depends?: string;
|
|
28
|
+
additionalAttributes: string[];
|
|
29
|
+
description?: string;
|
|
30
|
+
default?: any;
|
|
31
|
+
set?: Function;
|
|
32
|
+
get?: Function;
|
|
33
|
+
env?: string[] | string;
|
|
28
34
|
};
|
|
29
35
|
description: {
|
|
30
36
|
writeable: boolean;
|
|
@@ -80,10 +86,20 @@ export class KeaService extends Service {
|
|
|
80
86
|
env?: string[] | string;
|
|
81
87
|
};
|
|
82
88
|
disabled: {
|
|
83
|
-
type: string;
|
|
84
|
-
collection: boolean;
|
|
85
89
|
writeable: boolean;
|
|
86
90
|
default: boolean;
|
|
91
|
+
type: string;
|
|
92
|
+
isKey: boolean;
|
|
93
|
+
writable: boolean;
|
|
94
|
+
mandatory: boolean;
|
|
95
|
+
collection: boolean;
|
|
96
|
+
private?: boolean;
|
|
97
|
+
depends?: string;
|
|
98
|
+
additionalAttributes: string[];
|
|
99
|
+
description?: string;
|
|
100
|
+
set?: Function;
|
|
101
|
+
get?: Function;
|
|
102
|
+
env?: string[] | string;
|
|
87
103
|
};
|
|
88
104
|
tags: {
|
|
89
105
|
collection: boolean;
|
|
@@ -298,16 +314,22 @@ export class KeaService extends Service {
|
|
|
298
314
|
collection: boolean;
|
|
299
315
|
writeable: boolean;
|
|
300
316
|
};
|
|
301
|
-
type:
|
|
302
|
-
type: string;
|
|
303
|
-
collection: boolean;
|
|
304
|
-
writeable: boolean;
|
|
305
|
-
};
|
|
317
|
+
type: import("pacc").AttributeDefinition;
|
|
306
318
|
name: {
|
|
319
|
+
isKey: boolean;
|
|
320
|
+
writeable: boolean;
|
|
307
321
|
type: string;
|
|
322
|
+
writable: boolean;
|
|
323
|
+
mandatory: boolean;
|
|
308
324
|
collection: boolean;
|
|
309
|
-
|
|
310
|
-
|
|
325
|
+
private?: boolean;
|
|
326
|
+
depends?: string;
|
|
327
|
+
additionalAttributes: string[];
|
|
328
|
+
description?: string;
|
|
329
|
+
default?: any;
|
|
330
|
+
set?: Function;
|
|
331
|
+
get?: Function;
|
|
332
|
+
env?: string[] | string;
|
|
311
333
|
};
|
|
312
334
|
description: {
|
|
313
335
|
writeable: boolean;
|
|
@@ -363,10 +385,20 @@ export class KeaService extends Service {
|
|
|
363
385
|
env?: string[] | string;
|
|
364
386
|
};
|
|
365
387
|
disabled: {
|
|
366
|
-
type: string;
|
|
367
|
-
collection: boolean;
|
|
368
388
|
writeable: boolean;
|
|
369
389
|
default: boolean;
|
|
390
|
+
type: string;
|
|
391
|
+
isKey: boolean;
|
|
392
|
+
writable: boolean;
|
|
393
|
+
mandatory: boolean;
|
|
394
|
+
collection: boolean;
|
|
395
|
+
private?: boolean;
|
|
396
|
+
depends?: string;
|
|
397
|
+
additionalAttributes: string[];
|
|
398
|
+
description?: string;
|
|
399
|
+
set?: Function;
|
|
400
|
+
get?: Function;
|
|
401
|
+
env?: string[] | string;
|
|
370
402
|
};
|
|
371
403
|
tags: {
|
|
372
404
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class MosquittoService extends Service {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class MosquittoService extends Service {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -297,16 +313,22 @@ export class MosquittoService extends Service {
|
|
|
297
313
|
collection: boolean;
|
|
298
314
|
writeable: boolean;
|
|
299
315
|
};
|
|
300
|
-
type:
|
|
301
|
-
type: string;
|
|
302
|
-
collection: boolean;
|
|
303
|
-
writeable: boolean;
|
|
304
|
-
};
|
|
316
|
+
type: import("pacc").AttributeDefinition;
|
|
305
317
|
name: {
|
|
318
|
+
isKey: boolean;
|
|
319
|
+
writeable: boolean;
|
|
306
320
|
type: string;
|
|
321
|
+
writable: boolean;
|
|
322
|
+
mandatory: boolean;
|
|
307
323
|
collection: boolean;
|
|
308
|
-
|
|
309
|
-
|
|
324
|
+
private?: boolean;
|
|
325
|
+
depends?: string;
|
|
326
|
+
additionalAttributes: string[];
|
|
327
|
+
description?: string;
|
|
328
|
+
default?: any;
|
|
329
|
+
set?: Function;
|
|
330
|
+
get?: Function;
|
|
331
|
+
env?: string[] | string;
|
|
310
332
|
};
|
|
311
333
|
description: {
|
|
312
334
|
writeable: boolean;
|
|
@@ -362,10 +384,20 @@ export class MosquittoService extends Service {
|
|
|
362
384
|
env?: string[] | string;
|
|
363
385
|
};
|
|
364
386
|
disabled: {
|
|
365
|
-
type: string;
|
|
366
|
-
collection: boolean;
|
|
367
387
|
writeable: boolean;
|
|
368
388
|
default: boolean;
|
|
389
|
+
type: string;
|
|
390
|
+
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
392
|
+
mandatory: boolean;
|
|
393
|
+
collection: boolean;
|
|
394
|
+
private?: boolean;
|
|
395
|
+
depends?: string;
|
|
396
|
+
additionalAttributes: string[];
|
|
397
|
+
description?: string;
|
|
398
|
+
set?: Function;
|
|
399
|
+
get?: Function;
|
|
400
|
+
env?: string[] | string;
|
|
369
401
|
};
|
|
370
402
|
tags: {
|
|
371
403
|
collection: boolean;
|